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 #include <sys/types.h>
18 #include <sys/queue.h>
19 #include <sys/uio.h>
20 #include <sys/socket.h>
22 #include <unistd.h>
23 #include <fcntl.h>
24 #include <errno.h>
25 #include <stdlib.h>
26 #include <stdio.h>
27 #include <stdint.h>
28 #include <imsg.h>
29 #include <sha1.h>
30 #include <sha2.h>
31 #include <limits.h>
33 #include "got_error.h"
34 #include "got_object.h"
35 #include "got_repository.h"
37 #include "got_lib_gotconfig.h"
39 #include "got_gotconfig.h"
41 void
42 got_gotconfig_free(struct got_gotconfig *conf)
43 {
44 int i;
46 if (conf == NULL)
47 return;
49 free(conf->author);
51 for (i = 0; i < conf->nremotes; i++)
52 got_repo_free_remote_repo_data(&conf->remotes[i]);
53 free(conf->remotes);
54 free(conf);
55 }
57 const char *
58 got_gotconfig_get_author(const struct got_gotconfig *conf)
59 {
60 return conf->author;
61 }
63 void
64 got_gotconfig_get_remotes(int *nremotes, const struct got_remote_repo **remotes,
65 const struct got_gotconfig *conf)
66 {
67 *nremotes = conf->nremotes;
68 *remotes = conf->remotes;
69 }
71 const char *
72 got_gotconfig_get_allowed_signers_file(const struct got_gotconfig *conf)
73 {
74 return conf->allowed_signers_file;
75 }
77 const char *
78 got_gotconfig_get_revoked_signers_file(const struct got_gotconfig *conf)
79 {
80 return conf->revoked_signers_file;
81 }
83 const char *
84 got_gotconfig_get_signer_id(const struct got_gotconfig *conf)
85 {
86 return conf->signer_id;
87 }