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 <limits.h>
32 #include "got_error.h"
33 #include "got_object.h"
34 #include "got_repository.h"
36 #include "got_lib_gotconfig.h"
38 #include "got_gotconfig.h"
40 void
41 got_gotconfig_free(struct got_gotconfig *conf)
42 {
43 int i;
45 if (conf == NULL)
46 return;
48 free(conf->author);
50 for (i = 0; i < conf->nremotes; i++)
51 got_repo_free_remote_repo_data(&conf->remotes[i]);
52 free(conf->remotes);
53 free(conf);
54 }
56 const char *
57 got_gotconfig_get_author(const struct got_gotconfig *conf)
58 {
59 return conf->author;
60 }
62 void
63 got_gotconfig_get_remotes(int *nremotes, const struct got_remote_repo **remotes,
64 const struct got_gotconfig *conf)
65 {
66 *nremotes = conf->nremotes;
67 *remotes = conf->remotes;
68 }
70 const char *
71 got_gotconfig_get_allowed_signers_file(const struct got_gotconfig *conf)
72 {
73 return conf->allowed_signers_file;
74 }
76 const char *
77 got_gotconfig_get_revoked_signers_file(const struct got_gotconfig *conf)
78 {
79 return conf->revoked_signers_file;
80 }
82 const char *
83 got_gotconfig_get_signer_id(const struct got_gotconfig *conf)
84 {
85 return conf->signer_id;
86 }