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_compat.h"
35 #include "got_error.h"
36 #include "got_object.h"
37 #include "got_repository.h"
39 #include "got_lib_gotconfig.h"
41 #include "got_gotconfig.h"
43 void
44 got_gotconfig_free(struct got_gotconfig *conf)
45 {
46 int i;
48 if (conf == NULL)
49 return;
51 free(conf->author);
53 for (i = 0; i < conf->nremotes; i++)
54 got_repo_free_remote_repo_data(&conf->remotes[i]);
55 free(conf->remotes);
56 free(conf);
57 }
59 const char *
60 got_gotconfig_get_author(const struct got_gotconfig *conf)
61 {
62 return conf->author;
63 }
65 void
66 got_gotconfig_get_remotes(int *nremotes, const struct got_remote_repo **remotes,
67 const struct got_gotconfig *conf)
68 {
69 *nremotes = conf->nremotes;
70 *remotes = conf->remotes;
71 }
73 const char *
74 got_gotconfig_get_allowed_signers_file(const struct got_gotconfig *conf)
75 {
76 return conf->allowed_signers_file;
77 }
79 const char *
80 got_gotconfig_get_revoked_signers_file(const struct got_gotconfig *conf)
81 {
82 return conf->revoked_signers_file;
83 }
85 const char *
86 got_gotconfig_get_signer_id(const struct got_gotconfig *conf)
87 {
88 return conf->signer_id;
89 }