Blob


1 /*
2 * Copyright (c) 2020 Stefan Sperling <stsp@openbsd.org>
3 *
4 * Permission to use, copy, modify, and distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 */
17 struct got_gotconfig;
19 /*
20 * Obtain the commit author parsed from got.conf.
21 * Return NULL if no configuration file or author could be found.
22 */
23 const char *got_gotconfig_get_author(const struct got_gotconfig *);
25 /*
26 * Obtain the list of remote repositories parsed from got.conf.
27 * Return 0 and NULL if no configuration file or remote repository
28 * could be found.
29 */
30 void got_gotconfig_get_remotes(int *, const struct got_remote_repo **,
31 const struct got_gotconfig *);
33 /*
34 * Obtain the filename of the allowed signers file.
35 * Returns NULL if no configuration file is found or no allowed signers file
36 * is configured.
37 */
38 const char *
39 got_gotconfig_get_allowed_signers_file(const struct got_gotconfig *);
41 /*
42 * Obtain the filename of the revoked signers file.
43 * Returns NULL if no configuration file is found or no revoked signers file
44 * is configured.
45 */
46 const char *
47 got_gotconfig_get_revoked_signers_file(const struct got_gotconfig *);
49 /*
50 * Obtain the signer identity used to sign tag objects
51 * Returns NULL if no configuration file is found or no revoked signers file
52 * is configured.
53 */
54 const char *
55 got_gotconfig_get_signer_id(const struct got_gotconfig *);