Blame


1 2c251c14 2020-01-15 tracey /*
2 9460dac0 2020-01-15 tracey * Copyright (c) 2019, 2020 Tracey Emery <tracey@traceyemery.net>
3 2c251c14 2020-01-15 tracey * Copyright (c) 2018, 2019 Stefan Sperling <stsp@openbsd.org>
4 2c251c14 2020-01-15 tracey * Copyright (c) 2014, 2015, 2017 Kristaps Dzonsons <kristaps@bsd.lv>
5 2c251c14 2020-01-15 tracey *
6 2c251c14 2020-01-15 tracey * Permission to use, copy, modify, and distribute this software for any
7 2c251c14 2020-01-15 tracey * purpose with or without fee is hereby granted, provided that the above
8 2c251c14 2020-01-15 tracey * copyright notice and this permission notice appear in all copies.
9 2c251c14 2020-01-15 tracey *
10 2c251c14 2020-01-15 tracey * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11 2c251c14 2020-01-15 tracey * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12 2c251c14 2020-01-15 tracey * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13 2c251c14 2020-01-15 tracey * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14 2c251c14 2020-01-15 tracey * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15 2c251c14 2020-01-15 tracey * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16 2c251c14 2020-01-15 tracey * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17 2c251c14 2020-01-15 tracey */
18 2c251c14 2020-01-15 tracey
19 2c251c14 2020-01-15 tracey #include <sys/queue.h>
20 2c251c14 2020-01-15 tracey #include <sys/stat.h>
21 2c251c14 2020-01-15 tracey #include <sys/types.h>
22 2c251c14 2020-01-15 tracey
23 2c251c14 2020-01-15 tracey #include <dirent.h>
24 2c251c14 2020-01-15 tracey #include <err.h>
25 474370cb 2020-01-15 tracey #include <regex.h>
26 2c251c14 2020-01-15 tracey #include <stdarg.h>
27 2c251c14 2020-01-15 tracey #include <stdbool.h>
28 2c251c14 2020-01-15 tracey #include <stdint.h>
29 2c251c14 2020-01-15 tracey #include <stdio.h>
30 2c251c14 2020-01-15 tracey #include <stdlib.h>
31 2c251c14 2020-01-15 tracey #include <string.h>
32 2c251c14 2020-01-15 tracey #include <unistd.h>
33 2c251c14 2020-01-15 tracey
34 2c251c14 2020-01-15 tracey #include <got_object.h>
35 2c251c14 2020-01-15 tracey #include <got_reference.h>
36 2c251c14 2020-01-15 tracey #include <got_repository.h>
37 2c251c14 2020-01-15 tracey #include <got_path.h>
38 2c251c14 2020-01-15 tracey #include <got_cancel.h>
39 2c251c14 2020-01-15 tracey #include <got_worktree.h>
40 2c251c14 2020-01-15 tracey #include <got_diff.h>
41 2c251c14 2020-01-15 tracey #include <got_commit_graph.h>
42 2c251c14 2020-01-15 tracey #include <got_blame.h>
43 2c251c14 2020-01-15 tracey #include <got_privsep.h>
44 2c251c14 2020-01-15 tracey #include <got_opentemp.h>
45 2c251c14 2020-01-15 tracey
46 2c251c14 2020-01-15 tracey #include <kcgi.h>
47 2c251c14 2020-01-15 tracey #include <kcgihtml.h>
48 2c251c14 2020-01-15 tracey
49 474370cb 2020-01-15 tracey #include "buf.h"
50 2c251c14 2020-01-15 tracey #include "gotweb.h"
51 2c251c14 2020-01-15 tracey #include "gotweb_ui.h"
52 2c251c14 2020-01-15 tracey
53 2c251c14 2020-01-15 tracey #ifndef nitems
54 2c251c14 2020-01-15 tracey #define nitems(_a) (sizeof((_a)) / sizeof((_a)[0]))
55 2c251c14 2020-01-15 tracey #endif
56 2c251c14 2020-01-15 tracey
57 2c251c14 2020-01-15 tracey struct trans {
58 2c251c14 2020-01-15 tracey TAILQ_HEAD(dirs, gw_dir) gw_dirs;
59 46b9c89b 2020-01-15 tracey struct gw_dir *gw_dir;
60 2c251c14 2020-01-15 tracey struct gotweb_conf *gw_conf;
61 2c251c14 2020-01-15 tracey struct ktemplate *gw_tmpl;
62 2c251c14 2020-01-15 tracey struct khtmlreq *gw_html_req;
63 2c251c14 2020-01-15 tracey struct kreq *gw_req;
64 2c251c14 2020-01-15 tracey char *repo_name;
65 2c251c14 2020-01-15 tracey char *repo_path;
66 2c251c14 2020-01-15 tracey char *commit;
67 2c251c14 2020-01-15 tracey char *repo_file;
68 2c251c14 2020-01-15 tracey char *action_name;
69 8087c3c5 2020-01-15 tracey char *headref;
70 2c251c14 2020-01-15 tracey unsigned int action;
71 2c251c14 2020-01-15 tracey unsigned int page;
72 2c251c14 2020-01-15 tracey unsigned int repos_total;
73 387a29ba 2020-01-15 tracey enum kmime mime;
74 2c251c14 2020-01-15 tracey };
75 2c251c14 2020-01-15 tracey
76 2c251c14 2020-01-15 tracey enum gw_key {
77 2c251c14 2020-01-15 tracey KEY_PATH,
78 2c251c14 2020-01-15 tracey KEY_ACTION,
79 2c251c14 2020-01-15 tracey KEY_COMMIT_ID,
80 2c251c14 2020-01-15 tracey KEY_FILE,
81 2c251c14 2020-01-15 tracey KEY_PAGE,
82 8087c3c5 2020-01-15 tracey KEY_HEADREF,
83 2c251c14 2020-01-15 tracey KEY__MAX
84 2c251c14 2020-01-15 tracey };
85 2c251c14 2020-01-15 tracey
86 2c251c14 2020-01-15 tracey struct gw_dir {
87 2c251c14 2020-01-15 tracey TAILQ_ENTRY(gw_dir) entry;
88 2c251c14 2020-01-15 tracey char *name;
89 2c251c14 2020-01-15 tracey char *owner;
90 2c251c14 2020-01-15 tracey char *description;
91 2c251c14 2020-01-15 tracey char *url;
92 2c251c14 2020-01-15 tracey char *age;
93 2c251c14 2020-01-15 tracey char *path;
94 2c251c14 2020-01-15 tracey };
95 2c251c14 2020-01-15 tracey
96 2c251c14 2020-01-15 tracey enum tmpl {
97 2c251c14 2020-01-15 tracey TEMPL_HEAD,
98 2c251c14 2020-01-15 tracey TEMPL_HEADER,
99 2c251c14 2020-01-15 tracey TEMPL_SITEPATH,
100 2c251c14 2020-01-15 tracey TEMPL_SITEOWNER,
101 2c251c14 2020-01-15 tracey TEMPL_TITLE,
102 2c251c14 2020-01-15 tracey TEMPL_SEARCH,
103 2c251c14 2020-01-15 tracey TEMPL_CONTENT,
104 2c251c14 2020-01-15 tracey TEMPL__MAX
105 2c251c14 2020-01-15 tracey };
106 2c251c14 2020-01-15 tracey
107 387a29ba 2020-01-15 tracey enum ref_tm {
108 387a29ba 2020-01-15 tracey TM_DIFF,
109 387a29ba 2020-01-15 tracey TM_LONG,
110 387a29ba 2020-01-15 tracey };
111 387a29ba 2020-01-15 tracey
112 8087c3c5 2020-01-15 tracey enum logs {
113 8087c3c5 2020-01-15 tracey LOGBRIEF,
114 8087c3c5 2020-01-15 tracey LOGCOMMIT,
115 8087c3c5 2020-01-15 tracey LOGFULL,
116 8087c3c5 2020-01-15 tracey LOGTREE,
117 87f9ebf5 2020-01-15 tracey LOGDIFF,
118 87f9ebf5 2020-01-15 tracey LOGBLAME,
119 b772de24 2020-01-15 tracey LOGTAG,
120 8087c3c5 2020-01-15 tracey };
121 8087c3c5 2020-01-15 tracey
122 87f9ebf5 2020-01-15 tracey enum tags {
123 87f9ebf5 2020-01-15 tracey TAGBRIEF,
124 87f9ebf5 2020-01-15 tracey TAGFULL,
125 87f9ebf5 2020-01-15 tracey };
126 87f9ebf5 2020-01-15 tracey
127 474370cb 2020-01-15 tracey struct buf {
128 474370cb 2020-01-15 tracey u_char *cb_buf;
129 474370cb 2020-01-15 tracey size_t cb_size;
130 474370cb 2020-01-15 tracey size_t cb_len;
131 474370cb 2020-01-15 tracey };
132 474370cb 2020-01-15 tracey
133 2c251c14 2020-01-15 tracey static const char *const templs[TEMPL__MAX] = {
134 2c251c14 2020-01-15 tracey "head",
135 2c251c14 2020-01-15 tracey "header",
136 2c251c14 2020-01-15 tracey "sitepath",
137 2c251c14 2020-01-15 tracey "siteowner",
138 2c251c14 2020-01-15 tracey "title",
139 2c251c14 2020-01-15 tracey "search",
140 2c251c14 2020-01-15 tracey "content",
141 2c251c14 2020-01-15 tracey };
142 2c251c14 2020-01-15 tracey
143 2c251c14 2020-01-15 tracey static const struct kvalid gw_keys[KEY__MAX] = {
144 2c251c14 2020-01-15 tracey { kvalid_stringne, "path" },
145 2c251c14 2020-01-15 tracey { kvalid_stringne, "action" },
146 2c251c14 2020-01-15 tracey { kvalid_stringne, "commit" },
147 2c251c14 2020-01-15 tracey { kvalid_stringne, "file" },
148 2c251c14 2020-01-15 tracey { kvalid_int, "page" },
149 8087c3c5 2020-01-15 tracey { kvalid_stringne, "headref" },
150 2c251c14 2020-01-15 tracey };
151 2c251c14 2020-01-15 tracey
152 2c251c14 2020-01-15 tracey static struct gw_dir *gw_init_gw_dir(char *);
153 2c251c14 2020-01-15 tracey
154 2c251c14 2020-01-15 tracey static char *gw_get_repo_description(struct trans *,
155 2c251c14 2020-01-15 tracey char *);
156 2c251c14 2020-01-15 tracey static char *gw_get_repo_owner(struct trans *,
157 2c251c14 2020-01-15 tracey char *);
158 474370cb 2020-01-15 tracey static char *gw_get_time_str(time_t, int);
159 2c251c14 2020-01-15 tracey static char *gw_get_repo_age(struct trans *,
160 387a29ba 2020-01-15 tracey char *, char *, int);
161 4ceb8155 2020-01-15 tracey static char *gw_get_repo_log(struct trans *, const char *,
162 4ceb8155 2020-01-15 tracey char *, int, int);
163 87f9ebf5 2020-01-15 tracey static char *gw_get_repo_tags(struct trans *, int, int);
164 8d4d2453 2020-01-15 tracey static char *gw_get_repo_heads(struct trans *);
165 2c251c14 2020-01-15 tracey static char *gw_get_clone_url(struct trans *, char *);
166 2c251c14 2020-01-15 tracey static char *gw_get_got_link(struct trans *);
167 2c251c14 2020-01-15 tracey static char *gw_get_site_link(struct trans *);
168 2c251c14 2020-01-15 tracey static char *gw_html_escape(const char *);
169 2c251c14 2020-01-15 tracey
170 2c251c14 2020-01-15 tracey static void gw_display_open(struct trans *, enum khttp,
171 2c251c14 2020-01-15 tracey enum kmime);
172 2c251c14 2020-01-15 tracey static void gw_display_index(struct trans *,
173 2c251c14 2020-01-15 tracey const struct got_error *);
174 2c251c14 2020-01-15 tracey
175 2c251c14 2020-01-15 tracey static int gw_template(size_t, void *);
176 2c251c14 2020-01-15 tracey
177 2c251c14 2020-01-15 tracey static const struct got_error* apply_unveil(const char *, const char *);
178 87f9ebf5 2020-01-15 tracey static const struct got_error* cmp_tags(void *, int *,
179 87f9ebf5 2020-01-15 tracey struct got_reference *,
180 87f9ebf5 2020-01-15 tracey struct got_reference *);
181 2c251c14 2020-01-15 tracey static const struct got_error* gw_load_got_paths(struct trans *);
182 2c251c14 2020-01-15 tracey static const struct got_error* gw_load_got_path(struct trans *,
183 2c251c14 2020-01-15 tracey struct gw_dir *);
184 2c251c14 2020-01-15 tracey static const struct got_error* gw_parse_querystring(struct trans *);
185 474370cb 2020-01-15 tracey static const struct got_error* match_logmsg(int *, struct got_object_id *,
186 474370cb 2020-01-15 tracey struct got_commit_object *, regex_t *);
187 2c251c14 2020-01-15 tracey
188 2c251c14 2020-01-15 tracey static const struct got_error* gw_blame(struct trans *);
189 2c251c14 2020-01-15 tracey static const struct got_error* gw_blob(struct trans *);
190 8087c3c5 2020-01-15 tracey static const struct got_error* gw_blobdiff(struct trans *);
191 2c251c14 2020-01-15 tracey static const struct got_error* gw_commit(struct trans *);
192 8087c3c5 2020-01-15 tracey static const struct got_error* gw_commitdiff(struct trans *);
193 2c251c14 2020-01-15 tracey static const struct got_error* gw_history(struct trans *);
194 2c251c14 2020-01-15 tracey static const struct got_error* gw_index(struct trans *);
195 2c251c14 2020-01-15 tracey static const struct got_error* gw_log(struct trans *);
196 2c251c14 2020-01-15 tracey static const struct got_error* gw_raw(struct trans *);
197 4ceb8155 2020-01-15 tracey static const struct got_error* gw_logbriefs(struct trans *);
198 2c251c14 2020-01-15 tracey static const struct got_error* gw_snapshot(struct trans *);
199 387a29ba 2020-01-15 tracey static const struct got_error* gw_summary(struct trans *);
200 b772de24 2020-01-15 tracey static const struct got_error* gw_tag(struct trans *);
201 2c251c14 2020-01-15 tracey static const struct got_error* gw_tree(struct trans *);
202 2c251c14 2020-01-15 tracey
203 2c251c14 2020-01-15 tracey struct gw_query_action {
204 2c251c14 2020-01-15 tracey unsigned int func_id;
205 2c251c14 2020-01-15 tracey const char *func_name;
206 2c251c14 2020-01-15 tracey const struct got_error *(*func_main)(struct trans *);
207 2c251c14 2020-01-15 tracey char *template;
208 2c251c14 2020-01-15 tracey };
209 2c251c14 2020-01-15 tracey
210 2c251c14 2020-01-15 tracey enum gw_query_actions {
211 2c251c14 2020-01-15 tracey GW_BLAME,
212 2c251c14 2020-01-15 tracey GW_BLOB,
213 2c251c14 2020-01-15 tracey GW_BLOBDIFF,
214 2c251c14 2020-01-15 tracey GW_COMMIT,
215 2c251c14 2020-01-15 tracey GW_COMMITDIFF,
216 2c251c14 2020-01-15 tracey GW_ERR,
217 2c251c14 2020-01-15 tracey GW_HISTORY,
218 2c251c14 2020-01-15 tracey GW_INDEX,
219 2c251c14 2020-01-15 tracey GW_LOG,
220 2c251c14 2020-01-15 tracey GW_RAW,
221 4ceb8155 2020-01-15 tracey GW_LOGBRIEFS,
222 2c251c14 2020-01-15 tracey GW_SNAPSHOT,
223 2c251c14 2020-01-15 tracey GW_SUMMARY,
224 b772de24 2020-01-15 tracey GW_TAG,
225 b772de24 2020-01-15 tracey GW_TREE,
226 2c251c14 2020-01-15 tracey };
227 2c251c14 2020-01-15 tracey
228 2c251c14 2020-01-15 tracey static struct gw_query_action gw_query_funcs[] = {
229 2c251c14 2020-01-15 tracey { GW_BLAME, "blame", gw_blame, "gw_tmpl/index.tmpl" },
230 2c251c14 2020-01-15 tracey { GW_BLOB, "blob", gw_blob, "gw_tmpl/index.tmpl" },
231 8087c3c5 2020-01-15 tracey { GW_BLOBDIFF, "blobdiff", gw_blobdiff, "gw_tmpl/index.tmpl" },
232 2c251c14 2020-01-15 tracey { GW_COMMIT, "commit", gw_commit, "gw_tmpl/index.tmpl" },
233 8087c3c5 2020-01-15 tracey { GW_COMMITDIFF, "commitdiff", gw_commitdiff, "gw_tmpl/index.tmpl" },
234 387a29ba 2020-01-15 tracey { GW_ERR, NULL, NULL, "gw_tmpl/index.tmpl" },
235 2c251c14 2020-01-15 tracey { GW_HISTORY, "history", gw_history, "gw_tmpl/index.tmpl" },
236 2c251c14 2020-01-15 tracey { GW_INDEX, "index", gw_index, "gw_tmpl/index.tmpl" },
237 2c251c14 2020-01-15 tracey { GW_LOG, "log", gw_log, "gw_tmpl/index.tmpl" },
238 2c251c14 2020-01-15 tracey { GW_RAW, "raw", gw_raw, "gw_tmpl/index.tmpl" },
239 4ceb8155 2020-01-15 tracey { GW_LOGBRIEFS, "logbriefs", gw_logbriefs, "gw_tmpl/index.tmpl" },
240 2c251c14 2020-01-15 tracey { GW_SNAPSHOT, "snapshot", gw_snapshot, "gw_tmpl/index.tmpl" },
241 46b9c89b 2020-01-15 tracey { GW_SUMMARY, "summary", gw_summary, "gw_tmpl/index.tmpl" },
242 b772de24 2020-01-15 tracey { GW_TAG, "tag", gw_tag, "gw_tmpl/index.tmpl" },
243 2c251c14 2020-01-15 tracey { GW_TREE, "tree", gw_tree, "gw_tmpl/index.tmpl" },
244 2c251c14 2020-01-15 tracey };
245 2c251c14 2020-01-15 tracey
246 2c251c14 2020-01-15 tracey static const struct got_error *
247 2c251c14 2020-01-15 tracey apply_unveil(const char *repo_path, const char *repo_file)
248 2c251c14 2020-01-15 tracey {
249 2c251c14 2020-01-15 tracey const struct got_error *err;
250 2c251c14 2020-01-15 tracey
251 2c251c14 2020-01-15 tracey if (repo_path && repo_file) {
252 2c251c14 2020-01-15 tracey char *full_path;
253 2c251c14 2020-01-15 tracey if ((asprintf(&full_path, "%s/%s", repo_path, repo_file)) == -1)
254 2c251c14 2020-01-15 tracey return got_error_from_errno("asprintf unveil");
255 2c251c14 2020-01-15 tracey if (unveil(full_path, "r") != 0)
256 2c251c14 2020-01-15 tracey return got_error_from_errno2("unveil", full_path);
257 2c251c14 2020-01-15 tracey }
258 2c251c14 2020-01-15 tracey
259 2c251c14 2020-01-15 tracey if (repo_path && unveil(repo_path, "r") != 0)
260 2c251c14 2020-01-15 tracey return got_error_from_errno2("unveil", repo_path);
261 2c251c14 2020-01-15 tracey
262 2c251c14 2020-01-15 tracey if (unveil("/tmp", "rwc") != 0)
263 2c251c14 2020-01-15 tracey return got_error_from_errno2("unveil", "/tmp");
264 2c251c14 2020-01-15 tracey
265 2c251c14 2020-01-15 tracey err = got_privsep_unveil_exec_helpers();
266 2c251c14 2020-01-15 tracey if (err != NULL)
267 2c251c14 2020-01-15 tracey return err;
268 2c251c14 2020-01-15 tracey
269 2c251c14 2020-01-15 tracey if (unveil(NULL, NULL) != 0)
270 2c251c14 2020-01-15 tracey return got_error_from_errno("unveil");
271 2c251c14 2020-01-15 tracey
272 2c251c14 2020-01-15 tracey return NULL;
273 87f9ebf5 2020-01-15 tracey }
274 87f9ebf5 2020-01-15 tracey
275 87f9ebf5 2020-01-15 tracey static const struct got_error *
276 87f9ebf5 2020-01-15 tracey cmp_tags(void *arg, int *cmp, struct got_reference *ref1,
277 87f9ebf5 2020-01-15 tracey struct got_reference *ref2)
278 87f9ebf5 2020-01-15 tracey {
279 87f9ebf5 2020-01-15 tracey const struct got_error *err = NULL;
280 87f9ebf5 2020-01-15 tracey struct got_repository *repo = arg;
281 87f9ebf5 2020-01-15 tracey struct got_object_id *id1, *id2 = NULL;
282 87f9ebf5 2020-01-15 tracey struct got_tag_object *tag1 = NULL, *tag2 = NULL;
283 87f9ebf5 2020-01-15 tracey time_t time1, time2;
284 87f9ebf5 2020-01-15 tracey
285 87f9ebf5 2020-01-15 tracey *cmp = 0;
286 87f9ebf5 2020-01-15 tracey
287 87f9ebf5 2020-01-15 tracey err = got_ref_resolve(&id1, repo, ref1);
288 87f9ebf5 2020-01-15 tracey if (err)
289 87f9ebf5 2020-01-15 tracey return err;
290 87f9ebf5 2020-01-15 tracey err = got_object_open_as_tag(&tag1, repo, id1);
291 87f9ebf5 2020-01-15 tracey if (err)
292 87f9ebf5 2020-01-15 tracey goto done;
293 87f9ebf5 2020-01-15 tracey
294 87f9ebf5 2020-01-15 tracey err = got_ref_resolve(&id2, repo, ref2);
295 87f9ebf5 2020-01-15 tracey if (err)
296 87f9ebf5 2020-01-15 tracey goto done;
297 87f9ebf5 2020-01-15 tracey err = got_object_open_as_tag(&tag2, repo, id2);
298 87f9ebf5 2020-01-15 tracey if (err)
299 87f9ebf5 2020-01-15 tracey goto done;
300 87f9ebf5 2020-01-15 tracey
301 87f9ebf5 2020-01-15 tracey time1 = got_object_tag_get_tagger_time(tag1);
302 87f9ebf5 2020-01-15 tracey time2 = got_object_tag_get_tagger_time(tag2);
303 87f9ebf5 2020-01-15 tracey
304 87f9ebf5 2020-01-15 tracey /* Put latest tags first. */
305 87f9ebf5 2020-01-15 tracey if (time1 < time2)
306 87f9ebf5 2020-01-15 tracey *cmp = 1;
307 87f9ebf5 2020-01-15 tracey else if (time1 > time2)
308 87f9ebf5 2020-01-15 tracey *cmp = -1;
309 87f9ebf5 2020-01-15 tracey else
310 87f9ebf5 2020-01-15 tracey err = got_ref_cmp_by_name(NULL, cmp, ref2, ref1);
311 87f9ebf5 2020-01-15 tracey done:
312 87f9ebf5 2020-01-15 tracey free(id1);
313 87f9ebf5 2020-01-15 tracey free(id2);
314 87f9ebf5 2020-01-15 tracey if (tag1)
315 87f9ebf5 2020-01-15 tracey got_object_tag_close(tag1);
316 87f9ebf5 2020-01-15 tracey if (tag2)
317 87f9ebf5 2020-01-15 tracey got_object_tag_close(tag2);
318 87f9ebf5 2020-01-15 tracey return err;
319 2c251c14 2020-01-15 tracey }
320 2c251c14 2020-01-15 tracey
321 2c251c14 2020-01-15 tracey static const struct got_error *
322 2c251c14 2020-01-15 tracey gw_blame(struct trans *gw_trans)
323 2c251c14 2020-01-15 tracey {
324 2c251c14 2020-01-15 tracey const struct got_error *error = NULL;
325 2c251c14 2020-01-15 tracey
326 2c251c14 2020-01-15 tracey return error;
327 2c251c14 2020-01-15 tracey }
328 2c251c14 2020-01-15 tracey
329 2c251c14 2020-01-15 tracey static const struct got_error *
330 2c251c14 2020-01-15 tracey gw_blob(struct trans *gw_trans)
331 2c251c14 2020-01-15 tracey {
332 2c251c14 2020-01-15 tracey const struct got_error *error = NULL;
333 2c251c14 2020-01-15 tracey
334 2c251c14 2020-01-15 tracey return error;
335 2c251c14 2020-01-15 tracey }
336 2c251c14 2020-01-15 tracey
337 2c251c14 2020-01-15 tracey static const struct got_error *
338 8087c3c5 2020-01-15 tracey gw_blobdiff(struct trans *gw_trans)
339 2c251c14 2020-01-15 tracey {
340 2c251c14 2020-01-15 tracey const struct got_error *error = NULL;
341 2c251c14 2020-01-15 tracey
342 2c251c14 2020-01-15 tracey return error;
343 2c251c14 2020-01-15 tracey }
344 2c251c14 2020-01-15 tracey
345 2c251c14 2020-01-15 tracey static const struct got_error *
346 2c251c14 2020-01-15 tracey gw_commit(struct trans *gw_trans)
347 2c251c14 2020-01-15 tracey {
348 2c251c14 2020-01-15 tracey const struct got_error *error = NULL;
349 8087c3c5 2020-01-15 tracey char *log, *log_html;
350 2c251c14 2020-01-15 tracey
351 8087c3c5 2020-01-15 tracey error = apply_unveil(gw_trans->gw_dir->path, NULL);
352 8087c3c5 2020-01-15 tracey if (error)
353 8087c3c5 2020-01-15 tracey return error;
354 8087c3c5 2020-01-15 tracey
355 8087c3c5 2020-01-15 tracey log = gw_get_repo_log(gw_trans, NULL, gw_trans->commit, 1, LOGCOMMIT);
356 8087c3c5 2020-01-15 tracey
357 8087c3c5 2020-01-15 tracey if (log != NULL && strcmp(log, "") != 0) {
358 8087c3c5 2020-01-15 tracey if ((asprintf(&log_html, log_commit, log)) == -1)
359 8087c3c5 2020-01-15 tracey return got_error_from_errno("asprintf");
360 8087c3c5 2020-01-15 tracey khttp_puts(gw_trans->gw_req, log_html);
361 8087c3c5 2020-01-15 tracey free(log_html);
362 8087c3c5 2020-01-15 tracey free(log);
363 8087c3c5 2020-01-15 tracey }
364 2c251c14 2020-01-15 tracey return error;
365 2c251c14 2020-01-15 tracey }
366 2c251c14 2020-01-15 tracey
367 2c251c14 2020-01-15 tracey static const struct got_error *
368 8087c3c5 2020-01-15 tracey gw_commitdiff(struct trans *gw_trans)
369 2204c934 2020-01-15 tracey {
370 2204c934 2020-01-15 tracey const struct got_error *error = NULL;
371 87f9ebf5 2020-01-15 tracey char *log, *log_html;
372 87f9ebf5 2020-01-15 tracey
373 87f9ebf5 2020-01-15 tracey error = apply_unveil(gw_trans->gw_dir->path, NULL);
374 87f9ebf5 2020-01-15 tracey if (error)
375 87f9ebf5 2020-01-15 tracey return error;
376 2204c934 2020-01-15 tracey
377 87f9ebf5 2020-01-15 tracey log = gw_get_repo_log(gw_trans, NULL, gw_trans->commit, 1, LOGDIFF);
378 87f9ebf5 2020-01-15 tracey
379 87f9ebf5 2020-01-15 tracey if (log != NULL && strcmp(log, "") != 0) {
380 87f9ebf5 2020-01-15 tracey if ((asprintf(&log_html, log_diff, log)) == -1)
381 87f9ebf5 2020-01-15 tracey return got_error_from_errno("asprintf");
382 87f9ebf5 2020-01-15 tracey khttp_puts(gw_trans->gw_req, log_html);
383 87f9ebf5 2020-01-15 tracey free(log_html);
384 87f9ebf5 2020-01-15 tracey free(log);
385 87f9ebf5 2020-01-15 tracey }
386 2204c934 2020-01-15 tracey return error;
387 2204c934 2020-01-15 tracey }
388 2204c934 2020-01-15 tracey
389 2204c934 2020-01-15 tracey static const struct got_error *
390 2c251c14 2020-01-15 tracey gw_history(struct trans *gw_trans)
391 2c251c14 2020-01-15 tracey {
392 2c251c14 2020-01-15 tracey const struct got_error *error = NULL;
393 2c251c14 2020-01-15 tracey
394 2c251c14 2020-01-15 tracey return error;
395 2c251c14 2020-01-15 tracey }
396 2c251c14 2020-01-15 tracey
397 2c251c14 2020-01-15 tracey static const struct got_error *
398 2c251c14 2020-01-15 tracey gw_index(struct trans *gw_trans)
399 2c251c14 2020-01-15 tracey {
400 2c251c14 2020-01-15 tracey const struct got_error *error = NULL;
401 46b9c89b 2020-01-15 tracey struct gw_dir *gw_dir = NULL;
402 2c251c14 2020-01-15 tracey char *html, *navs, *next, *prev;
403 387a29ba 2020-01-15 tracey unsigned int prev_disp = 0, next_disp = 1, dir_c = 0;
404 2c251c14 2020-01-15 tracey
405 46b9c89b 2020-01-15 tracey error = apply_unveil(gw_trans->gw_conf->got_repos_path, NULL);
406 46b9c89b 2020-01-15 tracey if (error)
407 46b9c89b 2020-01-15 tracey return error;
408 46b9c89b 2020-01-15 tracey
409 2c251c14 2020-01-15 tracey error = gw_load_got_paths(gw_trans);
410 46b9c89b 2020-01-15 tracey if (error)
411 2c251c14 2020-01-15 tracey return error;
412 2c251c14 2020-01-15 tracey
413 2c251c14 2020-01-15 tracey khttp_puts(gw_trans->gw_req, index_projects_header);
414 2c251c14 2020-01-15 tracey
415 46b9c89b 2020-01-15 tracey TAILQ_FOREACH(gw_dir, &gw_trans->gw_dirs, entry)
416 2c251c14 2020-01-15 tracey dir_c++;
417 2c251c14 2020-01-15 tracey
418 46b9c89b 2020-01-15 tracey TAILQ_FOREACH(gw_dir, &gw_trans->gw_dirs, entry) {
419 2c251c14 2020-01-15 tracey if (gw_trans->page > 0 && (gw_trans->page *
420 2c251c14 2020-01-15 tracey gw_trans->gw_conf->got_max_repos_display) > prev_disp) {
421 2c251c14 2020-01-15 tracey prev_disp++;
422 2c251c14 2020-01-15 tracey continue;
423 2c251c14 2020-01-15 tracey }
424 2c251c14 2020-01-15 tracey
425 2c251c14 2020-01-15 tracey prev_disp++;
426 46b9c89b 2020-01-15 tracey if((asprintf(&navs, index_navs, gw_dir->name, gw_dir->name,
427 46b9c89b 2020-01-15 tracey gw_dir->name, gw_dir->name)) == -1)
428 2c251c14 2020-01-15 tracey return got_error_from_errno("asprintf");
429 2c251c14 2020-01-15 tracey
430 46b9c89b 2020-01-15 tracey if ((asprintf(&html, index_projects, gw_dir->name, gw_dir->name,
431 46b9c89b 2020-01-15 tracey gw_dir->description, gw_dir->owner, gw_dir->age,
432 46b9c89b 2020-01-15 tracey navs)) == -1)
433 2c251c14 2020-01-15 tracey return got_error_from_errno("asprintf");
434 2c251c14 2020-01-15 tracey
435 2c251c14 2020-01-15 tracey khttp_puts(gw_trans->gw_req, html);
436 2c251c14 2020-01-15 tracey
437 2c251c14 2020-01-15 tracey free(navs);
438 2c251c14 2020-01-15 tracey free(html);
439 2c251c14 2020-01-15 tracey
440 2c251c14 2020-01-15 tracey if (gw_trans->gw_conf->got_max_repos_display == 0)
441 2c251c14 2020-01-15 tracey continue;
442 2c251c14 2020-01-15 tracey
443 2c251c14 2020-01-15 tracey if (next_disp == gw_trans->gw_conf->got_max_repos_display)
444 2c251c14 2020-01-15 tracey khttp_puts(gw_trans->gw_req, np_wrapper_start);
445 2c251c14 2020-01-15 tracey else if ((gw_trans->gw_conf->got_max_repos_display > 0) &&
446 2c251c14 2020-01-15 tracey (gw_trans->page > 0) &&
447 2c251c14 2020-01-15 tracey (next_disp == gw_trans->gw_conf->got_max_repos_display ||
448 2c251c14 2020-01-15 tracey prev_disp == gw_trans->repos_total))
449 2c251c14 2020-01-15 tracey khttp_puts(gw_trans->gw_req, np_wrapper_start);
450 2c251c14 2020-01-15 tracey
451 2c251c14 2020-01-15 tracey if ((gw_trans->gw_conf->got_max_repos_display > 0) &&
452 2c251c14 2020-01-15 tracey (gw_trans->page > 0) &&
453 2c251c14 2020-01-15 tracey (next_disp == gw_trans->gw_conf->got_max_repos_display ||
454 2c251c14 2020-01-15 tracey prev_disp == gw_trans->repos_total)) {
455 2c251c14 2020-01-15 tracey if ((asprintf(&prev, nav_prev,
456 2c251c14 2020-01-15 tracey gw_trans->page - 1)) == -1)
457 2c251c14 2020-01-15 tracey return got_error_from_errno("asprintf");
458 2c251c14 2020-01-15 tracey khttp_puts(gw_trans->gw_req, prev);
459 2c251c14 2020-01-15 tracey free(prev);
460 2c251c14 2020-01-15 tracey }
461 2c251c14 2020-01-15 tracey
462 2c251c14 2020-01-15 tracey khttp_puts(gw_trans->gw_req, div_end);
463 2c251c14 2020-01-15 tracey
464 2c251c14 2020-01-15 tracey if (gw_trans->gw_conf->got_max_repos_display > 0 &&
465 2c251c14 2020-01-15 tracey next_disp == gw_trans->gw_conf->got_max_repos_display &&
466 2c251c14 2020-01-15 tracey dir_c != (gw_trans->page + 1) *
467 2c251c14 2020-01-15 tracey gw_trans->gw_conf->got_max_repos_display) {
468 2c251c14 2020-01-15 tracey if ((asprintf(&next, nav_next,
469 2c251c14 2020-01-15 tracey gw_trans->page + 1)) == -1)
470 2c251c14 2020-01-15 tracey return got_error_from_errno("calloc");
471 2c251c14 2020-01-15 tracey khttp_puts(gw_trans->gw_req, next);
472 2c251c14 2020-01-15 tracey khttp_puts(gw_trans->gw_req, div_end);
473 2c251c14 2020-01-15 tracey free(next);
474 2c251c14 2020-01-15 tracey next_disp = 0;
475 2c251c14 2020-01-15 tracey break;
476 2c251c14 2020-01-15 tracey }
477 2c251c14 2020-01-15 tracey
478 2c251c14 2020-01-15 tracey if ((gw_trans->gw_conf->got_max_repos_display > 0) &&
479 2c251c14 2020-01-15 tracey (gw_trans->page > 0) &&
480 2c251c14 2020-01-15 tracey (next_disp == gw_trans->gw_conf->got_max_repos_display ||
481 2c251c14 2020-01-15 tracey prev_disp == gw_trans->repos_total))
482 2c251c14 2020-01-15 tracey khttp_puts(gw_trans->gw_req, div_end);
483 2c251c14 2020-01-15 tracey
484 2c251c14 2020-01-15 tracey next_disp++;
485 2c251c14 2020-01-15 tracey }
486 2c251c14 2020-01-15 tracey return error;
487 2c251c14 2020-01-15 tracey }
488 2c251c14 2020-01-15 tracey
489 2c251c14 2020-01-15 tracey static const struct got_error *
490 2c251c14 2020-01-15 tracey gw_log(struct trans *gw_trans)
491 2c251c14 2020-01-15 tracey {
492 2c251c14 2020-01-15 tracey const struct got_error *error = NULL;
493 4ceb8155 2020-01-15 tracey char *log, *log_html;
494 8087c3c5 2020-01-15 tracey
495 8087c3c5 2020-01-15 tracey error = apply_unveil(gw_trans->gw_dir->path, NULL);
496 8087c3c5 2020-01-15 tracey if (error)
497 8087c3c5 2020-01-15 tracey return error;
498 2c251c14 2020-01-15 tracey
499 87f9ebf5 2020-01-15 tracey log = gw_get_repo_log(gw_trans, NULL, gw_trans->commit,
500 8087c3c5 2020-01-15 tracey gw_trans->gw_conf->got_max_commits_display, LOGFULL);
501 4ceb8155 2020-01-15 tracey
502 4ceb8155 2020-01-15 tracey if (log != NULL && strcmp(log, "") != 0) {
503 4ceb8155 2020-01-15 tracey if ((asprintf(&log_html, logs, log)) == -1)
504 4ceb8155 2020-01-15 tracey return got_error_from_errno("asprintf");
505 4ceb8155 2020-01-15 tracey khttp_puts(gw_trans->gw_req, log_html);
506 4ceb8155 2020-01-15 tracey free(log_html);
507 4ceb8155 2020-01-15 tracey free(log);
508 4ceb8155 2020-01-15 tracey }
509 2c251c14 2020-01-15 tracey return error;
510 2c251c14 2020-01-15 tracey }
511 2c251c14 2020-01-15 tracey
512 2c251c14 2020-01-15 tracey static const struct got_error *
513 2c251c14 2020-01-15 tracey gw_raw(struct trans *gw_trans)
514 2c251c14 2020-01-15 tracey {
515 2c251c14 2020-01-15 tracey const struct got_error *error = NULL;
516 2c251c14 2020-01-15 tracey
517 2c251c14 2020-01-15 tracey return error;
518 2c251c14 2020-01-15 tracey }
519 2c251c14 2020-01-15 tracey
520 2c251c14 2020-01-15 tracey static const struct got_error *
521 4ceb8155 2020-01-15 tracey gw_logbriefs(struct trans *gw_trans)
522 2c251c14 2020-01-15 tracey {
523 2c251c14 2020-01-15 tracey const struct got_error *error = NULL;
524 8087c3c5 2020-01-15 tracey char *log, *log_html;
525 17a96b9f 2020-01-15 tracey
526 8087c3c5 2020-01-15 tracey error = apply_unveil(gw_trans->gw_dir->path, NULL);
527 8087c3c5 2020-01-15 tracey if (error)
528 8087c3c5 2020-01-15 tracey return error;
529 9d84e7dd 2020-01-15 tracey
530 87f9ebf5 2020-01-15 tracey log = gw_get_repo_log(gw_trans, NULL, gw_trans->commit,
531 8087c3c5 2020-01-15 tracey gw_trans->gw_conf->got_max_commits_display, LOGBRIEF);
532 8087c3c5 2020-01-15 tracey
533 8087c3c5 2020-01-15 tracey if (log != NULL && strcmp(log, "") != 0) {
534 8087c3c5 2020-01-15 tracey if ((asprintf(&log_html, summary_logbriefs,
535 8087c3c5 2020-01-15 tracey log)) == -1)
536 9d84e7dd 2020-01-15 tracey return got_error_from_errno("asprintf");
537 8087c3c5 2020-01-15 tracey khttp_puts(gw_trans->gw_req, log_html);
538 8087c3c5 2020-01-15 tracey free(log_html);
539 8087c3c5 2020-01-15 tracey free(log);
540 9d84e7dd 2020-01-15 tracey }
541 2c251c14 2020-01-15 tracey return error;
542 2c251c14 2020-01-15 tracey }
543 2c251c14 2020-01-15 tracey
544 2c251c14 2020-01-15 tracey static const struct got_error *
545 2c251c14 2020-01-15 tracey gw_snapshot(struct trans *gw_trans)
546 2c251c14 2020-01-15 tracey {
547 2c251c14 2020-01-15 tracey const struct got_error *error = NULL;
548 2c251c14 2020-01-15 tracey
549 2c251c14 2020-01-15 tracey return error;
550 2c251c14 2020-01-15 tracey }
551 2c251c14 2020-01-15 tracey
552 2c251c14 2020-01-15 tracey static const struct got_error *
553 387a29ba 2020-01-15 tracey gw_summary(struct trans *gw_trans)
554 387a29ba 2020-01-15 tracey {
555 387a29ba 2020-01-15 tracey const struct got_error *error = NULL;
556 46b9c89b 2020-01-15 tracey char *description_html, *repo_owner_html, *repo_age_html,
557 8087c3c5 2020-01-15 tracey *cloneurl_html, *log, *log_html, *tags, *heads, *tags_html,
558 8087c3c5 2020-01-15 tracey *heads_html, *age;
559 387a29ba 2020-01-15 tracey
560 46b9c89b 2020-01-15 tracey error = apply_unveil(gw_trans->gw_dir->path, NULL);
561 46b9c89b 2020-01-15 tracey if (error)
562 46b9c89b 2020-01-15 tracey return error;
563 46b9c89b 2020-01-15 tracey
564 46b9c89b 2020-01-15 tracey khttp_puts(gw_trans->gw_req, summary_wrapper);
565 46b9c89b 2020-01-15 tracey if (gw_trans->gw_conf->got_show_repo_description) {
566 46b9c89b 2020-01-15 tracey if (gw_trans->gw_dir->description != NULL &&
567 46b9c89b 2020-01-15 tracey (strcmp(gw_trans->gw_dir->description, "") != 0)) {
568 46b9c89b 2020-01-15 tracey if ((asprintf(&description_html, description,
569 46b9c89b 2020-01-15 tracey gw_trans->gw_dir->description)) == -1)
570 46b9c89b 2020-01-15 tracey return got_error_from_errno("asprintf");
571 46b9c89b 2020-01-15 tracey
572 46b9c89b 2020-01-15 tracey khttp_puts(gw_trans->gw_req, description_html);
573 46b9c89b 2020-01-15 tracey free(description_html);
574 46b9c89b 2020-01-15 tracey }
575 46b9c89b 2020-01-15 tracey }
576 46b9c89b 2020-01-15 tracey
577 46b9c89b 2020-01-15 tracey if (gw_trans->gw_conf->got_show_repo_owner) {
578 46b9c89b 2020-01-15 tracey if (gw_trans->gw_dir->owner != NULL &&
579 46b9c89b 2020-01-15 tracey (strcmp(gw_trans->gw_dir->owner, "") != 0)) {
580 46b9c89b 2020-01-15 tracey if ((asprintf(&repo_owner_html, repo_owner,
581 46b9c89b 2020-01-15 tracey gw_trans->gw_dir->owner)) == -1)
582 46b9c89b 2020-01-15 tracey return got_error_from_errno("asprintf");
583 46b9c89b 2020-01-15 tracey
584 46b9c89b 2020-01-15 tracey khttp_puts(gw_trans->gw_req, repo_owner_html);
585 46b9c89b 2020-01-15 tracey free(repo_owner_html);
586 46b9c89b 2020-01-15 tracey }
587 46b9c89b 2020-01-15 tracey }
588 46b9c89b 2020-01-15 tracey
589 46b9c89b 2020-01-15 tracey if (gw_trans->gw_conf->got_show_repo_age) {
590 c6b62706 2020-01-15 tracey age = gw_get_repo_age(gw_trans, gw_trans->gw_dir->path,
591 c6b62706 2020-01-15 tracey "refs/heads", TM_LONG);
592 c6b62706 2020-01-15 tracey if (age != NULL && (strcmp(age, "") != 0)) {
593 c6b62706 2020-01-15 tracey if ((asprintf(&repo_age_html, last_change, age)) == -1)
594 46b9c89b 2020-01-15 tracey return got_error_from_errno("asprintf");
595 46b9c89b 2020-01-15 tracey
596 46b9c89b 2020-01-15 tracey khttp_puts(gw_trans->gw_req, repo_age_html);
597 46b9c89b 2020-01-15 tracey free(repo_age_html);
598 c6b62706 2020-01-15 tracey free(age);
599 46b9c89b 2020-01-15 tracey }
600 46b9c89b 2020-01-15 tracey }
601 46b9c89b 2020-01-15 tracey
602 46b9c89b 2020-01-15 tracey if (gw_trans->gw_conf->got_show_repo_cloneurl) {
603 46b9c89b 2020-01-15 tracey if (gw_trans->gw_dir->url != NULL &&
604 46b9c89b 2020-01-15 tracey (strcmp(gw_trans->gw_dir->url, "") != 0)) {
605 46b9c89b 2020-01-15 tracey if ((asprintf(&cloneurl_html, cloneurl,
606 46b9c89b 2020-01-15 tracey gw_trans->gw_dir->url)) == -1)
607 46b9c89b 2020-01-15 tracey return got_error_from_errno("asprintf");
608 46b9c89b 2020-01-15 tracey
609 46b9c89b 2020-01-15 tracey khttp_puts(gw_trans->gw_req, cloneurl_html);
610 46b9c89b 2020-01-15 tracey free(cloneurl_html);
611 46b9c89b 2020-01-15 tracey }
612 46b9c89b 2020-01-15 tracey }
613 46b9c89b 2020-01-15 tracey khttp_puts(gw_trans->gw_req, div_end);
614 46b9c89b 2020-01-15 tracey
615 8087c3c5 2020-01-15 tracey log = gw_get_repo_log(gw_trans, NULL, NULL, D_MAXSLCOMMDISP, 0);
616 87f9ebf5 2020-01-15 tracey tags = gw_get_repo_tags(gw_trans, D_MAXSLCOMMDISP, TAGBRIEF);
617 8d4d2453 2020-01-15 tracey heads = gw_get_repo_heads(gw_trans);
618 387a29ba 2020-01-15 tracey
619 8087c3c5 2020-01-15 tracey if (log != NULL && strcmp(log, "") != 0) {
620 8087c3c5 2020-01-15 tracey if ((asprintf(&log_html, summary_logbriefs,
621 8087c3c5 2020-01-15 tracey log)) == -1)
622 8d4d2453 2020-01-15 tracey return got_error_from_errno("asprintf");
623 8087c3c5 2020-01-15 tracey khttp_puts(gw_trans->gw_req, log_html);
624 8087c3c5 2020-01-15 tracey free(log_html);
625 8087c3c5 2020-01-15 tracey free(log);
626 8d4d2453 2020-01-15 tracey }
627 8d4d2453 2020-01-15 tracey
628 8d4d2453 2020-01-15 tracey if (tags != NULL && strcmp(tags, "") != 0) {
629 8d4d2453 2020-01-15 tracey if ((asprintf(&tags_html, summary_tags,
630 8d4d2453 2020-01-15 tracey tags)) == -1)
631 8d4d2453 2020-01-15 tracey return got_error_from_errno("asprintf");
632 8d4d2453 2020-01-15 tracey khttp_puts(gw_trans->gw_req, tags_html);
633 8d4d2453 2020-01-15 tracey free(tags_html);
634 8d4d2453 2020-01-15 tracey free(tags);
635 8d4d2453 2020-01-15 tracey }
636 8d4d2453 2020-01-15 tracey
637 8d4d2453 2020-01-15 tracey if (heads != NULL && strcmp(heads, "") != 0) {
638 8d4d2453 2020-01-15 tracey if ((asprintf(&heads_html, summary_heads,
639 8d4d2453 2020-01-15 tracey heads)) == -1)
640 8d4d2453 2020-01-15 tracey return got_error_from_errno("asprintf");
641 8d4d2453 2020-01-15 tracey khttp_puts(gw_trans->gw_req, heads_html);
642 8d4d2453 2020-01-15 tracey free(heads_html);
643 8d4d2453 2020-01-15 tracey free(heads);
644 8d4d2453 2020-01-15 tracey }
645 2204c934 2020-01-15 tracey return error;
646 2204c934 2020-01-15 tracey }
647 2204c934 2020-01-15 tracey
648 2204c934 2020-01-15 tracey static const struct got_error *
649 b772de24 2020-01-15 tracey gw_tag(struct trans *gw_trans)
650 b772de24 2020-01-15 tracey {
651 b772de24 2020-01-15 tracey const struct got_error *error = NULL;
652 b772de24 2020-01-15 tracey char *log, *log_html;
653 b772de24 2020-01-15 tracey
654 b772de24 2020-01-15 tracey error = apply_unveil(gw_trans->gw_dir->path, NULL);
655 b772de24 2020-01-15 tracey if (error)
656 b772de24 2020-01-15 tracey return error;
657 b772de24 2020-01-15 tracey
658 b772de24 2020-01-15 tracey log = gw_get_repo_log(gw_trans, NULL, gw_trans->commit, 1, LOGTAG);
659 b772de24 2020-01-15 tracey
660 b772de24 2020-01-15 tracey if (log != NULL && strcmp(log, "") != 0) {
661 9460dac0 2020-01-15 tracey if ((asprintf(&log_html, log_tag, log)) == -1)
662 b772de24 2020-01-15 tracey return got_error_from_errno("asprintf");
663 b772de24 2020-01-15 tracey khttp_puts(gw_trans->gw_req, log_html);
664 b772de24 2020-01-15 tracey free(log_html);
665 b772de24 2020-01-15 tracey free(log);
666 b772de24 2020-01-15 tracey }
667 b772de24 2020-01-15 tracey return error;
668 b772de24 2020-01-15 tracey }
669 b772de24 2020-01-15 tracey
670 b772de24 2020-01-15 tracey static const struct got_error *
671 2c251c14 2020-01-15 tracey gw_tree(struct trans *gw_trans)
672 2c251c14 2020-01-15 tracey {
673 2c251c14 2020-01-15 tracey const struct got_error *error = NULL;
674 8087c3c5 2020-01-15 tracey char *log, *log_html;
675 8087c3c5 2020-01-15 tracey
676 8087c3c5 2020-01-15 tracey error = apply_unveil(gw_trans->gw_dir->path, NULL);
677 8087c3c5 2020-01-15 tracey if (error)
678 8087c3c5 2020-01-15 tracey return error;
679 8087c3c5 2020-01-15 tracey
680 8087c3c5 2020-01-15 tracey log = gw_get_repo_log(gw_trans, NULL, gw_trans->commit, 1, LOGTREE);
681 2c251c14 2020-01-15 tracey
682 8087c3c5 2020-01-15 tracey if (log != NULL && strcmp(log, "") != 0) {
683 8087c3c5 2020-01-15 tracey if ((asprintf(&log_html, log_tree, log)) == -1)
684 8087c3c5 2020-01-15 tracey return got_error_from_errno("asprintf");
685 8087c3c5 2020-01-15 tracey khttp_puts(gw_trans->gw_req, log_html);
686 8087c3c5 2020-01-15 tracey free(log_html);
687 8087c3c5 2020-01-15 tracey free(log);
688 8087c3c5 2020-01-15 tracey }
689 2c251c14 2020-01-15 tracey return error;
690 2c251c14 2020-01-15 tracey }
691 2c251c14 2020-01-15 tracey
692 2c251c14 2020-01-15 tracey static const struct got_error *
693 2c251c14 2020-01-15 tracey gw_load_got_path(struct trans *gw_trans, struct gw_dir *gw_dir)
694 2c251c14 2020-01-15 tracey {
695 2c251c14 2020-01-15 tracey const struct got_error *error = NULL;
696 2c251c14 2020-01-15 tracey DIR *dt;
697 2c251c14 2020-01-15 tracey char *dir_test;
698 4ceb8155 2020-01-15 tracey int opened = 0;
699 2c251c14 2020-01-15 tracey
700 2c251c14 2020-01-15 tracey if ((asprintf(&dir_test, "%s/%s/%s",
701 2c251c14 2020-01-15 tracey gw_trans->gw_conf->got_repos_path, gw_dir->name,
702 2c251c14 2020-01-15 tracey GOTWEB_GIT_DIR)) == -1)
703 2c251c14 2020-01-15 tracey return got_error_from_errno("asprintf");
704 2c251c14 2020-01-15 tracey
705 2c251c14 2020-01-15 tracey dt = opendir(dir_test);
706 2c251c14 2020-01-15 tracey if (dt == NULL) {
707 2c251c14 2020-01-15 tracey free(dir_test);
708 2c251c14 2020-01-15 tracey } else {
709 2c251c14 2020-01-15 tracey gw_dir->path = strdup(dir_test);
710 4ceb8155 2020-01-15 tracey opened = 1;
711 2c251c14 2020-01-15 tracey goto done;
712 2c251c14 2020-01-15 tracey }
713 2c251c14 2020-01-15 tracey
714 2c251c14 2020-01-15 tracey if ((asprintf(&dir_test, "%s/%s/%s",
715 2c251c14 2020-01-15 tracey gw_trans->gw_conf->got_repos_path, gw_dir->name,
716 2c251c14 2020-01-15 tracey GOTWEB_GOT_DIR)) == -1)
717 2c251c14 2020-01-15 tracey return got_error_from_errno("asprintf");
718 2c251c14 2020-01-15 tracey
719 2c251c14 2020-01-15 tracey dt = opendir(dir_test);
720 2c251c14 2020-01-15 tracey if (dt == NULL)
721 2c251c14 2020-01-15 tracey free(dir_test);
722 2c251c14 2020-01-15 tracey else {
723 4ceb8155 2020-01-15 tracey opened = 1;
724 2c251c14 2020-01-15 tracey error = got_error(GOT_ERR_NOT_GIT_REPO);
725 2c251c14 2020-01-15 tracey goto errored;
726 2c251c14 2020-01-15 tracey }
727 2c251c14 2020-01-15 tracey
728 2c251c14 2020-01-15 tracey if ((asprintf(&dir_test, "%s/%s",
729 2c251c14 2020-01-15 tracey gw_trans->gw_conf->got_repos_path, gw_dir->name)) == -1)
730 2c251c14 2020-01-15 tracey return got_error_from_errno("asprintf");
731 2c251c14 2020-01-15 tracey
732 2c251c14 2020-01-15 tracey gw_dir->path = strdup(dir_test);
733 2c251c14 2020-01-15 tracey
734 2c251c14 2020-01-15 tracey done:
735 2c251c14 2020-01-15 tracey gw_dir->description = gw_get_repo_description(gw_trans,
736 2c251c14 2020-01-15 tracey gw_dir->path);
737 2c251c14 2020-01-15 tracey gw_dir->owner = gw_get_repo_owner(gw_trans, gw_dir->path);
738 387a29ba 2020-01-15 tracey gw_dir->age = gw_get_repo_age(gw_trans, gw_dir->path, "refs/heads",
739 387a29ba 2020-01-15 tracey TM_DIFF);
740 2c251c14 2020-01-15 tracey gw_dir->url = gw_get_clone_url(gw_trans, gw_dir->path);
741 2c251c14 2020-01-15 tracey
742 2c251c14 2020-01-15 tracey errored:
743 2c251c14 2020-01-15 tracey free(dir_test);
744 2c251c14 2020-01-15 tracey if (opened)
745 2c251c14 2020-01-15 tracey closedir(dt);
746 2c251c14 2020-01-15 tracey return error;
747 2c251c14 2020-01-15 tracey }
748 2c251c14 2020-01-15 tracey
749 2c251c14 2020-01-15 tracey static const struct got_error *
750 2c251c14 2020-01-15 tracey gw_load_got_paths(struct trans *gw_trans)
751 2c251c14 2020-01-15 tracey {
752 2c251c14 2020-01-15 tracey const struct got_error *error = NULL;
753 2c251c14 2020-01-15 tracey DIR *d;
754 2c251c14 2020-01-15 tracey struct dirent **sd_dent;
755 2c251c14 2020-01-15 tracey struct gw_dir *gw_dir;
756 2c251c14 2020-01-15 tracey struct stat st;
757 2c251c14 2020-01-15 tracey unsigned int d_cnt, d_i;
758 2c251c14 2020-01-15 tracey
759 2c251c14 2020-01-15 tracey d = opendir(gw_trans->gw_conf->got_repos_path);
760 2c251c14 2020-01-15 tracey if (d == NULL) {
761 2c251c14 2020-01-15 tracey error = got_error_from_errno2("opendir",
762 2c251c14 2020-01-15 tracey gw_trans->gw_conf->got_repos_path);
763 2c251c14 2020-01-15 tracey return error;
764 2c251c14 2020-01-15 tracey }
765 2c251c14 2020-01-15 tracey
766 2c251c14 2020-01-15 tracey d_cnt = scandir(gw_trans->gw_conf->got_repos_path, &sd_dent, NULL,
767 2c251c14 2020-01-15 tracey alphasort);
768 2c251c14 2020-01-15 tracey if (d_cnt == -1) {
769 2c251c14 2020-01-15 tracey error = got_error_from_errno2("scandir",
770 2c251c14 2020-01-15 tracey gw_trans->gw_conf->got_repos_path);
771 2c251c14 2020-01-15 tracey return error;
772 2c251c14 2020-01-15 tracey }
773 2c251c14 2020-01-15 tracey
774 2c251c14 2020-01-15 tracey for (d_i = 0; d_i < d_cnt; d_i++) {
775 2c251c14 2020-01-15 tracey if (gw_trans->gw_conf->got_max_repos > 0 &&
776 2c251c14 2020-01-15 tracey (d_i - 2) == gw_trans->gw_conf->got_max_repos)
777 2c251c14 2020-01-15 tracey break; /* account for parent and self */
778 2c251c14 2020-01-15 tracey
779 2c251c14 2020-01-15 tracey if (strcmp(sd_dent[d_i]->d_name, ".") == 0 ||
780 2c251c14 2020-01-15 tracey strcmp(sd_dent[d_i]->d_name, "..") == 0)
781 2c251c14 2020-01-15 tracey continue;
782 2c251c14 2020-01-15 tracey
783 2c251c14 2020-01-15 tracey if ((gw_dir = gw_init_gw_dir(sd_dent[d_i]->d_name)) == NULL)
784 2c251c14 2020-01-15 tracey return got_error_from_errno("gw_dir malloc");
785 2c251c14 2020-01-15 tracey
786 2c251c14 2020-01-15 tracey error = gw_load_got_path(gw_trans, gw_dir);
787 2c251c14 2020-01-15 tracey if (error && error->code == GOT_ERR_NOT_GIT_REPO)
788 2c251c14 2020-01-15 tracey continue;
789 2c251c14 2020-01-15 tracey else if (error)
790 2c251c14 2020-01-15 tracey return error;
791 2c251c14 2020-01-15 tracey
792 2c251c14 2020-01-15 tracey if (lstat(gw_dir->path, &st) == 0 && S_ISDIR(st.st_mode) &&
793 2c251c14 2020-01-15 tracey !got_path_dir_is_empty(gw_dir->path)) {
794 2c251c14 2020-01-15 tracey TAILQ_INSERT_TAIL(&gw_trans->gw_dirs, gw_dir,
795 2c251c14 2020-01-15 tracey entry);
796 2c251c14 2020-01-15 tracey gw_trans->repos_total++;
797 2c251c14 2020-01-15 tracey }
798 2c251c14 2020-01-15 tracey }
799 2c251c14 2020-01-15 tracey
800 2c251c14 2020-01-15 tracey closedir(d);
801 2c251c14 2020-01-15 tracey return error;
802 2c251c14 2020-01-15 tracey }
803 2c251c14 2020-01-15 tracey
804 2c251c14 2020-01-15 tracey static const struct got_error *
805 2c251c14 2020-01-15 tracey gw_parse_querystring(struct trans *gw_trans)
806 2c251c14 2020-01-15 tracey {
807 2c251c14 2020-01-15 tracey const struct got_error *error = NULL;
808 2c251c14 2020-01-15 tracey struct kpair *p;
809 2c251c14 2020-01-15 tracey struct gw_query_action *action = NULL;
810 2c251c14 2020-01-15 tracey unsigned int i;
811 2c251c14 2020-01-15 tracey
812 2c251c14 2020-01-15 tracey if (gw_trans->gw_req->fieldnmap[0]) {
813 2c251c14 2020-01-15 tracey error = got_error_from_errno("bad parse");
814 2c251c14 2020-01-15 tracey return error;
815 2c251c14 2020-01-15 tracey } else if ((p = gw_trans->gw_req->fieldmap[KEY_PATH])) {
816 2c251c14 2020-01-15 tracey /* define gw_trans->repo_path */
817 2c251c14 2020-01-15 tracey if ((asprintf(&gw_trans->repo_name, "%s", p->parsed.s)) == -1)
818 2c251c14 2020-01-15 tracey return got_error_from_errno("asprintf");
819 2c251c14 2020-01-15 tracey
820 2c251c14 2020-01-15 tracey if ((asprintf(&gw_trans->repo_path, "%s/%s",
821 387a29ba 2020-01-15 tracey gw_trans->gw_conf->got_repos_path, p->parsed.s)) == -1)
822 2c251c14 2020-01-15 tracey return got_error_from_errno("asprintf");
823 2c251c14 2020-01-15 tracey
824 2c251c14 2020-01-15 tracey if ((p = gw_trans->gw_req->fieldmap[KEY_COMMIT_ID]))
825 2c251c14 2020-01-15 tracey if ((asprintf(&gw_trans->commit, "%s",
826 2c251c14 2020-01-15 tracey p->parsed.s)) == -1)
827 2c251c14 2020-01-15 tracey return got_error_from_errno("asprintf");
828 2c251c14 2020-01-15 tracey
829 2c251c14 2020-01-15 tracey /* get action and set function */
830 2c251c14 2020-01-15 tracey if ((p = gw_trans->gw_req->fieldmap[KEY_ACTION]))
831 2c251c14 2020-01-15 tracey for (i = 0; i < nitems(gw_query_funcs); i++) {
832 2c251c14 2020-01-15 tracey action = &gw_query_funcs[i];
833 2c251c14 2020-01-15 tracey if (action->func_name == NULL)
834 2c251c14 2020-01-15 tracey continue;
835 077f6c5a 2020-01-15 tracey
836 2c251c14 2020-01-15 tracey if (strcmp(action->func_name,
837 2c251c14 2020-01-15 tracey p->parsed.s) == 0) {
838 2c251c14 2020-01-15 tracey gw_trans->action = i;
839 2c251c14 2020-01-15 tracey if ((asprintf(&gw_trans->action_name,
840 2c251c14 2020-01-15 tracey "%s", action->func_name)) == -1)
841 2c251c14 2020-01-15 tracey return
842 b772de24 2020-01-15 tracey got_error_from_errno(
843 2c251c14 2020-01-15 tracey "asprintf");
844 2c251c14 2020-01-15 tracey
845 2c251c14 2020-01-15 tracey break;
846 2c251c14 2020-01-15 tracey }
847 2c251c14 2020-01-15 tracey
848 2c251c14 2020-01-15 tracey action = NULL;
849 2c251c14 2020-01-15 tracey }
850 2c251c14 2020-01-15 tracey
851 2c251c14 2020-01-15 tracey if ((p = gw_trans->gw_req->fieldmap[KEY_FILE]))
852 2c251c14 2020-01-15 tracey if ((asprintf(&gw_trans->repo_file, "%s",
853 8087c3c5 2020-01-15 tracey p->parsed.s)) == -1)
854 8087c3c5 2020-01-15 tracey return got_error_from_errno("asprintf");
855 8087c3c5 2020-01-15 tracey
856 8087c3c5 2020-01-15 tracey if ((p = gw_trans->gw_req->fieldmap[KEY_HEADREF]))
857 8087c3c5 2020-01-15 tracey if ((asprintf(&gw_trans->headref, "%s",
858 2c251c14 2020-01-15 tracey p->parsed.s)) == -1)
859 2c251c14 2020-01-15 tracey return got_error_from_errno("asprintf");
860 2c251c14 2020-01-15 tracey
861 2c251c14 2020-01-15 tracey if (action == NULL) {
862 2c251c14 2020-01-15 tracey error = got_error_from_errno("invalid action");
863 2c251c14 2020-01-15 tracey return error;
864 2c251c14 2020-01-15 tracey }
865 46b9c89b 2020-01-15 tracey if ((gw_trans->gw_dir =
866 46b9c89b 2020-01-15 tracey gw_init_gw_dir(gw_trans->repo_name)) == NULL)
867 46b9c89b 2020-01-15 tracey return got_error_from_errno("gw_dir malloc");
868 46b9c89b 2020-01-15 tracey
869 46b9c89b 2020-01-15 tracey error = gw_load_got_path(gw_trans, gw_trans->gw_dir);
870 46b9c89b 2020-01-15 tracey if (error)
871 46b9c89b 2020-01-15 tracey return error;
872 2c251c14 2020-01-15 tracey } else
873 2c251c14 2020-01-15 tracey gw_trans->action = GW_INDEX;
874 2c251c14 2020-01-15 tracey
875 2c251c14 2020-01-15 tracey if ((p = gw_trans->gw_req->fieldmap[KEY_PAGE]))
876 2c251c14 2020-01-15 tracey gw_trans->page = p->parsed.i;
877 2c251c14 2020-01-15 tracey
878 2c251c14 2020-01-15 tracey if (gw_trans->action == GW_RAW)
879 387a29ba 2020-01-15 tracey gw_trans->mime = KMIME_TEXT_PLAIN;
880 2c251c14 2020-01-15 tracey
881 2c251c14 2020-01-15 tracey return error;
882 2c251c14 2020-01-15 tracey }
883 2c251c14 2020-01-15 tracey
884 2c251c14 2020-01-15 tracey static struct gw_dir *
885 2c251c14 2020-01-15 tracey gw_init_gw_dir(char *dir)
886 2c251c14 2020-01-15 tracey {
887 2c251c14 2020-01-15 tracey struct gw_dir *gw_dir;
888 2c251c14 2020-01-15 tracey
889 2c251c14 2020-01-15 tracey if ((gw_dir = malloc(sizeof(*gw_dir))) == NULL)
890 2c251c14 2020-01-15 tracey return NULL;
891 2c251c14 2020-01-15 tracey
892 2c251c14 2020-01-15 tracey if ((asprintf(&gw_dir->name, "%s", dir)) == -1)
893 2c251c14 2020-01-15 tracey return NULL;
894 2c251c14 2020-01-15 tracey
895 2c251c14 2020-01-15 tracey return gw_dir;
896 474370cb 2020-01-15 tracey }
897 474370cb 2020-01-15 tracey
898 474370cb 2020-01-15 tracey static const struct got_error*
899 474370cb 2020-01-15 tracey match_logmsg(int *have_match, struct got_object_id *id,
900 474370cb 2020-01-15 tracey struct got_commit_object *commit, regex_t *regex)
901 474370cb 2020-01-15 tracey {
902 474370cb 2020-01-15 tracey const struct got_error *err = NULL;
903 474370cb 2020-01-15 tracey regmatch_t regmatch;
904 474370cb 2020-01-15 tracey char *id_str = NULL, *logmsg = NULL;
905 474370cb 2020-01-15 tracey
906 474370cb 2020-01-15 tracey *have_match = 0;
907 474370cb 2020-01-15 tracey
908 474370cb 2020-01-15 tracey err = got_object_id_str(&id_str, id);
909 474370cb 2020-01-15 tracey if (err)
910 474370cb 2020-01-15 tracey return err;
911 474370cb 2020-01-15 tracey
912 474370cb 2020-01-15 tracey err = got_object_commit_get_logmsg(&logmsg, commit);
913 474370cb 2020-01-15 tracey if (err)
914 474370cb 2020-01-15 tracey goto done;
915 474370cb 2020-01-15 tracey
916 474370cb 2020-01-15 tracey if (regexec(regex, logmsg, 1, &regmatch, 0) == 0)
917 474370cb 2020-01-15 tracey *have_match = 1;
918 474370cb 2020-01-15 tracey done:
919 474370cb 2020-01-15 tracey free(id_str);
920 474370cb 2020-01-15 tracey free(logmsg);
921 474370cb 2020-01-15 tracey return err;
922 2c251c14 2020-01-15 tracey }
923 2c251c14 2020-01-15 tracey
924 2c251c14 2020-01-15 tracey static void
925 2c251c14 2020-01-15 tracey gw_display_open(struct trans *gw_trans, enum khttp code, enum kmime mime)
926 2c251c14 2020-01-15 tracey {
927 2c251c14 2020-01-15 tracey khttp_head(gw_trans->gw_req, kresps[KRESP_ALLOW], "GET");
928 2c251c14 2020-01-15 tracey khttp_head(gw_trans->gw_req, kresps[KRESP_STATUS], "%s",
929 2c251c14 2020-01-15 tracey khttps[code]);
930 387a29ba 2020-01-15 tracey khttp_head(gw_trans->gw_req, kresps[KRESP_CONTENT_TYPE], "%s",
931 2c251c14 2020-01-15 tracey kmimetypes[mime]);
932 2c251c14 2020-01-15 tracey khttp_head(gw_trans->gw_req, "X-Content-Type-Options", "nosniff");
933 2c251c14 2020-01-15 tracey khttp_head(gw_trans->gw_req, "X-Frame-Options", "DENY");
934 2c251c14 2020-01-15 tracey khttp_head(gw_trans->gw_req, "X-XSS-Protection", "1; mode=block");
935 2c251c14 2020-01-15 tracey khttp_body(gw_trans->gw_req);
936 2c251c14 2020-01-15 tracey }
937 2c251c14 2020-01-15 tracey
938 2c251c14 2020-01-15 tracey static void
939 2c251c14 2020-01-15 tracey gw_display_index(struct trans *gw_trans, const struct got_error *err)
940 2c251c14 2020-01-15 tracey {
941 2c251c14 2020-01-15 tracey gw_display_open(gw_trans, KHTTP_200, gw_trans->mime);
942 2c251c14 2020-01-15 tracey khtml_open(gw_trans->gw_html_req, gw_trans->gw_req, 0);
943 2c251c14 2020-01-15 tracey
944 2c251c14 2020-01-15 tracey if (err)
945 2c251c14 2020-01-15 tracey khttp_puts(gw_trans->gw_req, err->msg);
946 2c251c14 2020-01-15 tracey else
947 2c251c14 2020-01-15 tracey khttp_template(gw_trans->gw_req, gw_trans->gw_tmpl,
948 2c251c14 2020-01-15 tracey gw_query_funcs[gw_trans->action].template);
949 2c251c14 2020-01-15 tracey
950 2c251c14 2020-01-15 tracey khtml_close(gw_trans->gw_html_req);
951 2c251c14 2020-01-15 tracey }
952 2c251c14 2020-01-15 tracey
953 2c251c14 2020-01-15 tracey static int
954 2c251c14 2020-01-15 tracey gw_template(size_t key, void *arg)
955 2c251c14 2020-01-15 tracey {
956 2c251c14 2020-01-15 tracey const struct got_error *error = NULL;
957 2c251c14 2020-01-15 tracey struct trans *gw_trans = arg;
958 2c251c14 2020-01-15 tracey char *gw_got_link, *gw_site_link;
959 2c251c14 2020-01-15 tracey char *site_owner_name, *site_owner_name_h;
960 2c251c14 2020-01-15 tracey
961 2c251c14 2020-01-15 tracey switch (key) {
962 2c251c14 2020-01-15 tracey case (TEMPL_HEAD):
963 2c251c14 2020-01-15 tracey khttp_puts(gw_trans->gw_req, head);
964 2c251c14 2020-01-15 tracey break;
965 2c251c14 2020-01-15 tracey case(TEMPL_HEADER):
966 2c251c14 2020-01-15 tracey gw_got_link = gw_get_got_link(gw_trans);
967 2c251c14 2020-01-15 tracey if (gw_got_link != NULL)
968 2c251c14 2020-01-15 tracey khttp_puts(gw_trans->gw_req, gw_got_link);
969 2c251c14 2020-01-15 tracey
970 2c251c14 2020-01-15 tracey free(gw_got_link);
971 2c251c14 2020-01-15 tracey break;
972 2c251c14 2020-01-15 tracey case (TEMPL_SITEPATH):
973 2c251c14 2020-01-15 tracey gw_site_link = gw_get_site_link(gw_trans);
974 2c251c14 2020-01-15 tracey if (gw_site_link != NULL)
975 2c251c14 2020-01-15 tracey khttp_puts(gw_trans->gw_req, gw_site_link);
976 2c251c14 2020-01-15 tracey
977 2c251c14 2020-01-15 tracey free(gw_site_link);
978 2c251c14 2020-01-15 tracey break;
979 2c251c14 2020-01-15 tracey case(TEMPL_TITLE):
980 2c251c14 2020-01-15 tracey if (gw_trans->gw_conf->got_site_name != NULL)
981 2c251c14 2020-01-15 tracey khtml_puts(gw_trans->gw_html_req,
982 2c251c14 2020-01-15 tracey gw_trans->gw_conf->got_site_name);
983 2c251c14 2020-01-15 tracey
984 2c251c14 2020-01-15 tracey break;
985 2c251c14 2020-01-15 tracey case (TEMPL_SEARCH):
986 2c251c14 2020-01-15 tracey khttp_puts(gw_trans->gw_req, search);
987 2c251c14 2020-01-15 tracey break;
988 2c251c14 2020-01-15 tracey case(TEMPL_SITEOWNER):
989 2c251c14 2020-01-15 tracey if (gw_trans->gw_conf->got_site_owner != NULL &&
990 2c251c14 2020-01-15 tracey gw_trans->gw_conf->got_show_site_owner) {
991 2c251c14 2020-01-15 tracey site_owner_name =
992 2c251c14 2020-01-15 tracey gw_html_escape(gw_trans->gw_conf->got_site_owner);
993 2c251c14 2020-01-15 tracey if ((asprintf(&site_owner_name_h, site_owner,
994 2c251c14 2020-01-15 tracey site_owner_name))
995 2c251c14 2020-01-15 tracey == -1)
996 2c251c14 2020-01-15 tracey return 0;
997 2c251c14 2020-01-15 tracey
998 2c251c14 2020-01-15 tracey khttp_puts(gw_trans->gw_req, site_owner_name_h);
999 2c251c14 2020-01-15 tracey free(site_owner_name);
1000 2c251c14 2020-01-15 tracey free(site_owner_name_h);
1001 2c251c14 2020-01-15 tracey }
1002 2c251c14 2020-01-15 tracey break;
1003 2c251c14 2020-01-15 tracey case(TEMPL_CONTENT):
1004 2c251c14 2020-01-15 tracey error = gw_query_funcs[gw_trans->action].func_main(gw_trans);
1005 2c251c14 2020-01-15 tracey if (error)
1006 2c251c14 2020-01-15 tracey khttp_puts(gw_trans->gw_req, error->msg);
1007 2c251c14 2020-01-15 tracey
1008 2c251c14 2020-01-15 tracey break;
1009 2c251c14 2020-01-15 tracey default:
1010 2c251c14 2020-01-15 tracey return 0;
1011 2c251c14 2020-01-15 tracey break;
1012 2c251c14 2020-01-15 tracey }
1013 2c251c14 2020-01-15 tracey return 1;
1014 2c251c14 2020-01-15 tracey }
1015 2c251c14 2020-01-15 tracey
1016 2c251c14 2020-01-15 tracey static char *
1017 2c251c14 2020-01-15 tracey gw_get_repo_description(struct trans *gw_trans, char *dir)
1018 2c251c14 2020-01-15 tracey {
1019 2c251c14 2020-01-15 tracey FILE *f;
1020 2c251c14 2020-01-15 tracey char *description = NULL, *d_file = NULL;
1021 2c251c14 2020-01-15 tracey unsigned int len;
1022 2c251c14 2020-01-15 tracey
1023 2c251c14 2020-01-15 tracey if (gw_trans->gw_conf->got_show_repo_description == false)
1024 2c251c14 2020-01-15 tracey goto err;
1025 2c251c14 2020-01-15 tracey
1026 2c251c14 2020-01-15 tracey if ((asprintf(&d_file, "%s/description", dir)) == -1)
1027 2c251c14 2020-01-15 tracey goto err;
1028 2c251c14 2020-01-15 tracey
1029 2c251c14 2020-01-15 tracey if ((f = fopen(d_file, "r")) == NULL)
1030 2c251c14 2020-01-15 tracey goto err;
1031 2c251c14 2020-01-15 tracey
1032 2c251c14 2020-01-15 tracey fseek(f, 0, SEEK_END);
1033 2c251c14 2020-01-15 tracey len = ftell(f) + 1;
1034 2c251c14 2020-01-15 tracey fseek(f, 0, SEEK_SET);
1035 2c251c14 2020-01-15 tracey if ((description = calloc(len, sizeof(char *))) == NULL)
1036 2c251c14 2020-01-15 tracey goto err;
1037 2c251c14 2020-01-15 tracey
1038 2c251c14 2020-01-15 tracey fread(description, 1, len, f);
1039 2c251c14 2020-01-15 tracey fclose(f);
1040 2c251c14 2020-01-15 tracey free(d_file);
1041 2c251c14 2020-01-15 tracey return description;
1042 2c251c14 2020-01-15 tracey err:
1043 2c251c14 2020-01-15 tracey if ((asprintf(&description, "%s", "")) == -1)
1044 2c251c14 2020-01-15 tracey return NULL;
1045 2c251c14 2020-01-15 tracey
1046 2c251c14 2020-01-15 tracey return description;
1047 2c251c14 2020-01-15 tracey }
1048 2c251c14 2020-01-15 tracey
1049 2c251c14 2020-01-15 tracey static char *
1050 474370cb 2020-01-15 tracey gw_get_time_str(time_t committer_time, int ref_tm)
1051 474370cb 2020-01-15 tracey {
1052 474370cb 2020-01-15 tracey struct tm tm;
1053 474370cb 2020-01-15 tracey time_t diff_time;
1054 474370cb 2020-01-15 tracey char *years = "years ago", *months = "months ago";
1055 474370cb 2020-01-15 tracey char *weeks = "weeks ago", *days = "days ago", *hours = "hours ago";
1056 474370cb 2020-01-15 tracey char *minutes = "minutes ago", *seconds = "seconds ago";
1057 474370cb 2020-01-15 tracey char *now = "right now";
1058 474370cb 2020-01-15 tracey char *repo_age, *s;
1059 6c6c85af 2020-01-15 tracey char datebuf[29];
1060 474370cb 2020-01-15 tracey
1061 474370cb 2020-01-15 tracey switch (ref_tm) {
1062 474370cb 2020-01-15 tracey case TM_DIFF:
1063 474370cb 2020-01-15 tracey diff_time = time(NULL) - committer_time;
1064 474370cb 2020-01-15 tracey if (diff_time > 60 * 60 * 24 * 365 * 2) {
1065 474370cb 2020-01-15 tracey if ((asprintf(&repo_age, "%lld %s",
1066 474370cb 2020-01-15 tracey (diff_time / 60 / 60 / 24 / 365), years)) == -1)
1067 474370cb 2020-01-15 tracey return NULL;
1068 474370cb 2020-01-15 tracey } else if (diff_time > 60 * 60 * 24 * (365 / 12) * 2) {
1069 474370cb 2020-01-15 tracey if ((asprintf(&repo_age, "%lld %s",
1070 474370cb 2020-01-15 tracey (diff_time / 60 / 60 / 24 / (365 / 12)),
1071 474370cb 2020-01-15 tracey months)) == -1)
1072 474370cb 2020-01-15 tracey return NULL;
1073 474370cb 2020-01-15 tracey } else if (diff_time > 60 * 60 * 24 * 7 * 2) {
1074 474370cb 2020-01-15 tracey if ((asprintf(&repo_age, "%lld %s",
1075 474370cb 2020-01-15 tracey (diff_time / 60 / 60 / 24 / 7), weeks)) == -1)
1076 474370cb 2020-01-15 tracey return NULL;
1077 474370cb 2020-01-15 tracey } else if (diff_time > 60 * 60 * 24 * 2) {
1078 474370cb 2020-01-15 tracey if ((asprintf(&repo_age, "%lld %s",
1079 474370cb 2020-01-15 tracey (diff_time / 60 / 60 / 24), days)) == -1)
1080 474370cb 2020-01-15 tracey return NULL;
1081 474370cb 2020-01-15 tracey } else if (diff_time > 60 * 60 * 2) {
1082 474370cb 2020-01-15 tracey if ((asprintf(&repo_age, "%lld %s",
1083 474370cb 2020-01-15 tracey (diff_time / 60 / 60), hours)) == -1)
1084 474370cb 2020-01-15 tracey return NULL;
1085 474370cb 2020-01-15 tracey } else if (diff_time > 60 * 2) {
1086 474370cb 2020-01-15 tracey if ((asprintf(&repo_age, "%lld %s", (diff_time / 60),
1087 474370cb 2020-01-15 tracey minutes)) == -1)
1088 474370cb 2020-01-15 tracey return NULL;
1089 474370cb 2020-01-15 tracey } else if (diff_time > 2) {
1090 474370cb 2020-01-15 tracey if ((asprintf(&repo_age, "%lld %s", diff_time,
1091 474370cb 2020-01-15 tracey seconds)) == -1)
1092 474370cb 2020-01-15 tracey return NULL;
1093 474370cb 2020-01-15 tracey } else {
1094 474370cb 2020-01-15 tracey if ((asprintf(&repo_age, "%s", now)) == -1)
1095 474370cb 2020-01-15 tracey return NULL;
1096 474370cb 2020-01-15 tracey }
1097 474370cb 2020-01-15 tracey break;
1098 474370cb 2020-01-15 tracey case TM_LONG:
1099 474370cb 2020-01-15 tracey if (gmtime_r(&committer_time, &tm) == NULL)
1100 474370cb 2020-01-15 tracey return NULL;
1101 474370cb 2020-01-15 tracey
1102 474370cb 2020-01-15 tracey s = asctime_r(&tm, datebuf);
1103 474370cb 2020-01-15 tracey if (s == NULL)
1104 474370cb 2020-01-15 tracey return NULL;
1105 474370cb 2020-01-15 tracey
1106 474370cb 2020-01-15 tracey if ((asprintf(&repo_age, "%s UTC", datebuf)) == -1)
1107 474370cb 2020-01-15 tracey return NULL;
1108 474370cb 2020-01-15 tracey break;
1109 474370cb 2020-01-15 tracey }
1110 474370cb 2020-01-15 tracey return repo_age;
1111 474370cb 2020-01-15 tracey }
1112 474370cb 2020-01-15 tracey
1113 474370cb 2020-01-15 tracey static char *
1114 387a29ba 2020-01-15 tracey gw_get_repo_age(struct trans *gw_trans, char *dir, char *repo_ref, int ref_tm)
1115 2c251c14 2020-01-15 tracey {
1116 2c251c14 2020-01-15 tracey const struct got_error *error = NULL;
1117 2c251c14 2020-01-15 tracey struct got_object_id *id = NULL;
1118 2c251c14 2020-01-15 tracey struct got_repository *repo = NULL;
1119 2c251c14 2020-01-15 tracey struct got_commit_object *commit = NULL;
1120 2c251c14 2020-01-15 tracey struct got_reflist_head refs;
1121 2c251c14 2020-01-15 tracey struct got_reflist_entry *re;
1122 2c251c14 2020-01-15 tracey struct got_reference *head_ref;
1123 87f9ebf5 2020-01-15 tracey int is_head = 0;
1124 474370cb 2020-01-15 tracey time_t committer_time = 0, cmp_time = 0;
1125 87f9ebf5 2020-01-15 tracey const char *refname;
1126 474370cb 2020-01-15 tracey char *repo_age = NULL;
1127 387a29ba 2020-01-15 tracey
1128 387a29ba 2020-01-15 tracey if (repo_ref == NULL)
1129 387a29ba 2020-01-15 tracey return NULL;
1130 87f9ebf5 2020-01-15 tracey
1131 87f9ebf5 2020-01-15 tracey if (strncmp(repo_ref, "refs/heads/", 11) == 0)
1132 87f9ebf5 2020-01-15 tracey is_head = 1;
1133 2c251c14 2020-01-15 tracey
1134 2c251c14 2020-01-15 tracey SIMPLEQ_INIT(&refs);
1135 2c251c14 2020-01-15 tracey if (gw_trans->gw_conf->got_show_repo_age == false) {
1136 8087c3c5 2020-01-15 tracey if ((asprintf(&repo_age, "")) == -1)
1137 8087c3c5 2020-01-15 tracey return NULL;
1138 2c251c14 2020-01-15 tracey return repo_age;
1139 2c251c14 2020-01-15 tracey }
1140 87f9ebf5 2020-01-15 tracey
1141 2c251c14 2020-01-15 tracey error = got_repo_open(&repo, dir, NULL);
1142 2c251c14 2020-01-15 tracey if (error != NULL)
1143 2c251c14 2020-01-15 tracey goto err;
1144 2c251c14 2020-01-15 tracey
1145 87f9ebf5 2020-01-15 tracey if (is_head)
1146 87f9ebf5 2020-01-15 tracey error = got_ref_list(&refs, repo, "refs/heads",
1147 87f9ebf5 2020-01-15 tracey got_ref_cmp_by_name, NULL);
1148 87f9ebf5 2020-01-15 tracey else
1149 87f9ebf5 2020-01-15 tracey error = got_ref_list(&refs, repo, repo_ref,
1150 87f9ebf5 2020-01-15 tracey got_ref_cmp_by_name, NULL);
1151 2c251c14 2020-01-15 tracey if (error != NULL)
1152 2c251c14 2020-01-15 tracey goto err;
1153 2c251c14 2020-01-15 tracey
1154 2c251c14 2020-01-15 tracey SIMPLEQ_FOREACH(re, &refs, entry) {
1155 87f9ebf5 2020-01-15 tracey if (is_head)
1156 87f9ebf5 2020-01-15 tracey refname = strdup(repo_ref);
1157 87f9ebf5 2020-01-15 tracey else
1158 87f9ebf5 2020-01-15 tracey refname = got_ref_get_name(re->ref);
1159 2c251c14 2020-01-15 tracey error = got_ref_open(&head_ref, repo, refname, 0);
1160 2c251c14 2020-01-15 tracey if (error != NULL)
1161 2c251c14 2020-01-15 tracey goto err;
1162 2c251c14 2020-01-15 tracey
1163 2c251c14 2020-01-15 tracey error = got_ref_resolve(&id, repo, head_ref);
1164 2c251c14 2020-01-15 tracey got_ref_close(head_ref);
1165 2c251c14 2020-01-15 tracey if (error != NULL)
1166 2c251c14 2020-01-15 tracey goto err;
1167 2c251c14 2020-01-15 tracey
1168 2c251c14 2020-01-15 tracey error = got_object_open_as_commit(&commit, repo, id);
1169 2c251c14 2020-01-15 tracey if (error != NULL)
1170 2c251c14 2020-01-15 tracey goto err;
1171 2c251c14 2020-01-15 tracey
1172 2c251c14 2020-01-15 tracey committer_time =
1173 2c251c14 2020-01-15 tracey got_object_commit_get_committer_time(commit);
1174 2c251c14 2020-01-15 tracey
1175 387a29ba 2020-01-15 tracey if (cmp_time < committer_time)
1176 2c251c14 2020-01-15 tracey cmp_time = committer_time;
1177 2c251c14 2020-01-15 tracey }
1178 2c251c14 2020-01-15 tracey
1179 474370cb 2020-01-15 tracey if (cmp_time != 0) {
1180 2c251c14 2020-01-15 tracey committer_time = cmp_time;
1181 474370cb 2020-01-15 tracey repo_age = gw_get_time_str(committer_time, ref_tm);
1182 474370cb 2020-01-15 tracey } else
1183 474370cb 2020-01-15 tracey if ((asprintf(&repo_age, "")) == -1)
1184 474370cb 2020-01-15 tracey return NULL;
1185 2c251c14 2020-01-15 tracey got_ref_list_free(&refs);
1186 2c251c14 2020-01-15 tracey free(id);
1187 2c251c14 2020-01-15 tracey return repo_age;
1188 2c251c14 2020-01-15 tracey err:
1189 2c251c14 2020-01-15 tracey if ((asprintf(&repo_age, "%s", error->msg)) == -1)
1190 2c251c14 2020-01-15 tracey return NULL;
1191 2c251c14 2020-01-15 tracey
1192 2c251c14 2020-01-15 tracey return repo_age;
1193 2c251c14 2020-01-15 tracey }
1194 2c251c14 2020-01-15 tracey
1195 2c251c14 2020-01-15 tracey static char *
1196 2c251c14 2020-01-15 tracey gw_get_repo_owner(struct trans *gw_trans, char *dir)
1197 2c251c14 2020-01-15 tracey {
1198 2c251c14 2020-01-15 tracey FILE *f;
1199 2c251c14 2020-01-15 tracey char *owner = NULL, *d_file = NULL;
1200 2c251c14 2020-01-15 tracey char *gotweb = "[gotweb]", *gitweb = "[gitweb]", *gw_owner = "owner";
1201 2c251c14 2020-01-15 tracey char *comp, *pos, *buf;
1202 2c251c14 2020-01-15 tracey unsigned int i;
1203 2c251c14 2020-01-15 tracey
1204 2c251c14 2020-01-15 tracey if (gw_trans->gw_conf->got_show_repo_owner == false)
1205 2c251c14 2020-01-15 tracey goto err;
1206 2c251c14 2020-01-15 tracey
1207 2c251c14 2020-01-15 tracey if ((asprintf(&d_file, "%s/config", dir)) == -1)
1208 2c251c14 2020-01-15 tracey goto err;
1209 2c251c14 2020-01-15 tracey
1210 2c251c14 2020-01-15 tracey if ((f = fopen(d_file, "r")) == NULL)
1211 2c251c14 2020-01-15 tracey goto err;
1212 2c251c14 2020-01-15 tracey
1213 6c6c85af 2020-01-15 tracey if ((buf = calloc(128, sizeof(char *))) == NULL)
1214 2c251c14 2020-01-15 tracey goto err;
1215 2c251c14 2020-01-15 tracey
1216 6c6c85af 2020-01-15 tracey while ((fgets(buf, 128, f)) != NULL) {
1217 2c251c14 2020-01-15 tracey if ((pos = strstr(buf, gotweb)) != NULL)
1218 2c251c14 2020-01-15 tracey break;
1219 2c251c14 2020-01-15 tracey
1220 2c251c14 2020-01-15 tracey if ((pos = strstr(buf, gitweb)) != NULL)
1221 2c251c14 2020-01-15 tracey break;
1222 2c251c14 2020-01-15 tracey }
1223 2c251c14 2020-01-15 tracey
1224 2c251c14 2020-01-15 tracey if (pos == NULL)
1225 2c251c14 2020-01-15 tracey goto err;
1226 2c251c14 2020-01-15 tracey
1227 2c251c14 2020-01-15 tracey do {
1228 6c6c85af 2020-01-15 tracey fgets(buf, 128, f);
1229 2c251c14 2020-01-15 tracey } while ((comp = strcasestr(buf, gw_owner)) == NULL);
1230 2c251c14 2020-01-15 tracey
1231 2c251c14 2020-01-15 tracey if (comp == NULL)
1232 2c251c14 2020-01-15 tracey goto err;
1233 2c251c14 2020-01-15 tracey
1234 2c251c14 2020-01-15 tracey if (strncmp(gw_owner, comp, strlen(gw_owner)) != 0)
1235 2c251c14 2020-01-15 tracey goto err;
1236 2c251c14 2020-01-15 tracey
1237 2c251c14 2020-01-15 tracey for (i = 0; i < 2; i++) {
1238 2c251c14 2020-01-15 tracey owner = strsep(&buf, "\"");
1239 2c251c14 2020-01-15 tracey }
1240 2c251c14 2020-01-15 tracey
1241 2c251c14 2020-01-15 tracey if (owner == NULL)
1242 2c251c14 2020-01-15 tracey goto err;
1243 2c251c14 2020-01-15 tracey
1244 2c251c14 2020-01-15 tracey fclose(f);
1245 2c251c14 2020-01-15 tracey free(d_file);
1246 2c251c14 2020-01-15 tracey return owner;
1247 2c251c14 2020-01-15 tracey err:
1248 2c251c14 2020-01-15 tracey if ((asprintf(&owner, "%s", "")) == -1)
1249 2c251c14 2020-01-15 tracey return NULL;
1250 2c251c14 2020-01-15 tracey
1251 2c251c14 2020-01-15 tracey return owner;
1252 2c251c14 2020-01-15 tracey }
1253 2c251c14 2020-01-15 tracey
1254 2c251c14 2020-01-15 tracey static char *
1255 2c251c14 2020-01-15 tracey gw_get_clone_url(struct trans *gw_trans, char *dir)
1256 2c251c14 2020-01-15 tracey {
1257 2c251c14 2020-01-15 tracey FILE *f;
1258 2c251c14 2020-01-15 tracey char *url = NULL, *d_file = NULL;
1259 2c251c14 2020-01-15 tracey unsigned int len;
1260 2c251c14 2020-01-15 tracey
1261 2c251c14 2020-01-15 tracey if ((asprintf(&d_file, "%s/cloneurl", dir)) == -1)
1262 2c251c14 2020-01-15 tracey return NULL;
1263 2c251c14 2020-01-15 tracey
1264 2c251c14 2020-01-15 tracey if ((f = fopen(d_file, "r")) == NULL)
1265 2c251c14 2020-01-15 tracey return NULL;
1266 2c251c14 2020-01-15 tracey
1267 2c251c14 2020-01-15 tracey fseek(f, 0, SEEK_END);
1268 2c251c14 2020-01-15 tracey len = ftell(f) + 1;
1269 2c251c14 2020-01-15 tracey fseek(f, 0, SEEK_SET);
1270 2c251c14 2020-01-15 tracey
1271 2c251c14 2020-01-15 tracey if ((url = calloc(len, sizeof(char *))) == NULL)
1272 2c251c14 2020-01-15 tracey return NULL;
1273 2c251c14 2020-01-15 tracey
1274 2c251c14 2020-01-15 tracey fread(url, 1, len, f);
1275 2c251c14 2020-01-15 tracey fclose(f);
1276 2c251c14 2020-01-15 tracey free(d_file);
1277 2c251c14 2020-01-15 tracey return url;
1278 8d4d2453 2020-01-15 tracey }
1279 8d4d2453 2020-01-15 tracey
1280 8d4d2453 2020-01-15 tracey static char *
1281 4ceb8155 2020-01-15 tracey gw_get_repo_log(struct trans *gw_trans, const char *search_pattern,
1282 8087c3c5 2020-01-15 tracey char *start_commit, int limit, int log_type)
1283 8d4d2453 2020-01-15 tracey {
1284 c6b62706 2020-01-15 tracey const struct got_error *error;
1285 c6b62706 2020-01-15 tracey struct got_repository *repo = NULL;
1286 c6b62706 2020-01-15 tracey struct got_reflist_head refs;
1287 474370cb 2020-01-15 tracey struct got_reflist_entry *re;
1288 c6b62706 2020-01-15 tracey struct got_commit_object *commit = NULL;
1289 8087c3c5 2020-01-15 tracey struct got_object_id *id1 = NULL, *id2 = NULL;
1290 8087c3c5 2020-01-15 tracey struct got_object_qid *parent_id;
1291 474370cb 2020-01-15 tracey struct got_commit_graph *graph = NULL;
1292 87f9ebf5 2020-01-15 tracey char *logs = NULL, *id_str1 = NULL, *id_str2 = NULL, *path = NULL,
1293 87f9ebf5 2020-01-15 tracey *in_repo_path = NULL, *refs_str = NULL, *refs_str_disp = NULL,
1294 87f9ebf5 2020-01-15 tracey *treeid = NULL, *commit_row = NULL, *commit_commit = NULL,
1295 87f9ebf5 2020-01-15 tracey *commit_commit_disp = NULL, *commit_age_diff = NULL,
1296 87f9ebf5 2020-01-15 tracey *commit_age_diff_disp = NULL, *commit_age_long = NULL,
1297 87f9ebf5 2020-01-15 tracey *commit_age_long_disp = NULL, *commit_author = NULL,
1298 87f9ebf5 2020-01-15 tracey *commit_author_disp = NULL, *commit_committer = NULL,
1299 87f9ebf5 2020-01-15 tracey *commit_committer_disp = NULL, *commit_log = NULL,
1300 87f9ebf5 2020-01-15 tracey *commit_log_disp = NULL, *commit_parent = NULL,
1301 87f9ebf5 2020-01-15 tracey *commit_diff_disp = NULL, *logbriefs_navs_html = NULL,
1302 87f9ebf5 2020-01-15 tracey *log_tree_html = NULL, *log_commit_html = NULL,
1303 87f9ebf5 2020-01-15 tracey *log_diff_html = NULL, *commit_tree = NULL,
1304 077f6c5a 2020-01-15 tracey *commit_tree_disp = NULL, *log_tag_html = NULL;
1305 87f9ebf5 2020-01-15 tracey char *commit_log0, *newline;
1306 474370cb 2020-01-15 tracey regex_t regex;
1307 9d84e7dd 2020-01-15 tracey int have_match;
1308 474370cb 2020-01-15 tracey size_t newsize;
1309 8087c3c5 2020-01-15 tracey struct buf *diffbuf = NULL;
1310 474370cb 2020-01-15 tracey time_t committer_time;
1311 8d4d2453 2020-01-15 tracey
1312 6c6c85af 2020-01-15 tracey error = buf_alloc(&diffbuf, 0);
1313 6c6c85af 2020-01-15 tracey if (error != NULL)
1314 6c6c85af 2020-01-15 tracey return NULL;
1315 6c6c85af 2020-01-15 tracey
1316 474370cb 2020-01-15 tracey if (search_pattern &&
1317 474370cb 2020-01-15 tracey regcomp(&regex, search_pattern, REG_EXTENDED | REG_NOSUB |
1318 474370cb 2020-01-15 tracey REG_NEWLINE))
1319 474370cb 2020-01-15 tracey return NULL;
1320 474370cb 2020-01-15 tracey
1321 c6b62706 2020-01-15 tracey error = got_repo_open(&repo, gw_trans->repo_path, NULL);
1322 c6b62706 2020-01-15 tracey if (error != NULL)
1323 6c6c85af 2020-01-15 tracey return NULL;
1324 c6b62706 2020-01-15 tracey
1325 6c6c85af 2020-01-15 tracey SIMPLEQ_INIT(&refs);
1326 474370cb 2020-01-15 tracey
1327 c6b62706 2020-01-15 tracey if (start_commit == NULL) {
1328 c6b62706 2020-01-15 tracey struct got_reference *head_ref;
1329 8087c3c5 2020-01-15 tracey error = got_ref_open(&head_ref, repo, gw_trans->headref, 0);
1330 c6b62706 2020-01-15 tracey if (error != NULL)
1331 8087c3c5 2020-01-15 tracey goto done;
1332 6c6c85af 2020-01-15 tracey
1333 8087c3c5 2020-01-15 tracey error = got_ref_resolve(&id1, repo, head_ref);
1334 c6b62706 2020-01-15 tracey got_ref_close(head_ref);
1335 c6b62706 2020-01-15 tracey if (error != NULL)
1336 8087c3c5 2020-01-15 tracey goto done;
1337 6c6c85af 2020-01-15 tracey
1338 8087c3c5 2020-01-15 tracey error = got_object_open_as_commit(&commit, repo, id1);
1339 c6b62706 2020-01-15 tracey } else {
1340 c6b62706 2020-01-15 tracey struct got_reference *ref;
1341 c6b62706 2020-01-15 tracey error = got_ref_open(&ref, repo, start_commit, 0);
1342 c6b62706 2020-01-15 tracey if (error == NULL) {
1343 c6b62706 2020-01-15 tracey int obj_type;
1344 8087c3c5 2020-01-15 tracey error = got_ref_resolve(&id1, repo, ref);
1345 c6b62706 2020-01-15 tracey got_ref_close(ref);
1346 c6b62706 2020-01-15 tracey if (error != NULL)
1347 c6b62706 2020-01-15 tracey goto done;
1348 8087c3c5 2020-01-15 tracey error = got_object_get_type(&obj_type, repo, id1);
1349 c6b62706 2020-01-15 tracey if (error != NULL)
1350 c6b62706 2020-01-15 tracey goto done;
1351 c6b62706 2020-01-15 tracey if (obj_type == GOT_OBJ_TYPE_TAG) {
1352 c6b62706 2020-01-15 tracey struct got_tag_object *tag;
1353 8087c3c5 2020-01-15 tracey error = got_object_open_as_tag(&tag, repo, id1);
1354 c6b62706 2020-01-15 tracey if (error != NULL)
1355 c6b62706 2020-01-15 tracey goto done;
1356 c6b62706 2020-01-15 tracey if (got_object_tag_get_object_type(tag) !=
1357 c6b62706 2020-01-15 tracey GOT_OBJ_TYPE_COMMIT) {
1358 c6b62706 2020-01-15 tracey got_object_tag_close(tag);
1359 c6b62706 2020-01-15 tracey error = got_error(GOT_ERR_OBJ_TYPE);
1360 c6b62706 2020-01-15 tracey goto done;
1361 c6b62706 2020-01-15 tracey }
1362 8087c3c5 2020-01-15 tracey free(id1);
1363 8087c3c5 2020-01-15 tracey id1 = got_object_id_dup(
1364 c6b62706 2020-01-15 tracey got_object_tag_get_object_id(tag));
1365 8087c3c5 2020-01-15 tracey if (id1 == NULL)
1366 c6b62706 2020-01-15 tracey error = got_error_from_errno(
1367 c6b62706 2020-01-15 tracey "got_object_id_dup");
1368 c6b62706 2020-01-15 tracey got_object_tag_close(tag);
1369 c6b62706 2020-01-15 tracey if (error)
1370 c6b62706 2020-01-15 tracey goto done;
1371 c6b62706 2020-01-15 tracey } else if (obj_type != GOT_OBJ_TYPE_COMMIT) {
1372 c6b62706 2020-01-15 tracey error = got_error(GOT_ERR_OBJ_TYPE);
1373 c6b62706 2020-01-15 tracey goto done;
1374 c6b62706 2020-01-15 tracey }
1375 8087c3c5 2020-01-15 tracey error = got_object_open_as_commit(&commit, repo, id1);
1376 c6b62706 2020-01-15 tracey if (error != NULL)
1377 c6b62706 2020-01-15 tracey goto done;
1378 c6b62706 2020-01-15 tracey }
1379 c6b62706 2020-01-15 tracey if (commit == NULL) {
1380 8087c3c5 2020-01-15 tracey error = got_repo_match_object_id_prefix(&id1,
1381 c6b62706 2020-01-15 tracey start_commit, GOT_OBJ_TYPE_COMMIT, repo);
1382 c6b62706 2020-01-15 tracey if (error != NULL)
1383 8087c3c5 2020-01-15 tracey goto done;
1384 c6b62706 2020-01-15 tracey }
1385 8087c3c5 2020-01-15 tracey error = got_repo_match_object_id_prefix(&id1,
1386 8087c3c5 2020-01-15 tracey start_commit, GOT_OBJ_TYPE_COMMIT, repo);
1387 8087c3c5 2020-01-15 tracey if (error != NULL)
1388 8087c3c5 2020-01-15 tracey goto done;
1389 c6b62706 2020-01-15 tracey }
1390 c6b62706 2020-01-15 tracey
1391 c6b62706 2020-01-15 tracey if (error != NULL)
1392 c6b62706 2020-01-15 tracey goto done;
1393 6c6c85af 2020-01-15 tracey
1394 474370cb 2020-01-15 tracey error = got_repo_map_path(&in_repo_path, repo, gw_trans->repo_path, 1);
1395 474370cb 2020-01-15 tracey if (error != NULL)
1396 474370cb 2020-01-15 tracey goto done;
1397 474370cb 2020-01-15 tracey
1398 474370cb 2020-01-15 tracey if (in_repo_path) {
1399 474370cb 2020-01-15 tracey free(path);
1400 474370cb 2020-01-15 tracey path = in_repo_path;
1401 474370cb 2020-01-15 tracey }
1402 474370cb 2020-01-15 tracey
1403 c6b62706 2020-01-15 tracey error = got_ref_list(&refs, repo, NULL, got_ref_cmp_by_name, NULL);
1404 c6b62706 2020-01-15 tracey if (error)
1405 c6b62706 2020-01-15 tracey goto done;
1406 c6b62706 2020-01-15 tracey
1407 8087c3c5 2020-01-15 tracey error = got_commit_graph_open(&graph, id1, path, 0, repo);
1408 474370cb 2020-01-15 tracey if (error)
1409 474370cb 2020-01-15 tracey goto done;
1410 474370cb 2020-01-15 tracey
1411 8087c3c5 2020-01-15 tracey error = got_commit_graph_iter_start(graph, id1, repo, NULL, NULL);
1412 474370cb 2020-01-15 tracey if (error)
1413 474370cb 2020-01-15 tracey goto done;
1414 474370cb 2020-01-15 tracey
1415 474370cb 2020-01-15 tracey for (;;) {
1416 8087c3c5 2020-01-15 tracey error = got_commit_graph_iter_next(&id1, graph);
1417 474370cb 2020-01-15 tracey if (error) {
1418 474370cb 2020-01-15 tracey if (error->code == GOT_ERR_ITER_COMPLETED) {
1419 474370cb 2020-01-15 tracey error = NULL;
1420 474370cb 2020-01-15 tracey break;
1421 474370cb 2020-01-15 tracey }
1422 474370cb 2020-01-15 tracey if (error->code != GOT_ERR_ITER_NEED_MORE)
1423 474370cb 2020-01-15 tracey break;
1424 474370cb 2020-01-15 tracey error = got_commit_graph_fetch_commits(graph, 1, repo,
1425 474370cb 2020-01-15 tracey NULL, NULL);
1426 474370cb 2020-01-15 tracey if (error)
1427 474370cb 2020-01-15 tracey break;
1428 474370cb 2020-01-15 tracey else
1429 474370cb 2020-01-15 tracey continue;
1430 474370cb 2020-01-15 tracey }
1431 8087c3c5 2020-01-15 tracey if (id1 == NULL)
1432 474370cb 2020-01-15 tracey break;
1433 474370cb 2020-01-15 tracey
1434 8087c3c5 2020-01-15 tracey error = got_object_open_as_commit(&commit, repo, id1);
1435 474370cb 2020-01-15 tracey if (error)
1436 474370cb 2020-01-15 tracey break;
1437 474370cb 2020-01-15 tracey
1438 474370cb 2020-01-15 tracey if (search_pattern) {
1439 8087c3c5 2020-01-15 tracey error = match_logmsg(&have_match, id1, commit,
1440 474370cb 2020-01-15 tracey &regex);
1441 474370cb 2020-01-15 tracey if (error) {
1442 8087c3c5 2020-01-15 tracey got_object_commit_close(commit);
1443 474370cb 2020-01-15 tracey break;
1444 474370cb 2020-01-15 tracey }
1445 474370cb 2020-01-15 tracey if (have_match == 0) {
1446 8087c3c5 2020-01-15 tracey got_object_commit_close(commit);
1447 474370cb 2020-01-15 tracey continue;
1448 474370cb 2020-01-15 tracey }
1449 474370cb 2020-01-15 tracey }
1450 474370cb 2020-01-15 tracey
1451 474370cb 2020-01-15 tracey SIMPLEQ_FOREACH(re, &refs, entry) {
1452 8087c3c5 2020-01-15 tracey char *s;
1453 474370cb 2020-01-15 tracey const char *name;
1454 474370cb 2020-01-15 tracey struct got_tag_object *tag = NULL;
1455 474370cb 2020-01-15 tracey int cmp;
1456 474370cb 2020-01-15 tracey
1457 474370cb 2020-01-15 tracey name = got_ref_get_name(re->ref);
1458 474370cb 2020-01-15 tracey if (strcmp(name, GOT_REF_HEAD) == 0)
1459 474370cb 2020-01-15 tracey continue;
1460 474370cb 2020-01-15 tracey if (strncmp(name, "refs/", 5) == 0)
1461 474370cb 2020-01-15 tracey name += 5;
1462 474370cb 2020-01-15 tracey if (strncmp(name, "got/", 4) == 0)
1463 474370cb 2020-01-15 tracey continue;
1464 474370cb 2020-01-15 tracey if (strncmp(name, "heads/", 6) == 0)
1465 474370cb 2020-01-15 tracey name += 6;
1466 474370cb 2020-01-15 tracey if (strncmp(name, "remotes/", 8) == 0)
1467 474370cb 2020-01-15 tracey name += 8;
1468 474370cb 2020-01-15 tracey if (strncmp(name, "tags/", 5) == 0) {
1469 474370cb 2020-01-15 tracey error = got_object_open_as_tag(&tag, repo,
1470 474370cb 2020-01-15 tracey re->id);
1471 474370cb 2020-01-15 tracey if (error) {
1472 474370cb 2020-01-15 tracey if (error->code != GOT_ERR_OBJ_TYPE)
1473 474370cb 2020-01-15 tracey continue;
1474 474370cb 2020-01-15 tracey /*
1475 474370cb 2020-01-15 tracey * Ref points at something other
1476 474370cb 2020-01-15 tracey * than a tag.
1477 474370cb 2020-01-15 tracey */
1478 474370cb 2020-01-15 tracey error = NULL;
1479 474370cb 2020-01-15 tracey tag = NULL;
1480 474370cb 2020-01-15 tracey }
1481 474370cb 2020-01-15 tracey }
1482 474370cb 2020-01-15 tracey cmp = got_object_id_cmp(tag ?
1483 8087c3c5 2020-01-15 tracey got_object_tag_get_object_id(tag) : re->id, id1);
1484 474370cb 2020-01-15 tracey if (tag)
1485 474370cb 2020-01-15 tracey got_object_tag_close(tag);
1486 474370cb 2020-01-15 tracey if (cmp != 0)
1487 474370cb 2020-01-15 tracey continue;
1488 8087c3c5 2020-01-15 tracey s = refs_str;
1489 8087c3c5 2020-01-15 tracey if ((asprintf(&refs_str, "%s%s%s", s ? s : "",
1490 8087c3c5 2020-01-15 tracey s ? ", " : "", name)) == -1) {
1491 8087c3c5 2020-01-15 tracey error = got_error_from_errno("asprintf");
1492 8087c3c5 2020-01-15 tracey free(s);
1493 8087c3c5 2020-01-15 tracey goto done;
1494 8087c3c5 2020-01-15 tracey }
1495 8087c3c5 2020-01-15 tracey free(s);
1496 474370cb 2020-01-15 tracey }
1497 cdb914e5 2020-01-15 tracey
1498 8087c3c5 2020-01-15 tracey if (refs_str == NULL)
1499 8087c3c5 2020-01-15 tracey refs_str_disp = strdup("");
1500 8087c3c5 2020-01-15 tracey else {
1501 8087c3c5 2020-01-15 tracey if ((asprintf(&refs_str_disp, "(%s)",
1502 8087c3c5 2020-01-15 tracey refs_str)) == -1) {
1503 8087c3c5 2020-01-15 tracey error = got_error_from_errno("asprintf");
1504 8087c3c5 2020-01-15 tracey free(refs_str);
1505 8087c3c5 2020-01-15 tracey goto done;
1506 8087c3c5 2020-01-15 tracey }
1507 8087c3c5 2020-01-15 tracey }
1508 474370cb 2020-01-15 tracey
1509 8087c3c5 2020-01-15 tracey error = got_object_id_str(&id_str1, id1);
1510 474370cb 2020-01-15 tracey if (error)
1511 8087c3c5 2020-01-15 tracey goto done;
1512 474370cb 2020-01-15 tracey
1513 87f9ebf5 2020-01-15 tracey error = got_object_id_str(&treeid,
1514 87f9ebf5 2020-01-15 tracey got_object_commit_get_tree_id(commit));
1515 87f9ebf5 2020-01-15 tracey if (error)
1516 87f9ebf5 2020-01-15 tracey goto done;
1517 87f9ebf5 2020-01-15 tracey
1518 87f9ebf5 2020-01-15 tracey if (gw_trans->action == GW_COMMIT ||
1519 87f9ebf5 2020-01-15 tracey gw_trans->action == GW_COMMITDIFF) {
1520 8087c3c5 2020-01-15 tracey parent_id =
1521 8087c3c5 2020-01-15 tracey SIMPLEQ_FIRST(
1522 8087c3c5 2020-01-15 tracey got_object_commit_get_parent_ids(commit));
1523 8087c3c5 2020-01-15 tracey if (parent_id != NULL) {
1524 8087c3c5 2020-01-15 tracey id2 = got_object_id_dup(parent_id->id);
1525 8087c3c5 2020-01-15 tracey free (parent_id);
1526 8087c3c5 2020-01-15 tracey error = got_object_id_str(&id_str2, id2);
1527 8087c3c5 2020-01-15 tracey if (error)
1528 8087c3c5 2020-01-15 tracey goto done;
1529 87f9ebf5 2020-01-15 tracey free(id2);
1530 8087c3c5 2020-01-15 tracey } else
1531 8087c3c5 2020-01-15 tracey id_str2 = strdup("/dev/null");
1532 8087c3c5 2020-01-15 tracey }
1533 8087c3c5 2020-01-15 tracey
1534 474370cb 2020-01-15 tracey committer_time =
1535 8087c3c5 2020-01-15 tracey got_object_commit_get_committer_time(commit);
1536 4ceb8155 2020-01-15 tracey
1537 8087c3c5 2020-01-15 tracey if ((asprintf(&commit_parent, "%s", id_str2)) == -1) {
1538 8087c3c5 2020-01-15 tracey error = got_error_from_errno("asprintf");
1539 8087c3c5 2020-01-15 tracey goto done;
1540 8087c3c5 2020-01-15 tracey }
1541 8087c3c5 2020-01-15 tracey
1542 87f9ebf5 2020-01-15 tracey if ((asprintf(&commit_tree, "%s", treeid)) == -1) {
1543 87f9ebf5 2020-01-15 tracey error = got_error_from_errno("asprintf");
1544 87f9ebf5 2020-01-15 tracey goto done;
1545 87f9ebf5 2020-01-15 tracey }
1546 87f9ebf5 2020-01-15 tracey
1547 87f9ebf5 2020-01-15 tracey if ((asprintf(&commit_tree_disp, commit_tree_html,
1548 87f9ebf5 2020-01-15 tracey treeid)) == -1) {
1549 87f9ebf5 2020-01-15 tracey error = got_error_from_errno("asprintf");
1550 87f9ebf5 2020-01-15 tracey goto done;
1551 87f9ebf5 2020-01-15 tracey }
1552 87f9ebf5 2020-01-15 tracey
1553 8087c3c5 2020-01-15 tracey if ((asprintf(&commit_diff_disp, commit_diff_html, id_str2,
1554 8087c3c5 2020-01-15 tracey id_str1)) == -1) {
1555 8087c3c5 2020-01-15 tracey error = got_error_from_errno("asprintf");
1556 8087c3c5 2020-01-15 tracey goto done;
1557 8087c3c5 2020-01-15 tracey }
1558 8087c3c5 2020-01-15 tracey
1559 8087c3c5 2020-01-15 tracey if ((asprintf(&commit_commit, "%s", id_str1)) == -1) {
1560 8087c3c5 2020-01-15 tracey error = got_error_from_errno("asprintf");
1561 8087c3c5 2020-01-15 tracey goto done;
1562 8087c3c5 2020-01-15 tracey }
1563 8087c3c5 2020-01-15 tracey
1564 8087c3c5 2020-01-15 tracey if ((asprintf(&commit_commit_disp, commit_commit_html,
1565 8087c3c5 2020-01-15 tracey commit_commit, refs_str_disp)) == -1) {
1566 8087c3c5 2020-01-15 tracey error = got_error_from_errno("asprintf");
1567 8087c3c5 2020-01-15 tracey goto done;
1568 8087c3c5 2020-01-15 tracey }
1569 8087c3c5 2020-01-15 tracey
1570 8087c3c5 2020-01-15 tracey if ((asprintf(&commit_age_long, "%s",
1571 8087c3c5 2020-01-15 tracey gw_get_time_str(committer_time, TM_LONG))) == -1) {
1572 8087c3c5 2020-01-15 tracey error = got_error_from_errno("asprintf");
1573 8087c3c5 2020-01-15 tracey goto done;
1574 8087c3c5 2020-01-15 tracey }
1575 8087c3c5 2020-01-15 tracey
1576 8087c3c5 2020-01-15 tracey if ((asprintf(&commit_age_long_disp, commit_age_html,
1577 8087c3c5 2020-01-15 tracey commit_age_long)) == -1) {
1578 8087c3c5 2020-01-15 tracey error = got_error_from_errno("asprintf");
1579 8087c3c5 2020-01-15 tracey goto done;
1580 8087c3c5 2020-01-15 tracey }
1581 8087c3c5 2020-01-15 tracey
1582 8087c3c5 2020-01-15 tracey if ((asprintf(&commit_age_diff, "%s",
1583 8087c3c5 2020-01-15 tracey gw_get_time_str(committer_time, TM_DIFF))) == -1) {
1584 8087c3c5 2020-01-15 tracey error = got_error_from_errno("asprintf");
1585 8087c3c5 2020-01-15 tracey goto done;
1586 8087c3c5 2020-01-15 tracey }
1587 8087c3c5 2020-01-15 tracey
1588 8087c3c5 2020-01-15 tracey if ((asprintf(&commit_age_diff_disp, commit_age_html,
1589 8087c3c5 2020-01-15 tracey commit_age_diff)) == -1) {
1590 8087c3c5 2020-01-15 tracey error = got_error_from_errno("asprintf");
1591 8087c3c5 2020-01-15 tracey goto done;
1592 8087c3c5 2020-01-15 tracey }
1593 8087c3c5 2020-01-15 tracey
1594 8087c3c5 2020-01-15 tracey if ((asprintf(&commit_author, "%s",
1595 8087c3c5 2020-01-15 tracey got_object_commit_get_author(commit))) == -1) {
1596 8087c3c5 2020-01-15 tracey error = got_error_from_errno("asprintf");
1597 8087c3c5 2020-01-15 tracey goto done;
1598 8087c3c5 2020-01-15 tracey }
1599 8087c3c5 2020-01-15 tracey
1600 8087c3c5 2020-01-15 tracey if ((asprintf(&commit_author_disp, commit_author_html,
1601 8087c3c5 2020-01-15 tracey gw_html_escape(commit_author))) == -1) {
1602 8087c3c5 2020-01-15 tracey error = got_error_from_errno("asprintf");
1603 8087c3c5 2020-01-15 tracey goto done;
1604 8087c3c5 2020-01-15 tracey }
1605 8087c3c5 2020-01-15 tracey
1606 8087c3c5 2020-01-15 tracey if ((asprintf(&commit_committer, "%s",
1607 8087c3c5 2020-01-15 tracey got_object_commit_get_committer(commit))) == -1) {
1608 8087c3c5 2020-01-15 tracey error = got_error_from_errno("asprintf");
1609 8087c3c5 2020-01-15 tracey goto done;
1610 8087c3c5 2020-01-15 tracey }
1611 8087c3c5 2020-01-15 tracey
1612 8087c3c5 2020-01-15 tracey if ((asprintf(&commit_committer_disp, commit_committer_html,
1613 8087c3c5 2020-01-15 tracey gw_html_escape(commit_committer))) == -1) {
1614 8087c3c5 2020-01-15 tracey error = got_error_from_errno("asprintf");
1615 8087c3c5 2020-01-15 tracey goto done;
1616 8087c3c5 2020-01-15 tracey }
1617 8087c3c5 2020-01-15 tracey
1618 8087c3c5 2020-01-15 tracey if (strcmp(commit_author, commit_committer) == 0) {
1619 8087c3c5 2020-01-15 tracey free(commit_committer_disp);
1620 8087c3c5 2020-01-15 tracey commit_committer_disp = strdup("");
1621 8087c3c5 2020-01-15 tracey }
1622 8087c3c5 2020-01-15 tracey
1623 8087c3c5 2020-01-15 tracey error = got_object_commit_get_logmsg(&commit_log0, commit);
1624 8087c3c5 2020-01-15 tracey if (error)
1625 8087c3c5 2020-01-15 tracey goto done;
1626 87f9ebf5 2020-01-15 tracey
1627 87f9ebf5 2020-01-15 tracey commit_log = commit_log0;
1628 87f9ebf5 2020-01-15 tracey while (*commit_log == '\n')
1629 87f9ebf5 2020-01-15 tracey commit_log++;
1630 8087c3c5 2020-01-15 tracey
1631 8087c3c5 2020-01-15 tracey switch(log_type) {
1632 8087c3c5 2020-01-15 tracey case (LOGBRIEF):
1633 8087c3c5 2020-01-15 tracey newline = strchr(commit_log, '\n');
1634 8087c3c5 2020-01-15 tracey if (newline)
1635 8087c3c5 2020-01-15 tracey *newline = '\0';
1636 8087c3c5 2020-01-15 tracey
1637 8087c3c5 2020-01-15 tracey if ((asprintf(&logbriefs_navs_html, logbriefs_navs,
1638 8087c3c5 2020-01-15 tracey gw_trans->repo_name, id_str1, gw_trans->repo_name,
1639 8087c3c5 2020-01-15 tracey id_str1, gw_trans->repo_name, id_str1,
1640 8087c3c5 2020-01-15 tracey gw_trans->repo_name, id_str1)) == -1) {
1641 8087c3c5 2020-01-15 tracey error = got_error_from_errno("asprintf");
1642 8087c3c5 2020-01-15 tracey goto done;
1643 4ceb8155 2020-01-15 tracey }
1644 8087c3c5 2020-01-15 tracey
1645 8087c3c5 2020-01-15 tracey if ((asprintf(&commit_row, logbriefs_row,
1646 8087c3c5 2020-01-15 tracey commit_age_diff, commit_author, commit_log,
1647 8087c3c5 2020-01-15 tracey logbriefs_navs_html)) == -1) {
1648 8087c3c5 2020-01-15 tracey error = got_error_from_errno("asprintf");
1649 8087c3c5 2020-01-15 tracey goto done;
1650 8087c3c5 2020-01-15 tracey }
1651 8087c3c5 2020-01-15 tracey
1652 8087c3c5 2020-01-15 tracey free(logbriefs_navs_html);
1653 8087c3c5 2020-01-15 tracey logbriefs_navs_html = NULL;
1654 8087c3c5 2020-01-15 tracey break;
1655 8087c3c5 2020-01-15 tracey case (LOGFULL):
1656 8087c3c5 2020-01-15 tracey if ((asprintf(&logbriefs_navs_html, logbriefs_navs,
1657 8087c3c5 2020-01-15 tracey gw_trans->repo_name, id_str1, gw_trans->repo_name,
1658 8087c3c5 2020-01-15 tracey id_str1, gw_trans->repo_name, id_str1,
1659 8087c3c5 2020-01-15 tracey gw_trans->repo_name, id_str1)) == -1) {
1660 8087c3c5 2020-01-15 tracey error = got_error_from_errno("asprintf");
1661 8087c3c5 2020-01-15 tracey goto done;
1662 8087c3c5 2020-01-15 tracey }
1663 8087c3c5 2020-01-15 tracey
1664 8087c3c5 2020-01-15 tracey if ((asprintf(&commit_row, logs_row, commit_commit_disp,
1665 8087c3c5 2020-01-15 tracey commit_author_disp, commit_committer_disp,
1666 8087c3c5 2020-01-15 tracey commit_age_long_disp, gw_html_escape(commit_log),
1667 8087c3c5 2020-01-15 tracey logbriefs_navs_html)) == -1) {
1668 8087c3c5 2020-01-15 tracey error = got_error_from_errno("asprintf");
1669 8087c3c5 2020-01-15 tracey goto done;
1670 8087c3c5 2020-01-15 tracey }
1671 8087c3c5 2020-01-15 tracey
1672 8087c3c5 2020-01-15 tracey free(logbriefs_navs_html);
1673 8087c3c5 2020-01-15 tracey logbriefs_navs_html = NULL;
1674 8087c3c5 2020-01-15 tracey break;
1675 b772de24 2020-01-15 tracey case (LOGTAG):
1676 077f6c5a 2020-01-15 tracey log_tag_html = strdup("tag log here");
1677 b772de24 2020-01-15 tracey
1678 077f6c5a 2020-01-15 tracey if ((asprintf(&commit_row, log_tag_row,
1679 077f6c5a 2020-01-15 tracey gw_html_escape(commit_log), log_tag_html)) == -1) {
1680 b772de24 2020-01-15 tracey error = got_error_from_errno("asprintf");
1681 b772de24 2020-01-15 tracey goto done;
1682 b772de24 2020-01-15 tracey }
1683 b772de24 2020-01-15 tracey
1684 077f6c5a 2020-01-15 tracey free(log_tag_html);
1685 b772de24 2020-01-15 tracey break;
1686 8087c3c5 2020-01-15 tracey case (LOGTREE):
1687 8087c3c5 2020-01-15 tracey log_tree_html = strdup("log tree here");
1688 8087c3c5 2020-01-15 tracey
1689 87f9ebf5 2020-01-15 tracey if ((asprintf(&commit_row, log_tree_row,
1690 87f9ebf5 2020-01-15 tracey gw_html_escape(commit_log), log_tree_html)) == -1) {
1691 8087c3c5 2020-01-15 tracey error = got_error_from_errno("asprintf");
1692 8087c3c5 2020-01-15 tracey goto done;
1693 8087c3c5 2020-01-15 tracey }
1694 8087c3c5 2020-01-15 tracey
1695 8087c3c5 2020-01-15 tracey free(log_tree_html);
1696 8087c3c5 2020-01-15 tracey break;
1697 8087c3c5 2020-01-15 tracey case (LOGCOMMIT):
1698 8087c3c5 2020-01-15 tracey if ((asprintf(&commit_log_disp, commit_log_html,
1699 8087c3c5 2020-01-15 tracey gw_html_escape(commit_log))) == -1) {
1700 8087c3c5 2020-01-15 tracey error = got_error_from_errno("asprintf");
1701 8087c3c5 2020-01-15 tracey goto done;
1702 8087c3c5 2020-01-15 tracey }
1703 8087c3c5 2020-01-15 tracey
1704 8087c3c5 2020-01-15 tracey log_commit_html = strdup("commit here");
1705 8087c3c5 2020-01-15 tracey
1706 8087c3c5 2020-01-15 tracey if ((asprintf(&commit_row, log_commit_row,
1707 8087c3c5 2020-01-15 tracey commit_diff_disp, commit_commit_disp,
1708 87f9ebf5 2020-01-15 tracey commit_tree_disp, commit_author_disp,
1709 87f9ebf5 2020-01-15 tracey commit_committer_disp, commit_age_long_disp,
1710 87f9ebf5 2020-01-15 tracey commit_log_disp, log_commit_html)) == -1) {
1711 8087c3c5 2020-01-15 tracey error = got_error_from_errno("asprintf");
1712 8087c3c5 2020-01-15 tracey goto done;
1713 8087c3c5 2020-01-15 tracey }
1714 8087c3c5 2020-01-15 tracey free(commit_log_disp);
1715 8087c3c5 2020-01-15 tracey free(log_commit_html);
1716 8087c3c5 2020-01-15 tracey
1717 8087c3c5 2020-01-15 tracey break;
1718 87f9ebf5 2020-01-15 tracey case (LOGDIFF):
1719 87f9ebf5 2020-01-15 tracey if ((asprintf(&commit_log_disp, commit_log_html,
1720 87f9ebf5 2020-01-15 tracey gw_html_escape(commit_log))) == -1) {
1721 87f9ebf5 2020-01-15 tracey error = got_error_from_errno("asprintf");
1722 87f9ebf5 2020-01-15 tracey goto done;
1723 87f9ebf5 2020-01-15 tracey }
1724 87f9ebf5 2020-01-15 tracey
1725 87f9ebf5 2020-01-15 tracey log_diff_html = strdup("diff here");
1726 87f9ebf5 2020-01-15 tracey
1727 87f9ebf5 2020-01-15 tracey if ((asprintf(&commit_row, log_diff_row,
1728 87f9ebf5 2020-01-15 tracey commit_diff_disp, commit_commit_disp,
1729 87f9ebf5 2020-01-15 tracey commit_tree_disp, commit_author_disp,
1730 87f9ebf5 2020-01-15 tracey commit_committer_disp, commit_age_long_disp,
1731 87f9ebf5 2020-01-15 tracey commit_log_disp, log_diff_html)) == -1) {
1732 87f9ebf5 2020-01-15 tracey error = got_error_from_errno("asprintf");
1733 87f9ebf5 2020-01-15 tracey goto done;
1734 87f9ebf5 2020-01-15 tracey }
1735 87f9ebf5 2020-01-15 tracey free(commit_log_disp);
1736 87f9ebf5 2020-01-15 tracey free(log_diff_html);
1737 87f9ebf5 2020-01-15 tracey
1738 87f9ebf5 2020-01-15 tracey break;
1739 8087c3c5 2020-01-15 tracey default:
1740 8087c3c5 2020-01-15 tracey return NULL;
1741 9d84e7dd 2020-01-15 tracey }
1742 474370cb 2020-01-15 tracey
1743 6c6c85af 2020-01-15 tracey error = buf_puts(&newsize, diffbuf, commit_row);
1744 8087c3c5 2020-01-15 tracey
1745 8087c3c5 2020-01-15 tracey free(commit_parent);
1746 8087c3c5 2020-01-15 tracey free(commit_diff_disp);
1747 87f9ebf5 2020-01-15 tracey free(commit_tree_disp);
1748 8087c3c5 2020-01-15 tracey free(commit_age_diff);
1749 8087c3c5 2020-01-15 tracey free(commit_age_diff_disp);
1750 8087c3c5 2020-01-15 tracey free(commit_age_long);
1751 8087c3c5 2020-01-15 tracey free(commit_age_long_disp);
1752 474370cb 2020-01-15 tracey free(commit_author);
1753 8087c3c5 2020-01-15 tracey free(commit_author_disp);
1754 8087c3c5 2020-01-15 tracey free(commit_committer);
1755 8087c3c5 2020-01-15 tracey free(commit_committer_disp);
1756 9d84e7dd 2020-01-15 tracey free(commit_log0);
1757 474370cb 2020-01-15 tracey free(commit_row);
1758 8087c3c5 2020-01-15 tracey free(refs_str_disp);
1759 8087c3c5 2020-01-15 tracey free(refs_str);
1760 8087c3c5 2020-01-15 tracey refs_str = NULL;
1761 8087c3c5 2020-01-15 tracey free(id_str1);
1762 8087c3c5 2020-01-15 tracey id_str1 = NULL;
1763 8087c3c5 2020-01-15 tracey free(id_str2);
1764 8087c3c5 2020-01-15 tracey id_str2 = NULL;
1765 474370cb 2020-01-15 tracey
1766 474370cb 2020-01-15 tracey if (error || (limit && --limit == 0))
1767 474370cb 2020-01-15 tracey break;
1768 474370cb 2020-01-15 tracey }
1769 c6b62706 2020-01-15 tracey
1770 8087c3c5 2020-01-15 tracey if (error)
1771 8087c3c5 2020-01-15 tracey goto done;
1772 474370cb 2020-01-15 tracey
1773 6c6c85af 2020-01-15 tracey if (buf_len(diffbuf) > 0) {
1774 6c6c85af 2020-01-15 tracey error = buf_putc(diffbuf, '\0');
1775 6c6c85af 2020-01-15 tracey logs = strdup(buf_get(diffbuf));
1776 6c6c85af 2020-01-15 tracey }
1777 8087c3c5 2020-01-15 tracey done:
1778 8087c3c5 2020-01-15 tracey buf_free(diffbuf);
1779 8087c3c5 2020-01-15 tracey if (commit != NULL)
1780 8087c3c5 2020-01-15 tracey got_object_commit_close(commit);
1781 8087c3c5 2020-01-15 tracey if (search_pattern)
1782 8087c3c5 2020-01-15 tracey regfree(&regex);
1783 8087c3c5 2020-01-15 tracey if (graph)
1784 8087c3c5 2020-01-15 tracey got_commit_graph_close(graph);
1785 474370cb 2020-01-15 tracey if (repo) {
1786 474370cb 2020-01-15 tracey error = got_repo_close(repo);
1787 474370cb 2020-01-15 tracey if (error != NULL)
1788 474370cb 2020-01-15 tracey return NULL;
1789 474370cb 2020-01-15 tracey }
1790 8087c3c5 2020-01-15 tracey if (error) {
1791 8087c3c5 2020-01-15 tracey khttp_puts(gw_trans->gw_req, "Error: ");
1792 8087c3c5 2020-01-15 tracey khttp_puts(gw_trans->gw_req, error->msg);
1793 8087c3c5 2020-01-15 tracey return NULL;
1794 8087c3c5 2020-01-15 tracey } else
1795 8087c3c5 2020-01-15 tracey return logs;
1796 2c251c14 2020-01-15 tracey }
1797 2c251c14 2020-01-15 tracey
1798 2c251c14 2020-01-15 tracey static char *
1799 87f9ebf5 2020-01-15 tracey gw_get_repo_tags(struct trans *gw_trans, int limit, int tag_type)
1800 8d4d2453 2020-01-15 tracey {
1801 87f9ebf5 2020-01-15 tracey const struct got_error *error = NULL;
1802 87f9ebf5 2020-01-15 tracey struct got_repository *repo = NULL;
1803 87f9ebf5 2020-01-15 tracey struct got_reflist_head refs;
1804 87f9ebf5 2020-01-15 tracey struct got_reflist_entry *re;
1805 87f9ebf5 2020-01-15 tracey char *tags = NULL, *tag_row = NULL, *tags_navs_disp = NULL,
1806 87f9ebf5 2020-01-15 tracey *age = NULL;
1807 87f9ebf5 2020-01-15 tracey char *newline;
1808 87f9ebf5 2020-01-15 tracey struct buf *diffbuf = NULL;
1809 87f9ebf5 2020-01-15 tracey size_t newsize;
1810 8d4d2453 2020-01-15 tracey
1811 6c6c85af 2020-01-15 tracey error = buf_alloc(&diffbuf, 0);
1812 87f9ebf5 2020-01-15 tracey if (error != NULL)
1813 6c6c85af 2020-01-15 tracey return NULL;
1814 6c6c85af 2020-01-15 tracey SIMPLEQ_INIT(&refs);
1815 87f9ebf5 2020-01-15 tracey
1816 87f9ebf5 2020-01-15 tracey error = got_repo_open(&repo, gw_trans->repo_path, NULL);
1817 87f9ebf5 2020-01-15 tracey if (error != NULL)
1818 87f9ebf5 2020-01-15 tracey goto done;
1819 87f9ebf5 2020-01-15 tracey
1820 87f9ebf5 2020-01-15 tracey error = got_ref_list(&refs, repo, "refs/tags", cmp_tags, repo);
1821 87f9ebf5 2020-01-15 tracey if (error)
1822 87f9ebf5 2020-01-15 tracey goto done;
1823 87f9ebf5 2020-01-15 tracey
1824 87f9ebf5 2020-01-15 tracey SIMPLEQ_FOREACH(re, &refs, entry) {
1825 87f9ebf5 2020-01-15 tracey const char *refname;
1826 87f9ebf5 2020-01-15 tracey char *refstr, *tag_log0, *tag_log, *id_str;
1827 87f9ebf5 2020-01-15 tracey time_t tagger_time;
1828 87f9ebf5 2020-01-15 tracey struct got_object_id *id;
1829 87f9ebf5 2020-01-15 tracey struct got_tag_object *tag;
1830 87f9ebf5 2020-01-15 tracey
1831 87f9ebf5 2020-01-15 tracey refname = got_ref_get_name(re->ref);
1832 87f9ebf5 2020-01-15 tracey if (strncmp(refname, "refs/tags/", 10) != 0)
1833 87f9ebf5 2020-01-15 tracey continue;
1834 87f9ebf5 2020-01-15 tracey refname += 10;
1835 87f9ebf5 2020-01-15 tracey refstr = got_ref_to_str(re->ref);
1836 87f9ebf5 2020-01-15 tracey if (refstr == NULL) {
1837 87f9ebf5 2020-01-15 tracey error = got_error_from_errno("got_ref_to_str");
1838 87f9ebf5 2020-01-15 tracey goto done;
1839 87f9ebf5 2020-01-15 tracey }
1840 87f9ebf5 2020-01-15 tracey
1841 87f9ebf5 2020-01-15 tracey error = got_ref_resolve(&id, repo, re->ref);
1842 87f9ebf5 2020-01-15 tracey if (error)
1843 87f9ebf5 2020-01-15 tracey goto done;
1844 87f9ebf5 2020-01-15 tracey error = got_object_open_as_tag(&tag, repo, id);
1845 87f9ebf5 2020-01-15 tracey free(id);
1846 87f9ebf5 2020-01-15 tracey if (error)
1847 87f9ebf5 2020-01-15 tracey goto done;
1848 87f9ebf5 2020-01-15 tracey
1849 87f9ebf5 2020-01-15 tracey tagger_time = got_object_tag_get_tagger_time(tag);
1850 87f9ebf5 2020-01-15 tracey
1851 87f9ebf5 2020-01-15 tracey error = got_object_id_str(&id_str,
1852 87f9ebf5 2020-01-15 tracey got_object_tag_get_object_id(tag));
1853 87f9ebf5 2020-01-15 tracey if (error)
1854 87f9ebf5 2020-01-15 tracey goto done;
1855 87f9ebf5 2020-01-15 tracey
1856 87f9ebf5 2020-01-15 tracey tag_log0 = strdup(got_object_tag_get_message(tag));
1857 87f9ebf5 2020-01-15 tracey
1858 87f9ebf5 2020-01-15 tracey if (tag_log0 == NULL) {
1859 87f9ebf5 2020-01-15 tracey error = got_error_from_errno("strdup");
1860 87f9ebf5 2020-01-15 tracey goto done;
1861 87f9ebf5 2020-01-15 tracey }
1862 87f9ebf5 2020-01-15 tracey
1863 87f9ebf5 2020-01-15 tracey tag_log = tag_log0;
1864 87f9ebf5 2020-01-15 tracey while (*tag_log == '\n')
1865 87f9ebf5 2020-01-15 tracey tag_log++;
1866 87f9ebf5 2020-01-15 tracey
1867 87f9ebf5 2020-01-15 tracey switch (tag_type) {
1868 87f9ebf5 2020-01-15 tracey case TAGBRIEF:
1869 87f9ebf5 2020-01-15 tracey newline = strchr(tag_log, '\n');
1870 87f9ebf5 2020-01-15 tracey if (newline)
1871 87f9ebf5 2020-01-15 tracey *newline = '\0';
1872 87f9ebf5 2020-01-15 tracey
1873 87f9ebf5 2020-01-15 tracey if ((asprintf(&age, "%s", gw_get_time_str(tagger_time,
1874 87f9ebf5 2020-01-15 tracey TM_DIFF))) == -1) {
1875 87f9ebf5 2020-01-15 tracey error = got_error_from_errno("asprintf");
1876 87f9ebf5 2020-01-15 tracey goto done;
1877 87f9ebf5 2020-01-15 tracey }
1878 87f9ebf5 2020-01-15 tracey
1879 87f9ebf5 2020-01-15 tracey if ((asprintf(&tags_navs_disp, tags_navs,
1880 87f9ebf5 2020-01-15 tracey gw_trans->repo_name, id_str, gw_trans->repo_name,
1881 87f9ebf5 2020-01-15 tracey id_str, gw_trans->repo_name, id_str,
1882 87f9ebf5 2020-01-15 tracey gw_trans->repo_name, id_str)) == -1) {
1883 87f9ebf5 2020-01-15 tracey error = got_error_from_errno("asprintf");
1884 87f9ebf5 2020-01-15 tracey goto done;
1885 87f9ebf5 2020-01-15 tracey }
1886 87f9ebf5 2020-01-15 tracey
1887 87f9ebf5 2020-01-15 tracey if ((asprintf(&tag_row, tags_row, age, refname, tag_log,
1888 87f9ebf5 2020-01-15 tracey tags_navs_disp)) == -1) {
1889 87f9ebf5 2020-01-15 tracey error = got_error_from_errno("asprintf");
1890 87f9ebf5 2020-01-15 tracey goto done;
1891 87f9ebf5 2020-01-15 tracey }
1892 87f9ebf5 2020-01-15 tracey
1893 87f9ebf5 2020-01-15 tracey free(tags_navs_disp);
1894 87f9ebf5 2020-01-15 tracey break;
1895 87f9ebf5 2020-01-15 tracey case TAGFULL:
1896 87f9ebf5 2020-01-15 tracey break;
1897 87f9ebf5 2020-01-15 tracey default:
1898 87f9ebf5 2020-01-15 tracey break;
1899 87f9ebf5 2020-01-15 tracey }
1900 87f9ebf5 2020-01-15 tracey
1901 6c6c85af 2020-01-15 tracey got_object_tag_close(tag);
1902 87f9ebf5 2020-01-15 tracey
1903 6c6c85af 2020-01-15 tracey error = buf_puts(&newsize, diffbuf, tag_row);
1904 87f9ebf5 2020-01-15 tracey
1905 6c6c85af 2020-01-15 tracey free(id_str);
1906 6c6c85af 2020-01-15 tracey free(refstr);
1907 6c6c85af 2020-01-15 tracey free(age);
1908 87f9ebf5 2020-01-15 tracey free(tag_log0);
1909 87f9ebf5 2020-01-15 tracey free(tag_row);
1910 87f9ebf5 2020-01-15 tracey
1911 87f9ebf5 2020-01-15 tracey if (error || (limit && --limit == 0))
1912 87f9ebf5 2020-01-15 tracey break;
1913 87f9ebf5 2020-01-15 tracey }
1914 6c6c85af 2020-01-15 tracey
1915 6c6c85af 2020-01-15 tracey if (buf_len(diffbuf) > 0) {
1916 6c6c85af 2020-01-15 tracey error = buf_putc(diffbuf, '\0');
1917 6c6c85af 2020-01-15 tracey tags = strdup(buf_get(diffbuf));
1918 6c6c85af 2020-01-15 tracey }
1919 87f9ebf5 2020-01-15 tracey done:
1920 87f9ebf5 2020-01-15 tracey buf_free(diffbuf);
1921 87f9ebf5 2020-01-15 tracey got_ref_list_free(&refs);
1922 87f9ebf5 2020-01-15 tracey if (repo)
1923 87f9ebf5 2020-01-15 tracey got_repo_close(repo);
1924 87f9ebf5 2020-01-15 tracey if (error)
1925 87f9ebf5 2020-01-15 tracey return NULL;
1926 87f9ebf5 2020-01-15 tracey else
1927 87f9ebf5 2020-01-15 tracey return tags;
1928 8d4d2453 2020-01-15 tracey }
1929 8d4d2453 2020-01-15 tracey
1930 8d4d2453 2020-01-15 tracey static char *
1931 8d4d2453 2020-01-15 tracey gw_get_repo_heads(struct trans *gw_trans)
1932 8d4d2453 2020-01-15 tracey {
1933 87f9ebf5 2020-01-15 tracey const struct got_error *error = NULL;
1934 87f9ebf5 2020-01-15 tracey struct got_repository *repo = NULL;
1935 87f9ebf5 2020-01-15 tracey struct got_reflist_head refs;
1936 87f9ebf5 2020-01-15 tracey struct got_reflist_entry *re;
1937 87f9ebf5 2020-01-15 tracey char *heads, *head_row = NULL, *head_navs_disp = NULL, *age = NULL;
1938 87f9ebf5 2020-01-15 tracey struct buf *diffbuf = NULL;
1939 87f9ebf5 2020-01-15 tracey size_t newsize;
1940 8d4d2453 2020-01-15 tracey
1941 6c6c85af 2020-01-15 tracey error = buf_alloc(&diffbuf, 0);
1942 87f9ebf5 2020-01-15 tracey if (error != NULL)
1943 6c6c85af 2020-01-15 tracey return NULL;
1944 87f9ebf5 2020-01-15 tracey
1945 87f9ebf5 2020-01-15 tracey error = got_repo_open(&repo, gw_trans->repo_path, NULL);
1946 87f9ebf5 2020-01-15 tracey if (error != NULL)
1947 87f9ebf5 2020-01-15 tracey goto done;
1948 87f9ebf5 2020-01-15 tracey
1949 87f9ebf5 2020-01-15 tracey SIMPLEQ_INIT(&refs);
1950 87f9ebf5 2020-01-15 tracey error = got_ref_list(&refs, repo, "refs/heads", got_ref_cmp_by_name,
1951 87f9ebf5 2020-01-15 tracey NULL);
1952 87f9ebf5 2020-01-15 tracey if (error)
1953 87f9ebf5 2020-01-15 tracey goto done;
1954 87f9ebf5 2020-01-15 tracey
1955 87f9ebf5 2020-01-15 tracey SIMPLEQ_FOREACH(re, &refs, entry) {
1956 87f9ebf5 2020-01-15 tracey char *refname;
1957 87f9ebf5 2020-01-15 tracey
1958 87f9ebf5 2020-01-15 tracey refname = strdup(got_ref_get_name(re->ref));
1959 87f9ebf5 2020-01-15 tracey if (refname == NULL) {
1960 87f9ebf5 2020-01-15 tracey error = got_error_from_errno("got_ref_to_str");
1961 87f9ebf5 2020-01-15 tracey goto done;
1962 87f9ebf5 2020-01-15 tracey }
1963 87f9ebf5 2020-01-15 tracey
1964 87f9ebf5 2020-01-15 tracey if (strncmp(refname, "refs/heads/", 11) != 0) {
1965 87f9ebf5 2020-01-15 tracey free(refname);
1966 87f9ebf5 2020-01-15 tracey continue;
1967 87f9ebf5 2020-01-15 tracey }
1968 87f9ebf5 2020-01-15 tracey
1969 87f9ebf5 2020-01-15 tracey age = gw_get_repo_age(gw_trans, gw_trans->gw_dir->path, refname,
1970 87f9ebf5 2020-01-15 tracey TM_DIFF);
1971 87f9ebf5 2020-01-15 tracey
1972 87f9ebf5 2020-01-15 tracey if ((asprintf(&head_navs_disp, heads_navs, gw_trans->repo_name,
1973 87f9ebf5 2020-01-15 tracey refname, gw_trans->repo_name, refname,
1974 87f9ebf5 2020-01-15 tracey gw_trans->repo_name, refname, gw_trans->repo_name,
1975 87f9ebf5 2020-01-15 tracey refname)) == -1) {
1976 87f9ebf5 2020-01-15 tracey error = got_error_from_errno("asprintf");
1977 87f9ebf5 2020-01-15 tracey goto done;
1978 87f9ebf5 2020-01-15 tracey }
1979 87f9ebf5 2020-01-15 tracey
1980 87f9ebf5 2020-01-15 tracey if (strncmp(refname, "refs/heads/", 11) == 0)
1981 87f9ebf5 2020-01-15 tracey refname += 11;
1982 87f9ebf5 2020-01-15 tracey
1983 87f9ebf5 2020-01-15 tracey if ((asprintf(&head_row, heads_row, age, refname,
1984 87f9ebf5 2020-01-15 tracey head_navs_disp)) == -1) {
1985 87f9ebf5 2020-01-15 tracey error = got_error_from_errno("asprintf");
1986 87f9ebf5 2020-01-15 tracey goto done;
1987 87f9ebf5 2020-01-15 tracey }
1988 87f9ebf5 2020-01-15 tracey
1989 6c6c85af 2020-01-15 tracey error = buf_puts(&newsize, diffbuf, head_row);
1990 87f9ebf5 2020-01-15 tracey
1991 87f9ebf5 2020-01-15 tracey free(head_navs_disp);
1992 87f9ebf5 2020-01-15 tracey free(head_row);
1993 87f9ebf5 2020-01-15 tracey }
1994 87f9ebf5 2020-01-15 tracey
1995 6c6c85af 2020-01-15 tracey if (buf_len(diffbuf) > 0) {
1996 6c6c85af 2020-01-15 tracey error = buf_putc(diffbuf, '\0');
1997 6c6c85af 2020-01-15 tracey heads = strdup(buf_get(diffbuf));
1998 6c6c85af 2020-01-15 tracey }
1999 87f9ebf5 2020-01-15 tracey done:
2000 87f9ebf5 2020-01-15 tracey buf_free(diffbuf);
2001 87f9ebf5 2020-01-15 tracey got_ref_list_free(&refs);
2002 87f9ebf5 2020-01-15 tracey if (repo)
2003 87f9ebf5 2020-01-15 tracey got_repo_close(repo);
2004 87f9ebf5 2020-01-15 tracey if (error)
2005 87f9ebf5 2020-01-15 tracey return NULL;
2006 87f9ebf5 2020-01-15 tracey else
2007 87f9ebf5 2020-01-15 tracey return heads;
2008 8d4d2453 2020-01-15 tracey }
2009 8d4d2453 2020-01-15 tracey
2010 8d4d2453 2020-01-15 tracey static char *
2011 2c251c14 2020-01-15 tracey gw_get_got_link(struct trans *gw_trans)
2012 2c251c14 2020-01-15 tracey {
2013 2c251c14 2020-01-15 tracey char *link;
2014 2c251c14 2020-01-15 tracey
2015 2c251c14 2020-01-15 tracey if ((asprintf(&link, got_link, gw_trans->gw_conf->got_logo_url,
2016 2c251c14 2020-01-15 tracey gw_trans->gw_conf->got_logo)) == -1)
2017 2c251c14 2020-01-15 tracey return NULL;
2018 2c251c14 2020-01-15 tracey
2019 2c251c14 2020-01-15 tracey return link;
2020 2c251c14 2020-01-15 tracey }
2021 2c251c14 2020-01-15 tracey
2022 2c251c14 2020-01-15 tracey static char *
2023 2c251c14 2020-01-15 tracey gw_get_site_link(struct trans *gw_trans)
2024 2c251c14 2020-01-15 tracey {
2025 2c251c14 2020-01-15 tracey char *link, *repo = "", *action = "";
2026 2c251c14 2020-01-15 tracey
2027 2c251c14 2020-01-15 tracey if (gw_trans->repo_name != NULL)
2028 2c251c14 2020-01-15 tracey if ((asprintf(&repo, " / <a href='?path=%s&action=summary'>%s" \
2029 2c251c14 2020-01-15 tracey "</a>", gw_trans->repo_name, gw_trans->repo_name)) == -1)
2030 2c251c14 2020-01-15 tracey return NULL;
2031 2c251c14 2020-01-15 tracey
2032 2c251c14 2020-01-15 tracey if (gw_trans->action_name != NULL)
2033 2c251c14 2020-01-15 tracey if ((asprintf(&action, " / %s", gw_trans->action_name)) == -1)
2034 2c251c14 2020-01-15 tracey return NULL;
2035 2c251c14 2020-01-15 tracey
2036 2c251c14 2020-01-15 tracey if ((asprintf(&link, site_link, GOTWEB,
2037 2c251c14 2020-01-15 tracey gw_trans->gw_conf->got_site_link, repo, action)) == -1)
2038 2c251c14 2020-01-15 tracey return NULL;
2039 2c251c14 2020-01-15 tracey
2040 2c251c14 2020-01-15 tracey return link;
2041 2c251c14 2020-01-15 tracey }
2042 2c251c14 2020-01-15 tracey
2043 2c251c14 2020-01-15 tracey static char *
2044 2c251c14 2020-01-15 tracey gw_html_escape(const char *html)
2045 2c251c14 2020-01-15 tracey {
2046 2c251c14 2020-01-15 tracey char *escaped_str = NULL, *buf;
2047 2c251c14 2020-01-15 tracey char c[1];
2048 6c6c85af 2020-01-15 tracey size_t sz, i, buff_sz = 2048;
2049 2c251c14 2020-01-15 tracey
2050 6c6c85af 2020-01-15 tracey if ((buf = calloc(buff_sz, sizeof(char *))) == NULL)
2051 2c251c14 2020-01-15 tracey return NULL;
2052 2c251c14 2020-01-15 tracey
2053 2c251c14 2020-01-15 tracey if (html == NULL)
2054 2c251c14 2020-01-15 tracey return NULL;
2055 2c251c14 2020-01-15 tracey else
2056 2c251c14 2020-01-15 tracey if ((sz = strlen(html)) == 0)
2057 2c251c14 2020-01-15 tracey return NULL;
2058 2c251c14 2020-01-15 tracey
2059 6c6c85af 2020-01-15 tracey /* only work with buff_sz */
2060 6c6c85af 2020-01-15 tracey if (buff_sz < sz)
2061 6c6c85af 2020-01-15 tracey sz = buff_sz;
2062 2c251c14 2020-01-15 tracey
2063 2c251c14 2020-01-15 tracey for (i = 0; i < sz; i++) {
2064 2c251c14 2020-01-15 tracey c[0] = html[i];
2065 2c251c14 2020-01-15 tracey switch (c[0]) {
2066 2c251c14 2020-01-15 tracey case ('>'):
2067 2c251c14 2020-01-15 tracey strcat(buf, "&gt;");
2068 2c251c14 2020-01-15 tracey break;
2069 2c251c14 2020-01-15 tracey case ('&'):
2070 2c251c14 2020-01-15 tracey strcat(buf, "&amp;");
2071 2c251c14 2020-01-15 tracey break;
2072 2c251c14 2020-01-15 tracey case ('<'):
2073 2c251c14 2020-01-15 tracey strcat(buf, "&lt;");
2074 2c251c14 2020-01-15 tracey break;
2075 2c251c14 2020-01-15 tracey case ('"'):
2076 2c251c14 2020-01-15 tracey strcat(buf, "&quot;");
2077 2c251c14 2020-01-15 tracey break;
2078 2c251c14 2020-01-15 tracey case ('\''):
2079 2c251c14 2020-01-15 tracey strcat(buf, "&apos;");
2080 2c251c14 2020-01-15 tracey break;
2081 2c251c14 2020-01-15 tracey case ('\n'):
2082 2c251c14 2020-01-15 tracey strcat(buf, "<br />");
2083 8087c3c5 2020-01-15 tracey case ('|'):
2084 8087c3c5 2020-01-15 tracey strcat(buf, " ");
2085 2c251c14 2020-01-15 tracey default:
2086 2c251c14 2020-01-15 tracey strcat(buf, &c[0]);
2087 2c251c14 2020-01-15 tracey break;
2088 2c251c14 2020-01-15 tracey }
2089 2c251c14 2020-01-15 tracey }
2090 2c251c14 2020-01-15 tracey asprintf(&escaped_str, "%s", buf);
2091 2c251c14 2020-01-15 tracey free(buf);
2092 2c251c14 2020-01-15 tracey return escaped_str;
2093 2c251c14 2020-01-15 tracey }
2094 2c251c14 2020-01-15 tracey
2095 2c251c14 2020-01-15 tracey int
2096 2c251c14 2020-01-15 tracey main()
2097 2c251c14 2020-01-15 tracey {
2098 2c251c14 2020-01-15 tracey const struct got_error *error = NULL;
2099 2c251c14 2020-01-15 tracey struct trans *gw_trans;
2100 2c251c14 2020-01-15 tracey struct gw_dir *dir = NULL, *tdir;
2101 2c251c14 2020-01-15 tracey const char *page = "index";
2102 4ceb8155 2020-01-15 tracey int gw_malloc = 1;
2103 2c251c14 2020-01-15 tracey
2104 2c251c14 2020-01-15 tracey if ((gw_trans = malloc(sizeof(struct trans))) == NULL)
2105 2c251c14 2020-01-15 tracey errx(1, "malloc");
2106 2c251c14 2020-01-15 tracey
2107 2c251c14 2020-01-15 tracey if ((gw_trans->gw_req = malloc(sizeof(struct kreq))) == NULL)
2108 2c251c14 2020-01-15 tracey errx(1, "malloc");
2109 2c251c14 2020-01-15 tracey
2110 2c251c14 2020-01-15 tracey if ((gw_trans->gw_html_req = malloc(sizeof(struct khtmlreq))) == NULL)
2111 2c251c14 2020-01-15 tracey errx(1, "malloc");
2112 2c251c14 2020-01-15 tracey
2113 2c251c14 2020-01-15 tracey if ((gw_trans->gw_tmpl = malloc(sizeof(struct ktemplate))) == NULL)
2114 2c251c14 2020-01-15 tracey errx(1, "malloc");
2115 2c251c14 2020-01-15 tracey
2116 2c251c14 2020-01-15 tracey if (KCGI_OK != khttp_parse(gw_trans->gw_req, gw_keys, KEY__MAX,
2117 2c251c14 2020-01-15 tracey &page, 1, 0))
2118 2c251c14 2020-01-15 tracey errx(1, "khttp_parse");
2119 2c251c14 2020-01-15 tracey
2120 2c251c14 2020-01-15 tracey if ((gw_trans->gw_conf =
2121 2c251c14 2020-01-15 tracey malloc(sizeof(struct gotweb_conf))) == NULL) {
2122 4ceb8155 2020-01-15 tracey gw_malloc = 0;
2123 387a29ba 2020-01-15 tracey error = got_error_from_errno("malloc");
2124 2c251c14 2020-01-15 tracey goto err;
2125 2c251c14 2020-01-15 tracey }
2126 2c251c14 2020-01-15 tracey
2127 46b9c89b 2020-01-15 tracey if (pledge("stdio rpath proc exec sendfd unveil", NULL) == -1) {
2128 46b9c89b 2020-01-15 tracey error = got_error_from_errno("pledge");
2129 46b9c89b 2020-01-15 tracey goto err;
2130 46b9c89b 2020-01-15 tracey }
2131 46b9c89b 2020-01-15 tracey
2132 2c251c14 2020-01-15 tracey TAILQ_INIT(&gw_trans->gw_dirs);
2133 2c251c14 2020-01-15 tracey
2134 2c251c14 2020-01-15 tracey gw_trans->page = 0;
2135 2c251c14 2020-01-15 tracey gw_trans->repos_total = 0;
2136 2c251c14 2020-01-15 tracey gw_trans->repo_path = NULL;
2137 2c251c14 2020-01-15 tracey gw_trans->commit = NULL;
2138 8087c3c5 2020-01-15 tracey gw_trans->headref = strdup(GOT_REF_HEAD);
2139 2c251c14 2020-01-15 tracey gw_trans->mime = KMIME_TEXT_HTML;
2140 2c251c14 2020-01-15 tracey gw_trans->gw_tmpl->key = templs;
2141 2c251c14 2020-01-15 tracey gw_trans->gw_tmpl->keysz = TEMPL__MAX;
2142 2c251c14 2020-01-15 tracey gw_trans->gw_tmpl->arg = gw_trans;
2143 2c251c14 2020-01-15 tracey gw_trans->gw_tmpl->cb = gw_template;
2144 2c251c14 2020-01-15 tracey error = parse_conf(GOTWEB_CONF, gw_trans->gw_conf);
2145 2c251c14 2020-01-15 tracey
2146 2c251c14 2020-01-15 tracey err:
2147 2c251c14 2020-01-15 tracey if (error) {
2148 2c251c14 2020-01-15 tracey gw_trans->mime = KMIME_TEXT_PLAIN;
2149 2c251c14 2020-01-15 tracey gw_trans->action = GW_ERR;
2150 2c251c14 2020-01-15 tracey gw_display_index(gw_trans, error);
2151 2c251c14 2020-01-15 tracey goto done;
2152 2c251c14 2020-01-15 tracey }
2153 2c251c14 2020-01-15 tracey
2154 2c251c14 2020-01-15 tracey error = gw_parse_querystring(gw_trans);
2155 2c251c14 2020-01-15 tracey if (error)
2156 2c251c14 2020-01-15 tracey goto err;
2157 2c251c14 2020-01-15 tracey
2158 2c251c14 2020-01-15 tracey gw_display_index(gw_trans, error);
2159 2c251c14 2020-01-15 tracey
2160 2c251c14 2020-01-15 tracey done:
2161 2c251c14 2020-01-15 tracey if (gw_malloc) {
2162 2c251c14 2020-01-15 tracey free(gw_trans->gw_conf->got_repos_path);
2163 2c251c14 2020-01-15 tracey free(gw_trans->gw_conf->got_www_path);
2164 2c251c14 2020-01-15 tracey free(gw_trans->gw_conf->got_site_name);
2165 2c251c14 2020-01-15 tracey free(gw_trans->gw_conf->got_site_owner);
2166 2c251c14 2020-01-15 tracey free(gw_trans->gw_conf->got_site_link);
2167 2c251c14 2020-01-15 tracey free(gw_trans->gw_conf->got_logo);
2168 2c251c14 2020-01-15 tracey free(gw_trans->gw_conf->got_logo_url);
2169 2c251c14 2020-01-15 tracey free(gw_trans->gw_conf);
2170 2c251c14 2020-01-15 tracey free(gw_trans->commit);
2171 2c251c14 2020-01-15 tracey free(gw_trans->repo_path);
2172 2c251c14 2020-01-15 tracey free(gw_trans->repo_name);
2173 2c251c14 2020-01-15 tracey free(gw_trans->repo_file);
2174 2c251c14 2020-01-15 tracey free(gw_trans->action_name);
2175 8087c3c5 2020-01-15 tracey free(gw_trans->headref);
2176 2c251c14 2020-01-15 tracey
2177 2c251c14 2020-01-15 tracey TAILQ_FOREACH_SAFE(dir, &gw_trans->gw_dirs, entry, tdir) {
2178 2c251c14 2020-01-15 tracey free(dir->name);
2179 2c251c14 2020-01-15 tracey free(dir->description);
2180 2c251c14 2020-01-15 tracey free(dir->age);
2181 2c251c14 2020-01-15 tracey free(dir->url);
2182 2c251c14 2020-01-15 tracey free(dir->path);
2183 2c251c14 2020-01-15 tracey free(dir);
2184 2c251c14 2020-01-15 tracey }
2185 2c251c14 2020-01-15 tracey
2186 2c251c14 2020-01-15 tracey }
2187 2c251c14 2020-01-15 tracey
2188 2c251c14 2020-01-15 tracey khttp_free(gw_trans->gw_req);
2189 2c251c14 2020-01-15 tracey return EXIT_SUCCESS;
2190 2c251c14 2020-01-15 tracey }