cred_helpers.c 1.41 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
/*
 * Copyright (C) the libgit2 contributors. All rights reserved.
 *
 * This file is part of libgit2, distributed under the GNU GPL v2 with
 * a Linking Exception. For full terms see the included COPYING file.
 */

#include "common.h"
#include "git2/cred_helpers.h"

int git_cred_userpass(
		git_cred **cred,
		const char *url,
14
		const char *user_from_url,
15 16 17 18
		unsigned int allowed_types,
		void *payload)
{
	git_cred_userpass_payload *userpass = (git_cred_userpass_payload*)payload;
19
	const char *effective_username = NULL;
20 21 22

	GIT_UNUSED(url);

23 24 25
	if (!userpass || !userpass->password) return -1;

	/* Username resolution: a username can be passed with the URL, the
Ben Straub committed
26 27 28
	 * credentials payload, or both. Here's what we do.  Note that if we get
	 * this far, we know that any password the url may contain has already
	 * failed at least once, so we ignore it.
29 30 31 32 33 34 35 36
	 *
	 * |  Payload    |   URL    |   Used    |
	 * +-------------+----------+-----------+
	 * |    yes      |   no     |  payload  |
	 * |    yes      |   yes    |  payload  |
	 * |    no       |   yes    |  url      |
	 * |    no       |   no     |  FAIL     |
	 */
Ben Straub committed
37 38 39
	if (userpass->username)
		effective_username = userpass->username;
	else if (user_from_url)
40
		effective_username = user_from_url;
Ben Straub committed
41 42
	else
		return -1;
43 44

	if ((GIT_CREDTYPE_USERPASS_PLAINTEXT & allowed_types) == 0 ||
45
			git_cred_userpass_plaintext_new(cred, effective_username, userpass->password) < 0)
46 47 48 49
		return -1;

	return 0;
}