]> gitweb.ps.run Git - ps-cgit/blob - ui-shared.c
Implement plain view
[ps-cgit] / ui-shared.c
1 /* ui-shared.c: common web output functions
2  *
3  * Copyright (C) 2006 Lars Hjemli
4  *
5  * Licensed under GNU General Public License v2
6  *   (see COPYING for full license text)
7  */
8
9 #include "cgit.h"
10 #include "cmd.h"
11 #include "html.h"
12
13 const char cgit_doctype[] =
14 "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n"
15 "  \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n";
16
17 static char *http_date(time_t t)
18 {
19         static char day[][4] =
20                 {"Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"};
21         static char month[][4] =
22                 {"Jan", "Feb", "Mar", "Apr", "May", "Jun",
23                  "Jul", "Aug", "Sep", "Oct", "Now", "Dec"};
24         struct tm *tm = gmtime(&t);
25         return fmt("%s, %02d %s %04d %02d:%02d:%02d GMT", day[tm->tm_wday],
26                    tm->tm_mday, month[tm->tm_mon], 1900+tm->tm_year,
27                    tm->tm_hour, tm->tm_min, tm->tm_sec);
28 }
29
30 void cgit_print_error(char *msg)
31 {
32         html("<div class='error'>");
33         html_txt(msg);
34         html("</div>\n");
35 }
36
37 char *cgit_rooturl()
38 {
39         if (ctx.cfg.virtual_root)
40                 return fmt("%s/", ctx.cfg.virtual_root);
41         else
42                 return ctx.cfg.script_name;
43 }
44
45 char *cgit_repourl(const char *reponame)
46 {
47         if (ctx.cfg.virtual_root) {
48                 return fmt("%s/%s/", ctx.cfg.virtual_root, reponame);
49         } else {
50                 return fmt("?r=%s", reponame);
51         }
52 }
53
54 char *cgit_fileurl(const char *reponame, const char *pagename,
55                    const char *filename, const char *query)
56 {
57         char *tmp;
58         char *delim;
59
60         if (ctx.cfg.virtual_root) {
61                 tmp = fmt("%s/%s/%s/%s", ctx.cfg.virtual_root, reponame,
62                           pagename, (filename ? filename:""));
63                 delim = "?";
64         } else {
65                 tmp = fmt("?url=%s/%s/%s", reponame, pagename,
66                           (filename ? filename : ""));
67                 delim = "&";
68         }
69         if (query)
70                 tmp = fmt("%s%s%s", tmp, delim, query);
71         return tmp;
72 }
73
74 char *cgit_pageurl(const char *reponame, const char *pagename,
75                    const char *query)
76 {
77         return cgit_fileurl(reponame,pagename,0,query);
78 }
79
80 const char *cgit_repobasename(const char *reponame)
81 {
82         /* I assume we don't need to store more than one repo basename */
83         static char rvbuf[1024];
84         int p;
85         const char *rv;
86         strncpy(rvbuf,reponame,sizeof(rvbuf));
87         if(rvbuf[sizeof(rvbuf)-1])
88                 die("cgit_repobasename: truncated repository name '%s'", reponame);
89         p = strlen(rvbuf)-1;
90         /* strip trailing slashes */
91         while(p && rvbuf[p]=='/') rvbuf[p--]=0;
92         /* strip trailing .git */
93         if(p>=3 && !strncmp(&rvbuf[p-3],".git",4)) {
94                 p -= 3; rvbuf[p--] = 0;
95         }
96         /* strip more trailing slashes if any */
97         while( p && rvbuf[p]=='/') rvbuf[p--]=0;
98         /* find last slash in the remaining string */
99         rv = strrchr(rvbuf,'/');
100         if(rv)
101                 return ++rv;
102         return rvbuf;
103 }
104
105 char *cgit_currurl()
106 {
107         if (!ctx.cfg.virtual_root)
108                 return ctx.cfg.script_name;
109         else if (ctx.qry.page)
110                 return fmt("%s/%s/%s/", ctx.cfg.virtual_root, ctx.qry.repo, ctx.qry.page);
111         else if (ctx.qry.repo)
112                 return fmt("%s/%s/", ctx.cfg.virtual_root, ctx.qry.repo);
113         else
114                 return fmt("%s/", ctx.cfg.virtual_root);
115 }
116
117 static void site_url(char *page, char *search, int ofs)
118 {
119         char *delim = "?";
120
121         if (ctx.cfg.virtual_root) {
122                 html_attr(ctx.cfg.virtual_root);
123                 if (ctx.cfg.virtual_root[strlen(ctx.cfg.virtual_root) - 1] != '/')
124                         html("/");
125         } else
126                 html(ctx.cfg.script_name);
127
128         if (page) {
129                 htmlf("?p=%s", page);
130                 delim = "&";
131         }
132         if (search) {
133                 html(delim);
134                 html("q=");
135                 html_attr(search);
136                 delim = "&";
137         }
138         if (ofs) {
139                 html(delim);
140                 htmlf("ofs=%d", ofs);
141         }
142 }
143
144 static void site_link(char *page, char *name, char *title, char *class,
145                       char *search, int ofs)
146 {
147         html("<a");
148         if (title) {
149                 html(" title='");
150                 html_attr(title);
151                 html("'");
152         }
153         if (class) {
154                 html(" class='");
155                 html_attr(class);
156                 html("'");
157         }
158         html(" href='");
159         site_url(page, search, ofs);
160         html("'>");
161         html_txt(name);
162         html("</a>");
163 }
164
165 void cgit_index_link(char *name, char *title, char *class, char *pattern,
166                      int ofs)
167 {
168         site_link(NULL, name, title, class, pattern, ofs);
169 }
170
171 static char *repolink(char *title, char *class, char *page, char *head,
172                       char *path)
173 {
174         char *delim = "?";
175
176         html("<a");
177         if (title) {
178                 html(" title='");
179                 html_attr(title);
180                 html("'");
181         }
182         if (class) {
183                 html(" class='");
184                 html_attr(class);
185                 html("'");
186         }
187         html(" href='");
188         if (ctx.cfg.virtual_root) {
189                 html_attr(ctx.cfg.virtual_root);
190                 if (ctx.cfg.virtual_root[strlen(ctx.cfg.virtual_root) - 1] != '/')
191                         html("/");
192                 html_attr(ctx.repo->url);
193                 if (ctx.repo->url[strlen(ctx.repo->url) - 1] != '/')
194                         html("/");
195                 if (page) {
196                         html(page);
197                         html("/");
198                         if (path)
199                                 html_attr(path);
200                 }
201         } else {
202                 html(ctx.cfg.script_name);
203                 html("?url=");
204                 html_attr(ctx.repo->url);
205                 if (ctx.repo->url[strlen(ctx.repo->url) - 1] != '/')
206                         html("/");
207                 if (page) {
208                         html(page);
209                         html("/");
210                         if (path)
211                                 html_attr(path);
212                 }
213                 delim = "&amp;";
214         }
215         if (head && strcmp(head, ctx.repo->defbranch)) {
216                 html(delim);
217                 html("h=");
218                 html_attr(head);
219                 delim = "&amp;";
220         }
221         return fmt("%s", delim);
222 }
223
224 static void reporevlink(char *page, char *name, char *title, char *class,
225                         char *head, char *rev, char *path)
226 {
227         char *delim;
228
229         delim = repolink(title, class, page, head, path);
230         if (rev && strcmp(rev, ctx.qry.head)) {
231                 html(delim);
232                 html("id=");
233                 html_attr(rev);
234         }
235         html("'>");
236         html_txt(name);
237         html("</a>");
238 }
239
240 void cgit_tree_link(char *name, char *title, char *class, char *head,
241                     char *rev, char *path)
242 {
243         reporevlink("tree", name, title, class, head, rev, path);
244 }
245
246 void cgit_log_link(char *name, char *title, char *class, char *head,
247                    char *rev, char *path, int ofs, char *grep, char *pattern)
248 {
249         char *delim;
250
251         delim = repolink(title, class, "log", head, path);
252         if (rev && strcmp(rev, ctx.qry.head)) {
253                 html(delim);
254                 html("id=");
255                 html_attr(rev);
256                 delim = "&";
257         }
258         if (grep && pattern) {
259                 html(delim);
260                 html("qt=");
261                 html_attr(grep);
262                 delim = "&";
263                 html(delim);
264                 html("q=");
265                 html_attr(pattern);
266         }
267         if (ofs > 0) {
268                 html(delim);
269                 html("ofs=");
270                 htmlf("%d", ofs);
271         }
272         html("'>");
273         html_txt(name);
274         html("</a>");
275 }
276
277 void cgit_commit_link(char *name, char *title, char *class, char *head,
278                       char *rev)
279 {
280         if (strlen(name) > ctx.cfg.max_msg_len && ctx.cfg.max_msg_len >= 15) {
281                 name[ctx.cfg.max_msg_len] = '\0';
282                 name[ctx.cfg.max_msg_len - 1] = '.';
283                 name[ctx.cfg.max_msg_len - 2] = '.';
284                 name[ctx.cfg.max_msg_len - 3] = '.';
285         }
286         reporevlink("commit", name, title, class, head, rev, NULL);
287 }
288
289 void cgit_refs_link(char *name, char *title, char *class, char *head,
290                     char *rev, char *path)
291 {
292         reporevlink("refs", name, title, class, head, rev, path);
293 }
294
295 void cgit_snapshot_link(char *name, char *title, char *class, char *head,
296                         char *rev, char *archivename)
297 {
298         reporevlink("snapshot", name, title, class, head, rev, archivename);
299 }
300
301 void cgit_diff_link(char *name, char *title, char *class, char *head,
302                     char *new_rev, char *old_rev, char *path)
303 {
304         char *delim;
305
306         delim = repolink(title, class, "diff", head, path);
307         if (new_rev && strcmp(new_rev, ctx.qry.head)) {
308                 html(delim);
309                 html("id=");
310                 html_attr(new_rev);
311                 delim = "&amp;";
312         }
313         if (old_rev) {
314                 html(delim);
315                 html("id2=");
316                 html_attr(old_rev);
317         }
318         html("'>");
319         html_txt(name);
320         html("</a>");
321 }
322
323 void cgit_patch_link(char *name, char *title, char *class, char *head,
324                      char *rev)
325 {
326         reporevlink("patch", name, title, class, head, rev, NULL);
327 }
328
329 void cgit_object_link(struct object *obj)
330 {
331         char *page, *arg, *url;
332
333         if (obj->type == OBJ_COMMIT) {
334                 cgit_commit_link(fmt("commit %s", sha1_to_hex(obj->sha1)), NULL, NULL,
335                                  ctx.qry.head, sha1_to_hex(obj->sha1));
336                 return;
337         } else if (obj->type == OBJ_TREE) {
338                 page = "tree";
339                 arg = "id";
340         } else if (obj->type == OBJ_TAG) {
341                 page = "tag";
342                 arg = "id";
343         } else {
344                 page = "blob";
345                 arg = "id";
346         }
347
348         url = cgit_pageurl(ctx.qry.repo, page,
349                            fmt("%s=%s", arg, sha1_to_hex(obj->sha1)));
350         html_link_open(url, NULL, NULL);
351         htmlf("%s %s", typename(obj->type),
352               sha1_to_hex(obj->sha1));
353         html_link_close();
354 }
355
356 void cgit_print_date(time_t secs, char *format, int local_time)
357 {
358         char buf[64];
359         struct tm *time;
360
361         if (!secs)
362                 return;
363         if(local_time)
364                 time = localtime(&secs);
365         else
366                 time = gmtime(&secs);
367         strftime(buf, sizeof(buf)-1, format, time);
368         html_txt(buf);
369 }
370
371 void cgit_print_age(time_t t, time_t max_relative, char *format)
372 {
373         time_t now, secs;
374
375         if (!t)
376                 return;
377         time(&now);
378         secs = now - t;
379
380         if (secs > max_relative && max_relative >= 0) {
381                 cgit_print_date(t, format, ctx.cfg.local_time);
382                 return;
383         }
384
385         if (secs < TM_HOUR * 2) {
386                 htmlf("<span class='age-mins'>%.0f min.</span>",
387                       secs * 1.0 / TM_MIN);
388                 return;
389         }
390         if (secs < TM_DAY * 2) {
391                 htmlf("<span class='age-hours'>%.0f hours</span>",
392                       secs * 1.0 / TM_HOUR);
393                 return;
394         }
395         if (secs < TM_WEEK * 2) {
396                 htmlf("<span class='age-days'>%.0f days</span>",
397                       secs * 1.0 / TM_DAY);
398                 return;
399         }
400         if (secs < TM_MONTH * 2) {
401                 htmlf("<span class='age-weeks'>%.0f weeks</span>",
402                       secs * 1.0 / TM_WEEK);
403                 return;
404         }
405         if (secs < TM_YEAR * 2) {
406                 htmlf("<span class='age-months'>%.0f months</span>",
407                       secs * 1.0 / TM_MONTH);
408                 return;
409         }
410         htmlf("<span class='age-years'>%.0f years</span>",
411               secs * 1.0 / TM_YEAR);
412 }
413
414 void cgit_print_http_headers(struct cgit_context *ctx)
415 {
416         if (ctx->page.mimetype && ctx->page.charset)
417                 htmlf("Content-Type: %s; charset=%s\n", ctx->page.mimetype,
418                       ctx->page.charset);
419         else if (ctx->page.mimetype)
420                 htmlf("Content-Type: %s\n", ctx->page.mimetype);
421         if (ctx->page.size)
422                 htmlf("Content-Length: %ld\n", ctx->page.size);
423         if (ctx->page.filename)
424                 htmlf("Content-Disposition: inline; filename=\"%s\"\n",
425                       ctx->page.filename);
426         htmlf("Last-Modified: %s\n", http_date(ctx->page.modified));
427         htmlf("Expires: %s\n", http_date(ctx->page.expires));
428         html("\n");
429 }
430
431 void cgit_print_docstart(struct cgit_context *ctx)
432 {
433         html(cgit_doctype);
434         html("<html xmlns='http://www.w3.org/1999/xhtml' xml:lang='en' lang='en'>\n");
435         html("<head>\n");
436         html("<title>");
437         html_txt(ctx->page.title);
438         html("</title>\n");
439         htmlf("<meta name='generator' content='cgit %s'/>\n", cgit_version);
440         if (ctx->cfg.robots && *ctx->cfg.robots)
441                 htmlf("<meta name='robots' content='%s'/>\n", ctx->cfg.robots);
442         html("<link rel='stylesheet' type='text/css' href='");
443         html_attr(ctx->cfg.css);
444         html("'/>\n");
445         if (ctx->cfg.favicon) {
446                 html("<link rel='shortcut icon' href='");
447                 html_attr(ctx->cfg.favicon);
448                 html("'/>\n");
449         }
450         html("</head>\n");
451         html("<body>\n");
452 }
453
454 void cgit_print_docend()
455 {
456         html("</div>");
457         if (ctx.cfg.footer)
458                 html_include(ctx.cfg.footer);
459         else {
460                 html("<div class='footer'>generated ");
461                 cgit_print_date(time(NULL), FMT_LONGDATE, ctx.cfg.local_time);
462                 htmlf(" by cgit %s", cgit_version);
463                 html("</div>\n");
464         }
465         html("</body>\n</html>\n");
466 }
467
468 int print_branch_option(const char *refname, const unsigned char *sha1,
469                         int flags, void *cb_data)
470 {
471         char *name = (char *)refname;
472         html_option(name, name, ctx.qry.head);
473         return 0;
474 }
475
476 int print_archive_ref(const char *refname, const unsigned char *sha1,
477                        int flags, void *cb_data)
478 {
479         struct tag *tag;
480         struct taginfo *info;
481         struct object *obj;
482         char buf[256], *url;
483         unsigned char fileid[20];
484         int *header = (int *)cb_data;
485
486         if (prefixcmp(refname, "refs/archives"))
487                 return 0;
488         strncpy(buf, refname+14, sizeof(buf));
489         obj = parse_object(sha1);
490         if (!obj)
491                 return 1;
492         if (obj->type == OBJ_TAG) {
493                 tag = lookup_tag(sha1);
494                 if (!tag || parse_tag(tag) || !(info = cgit_parse_tag(tag)))
495                         return 0;
496                 hashcpy(fileid, tag->tagged->sha1);
497         } else if (obj->type != OBJ_BLOB) {
498                 return 0;
499         } else {
500                 hashcpy(fileid, sha1);
501         }
502         if (!*header) {
503                 html("<h1>download</h1>\n");
504                 *header = 1;
505         }
506         url = cgit_pageurl(ctx.qry.repo, "blob",
507                            fmt("id=%s&amp;path=%s", sha1_to_hex(fileid),
508                                buf));
509         html_link_open(url, NULL, "menu");
510         html_txt(strlpart(buf, 20));
511         html_link_close();
512         return 0;
513 }
514
515 void add_hidden_formfields(int incl_head, int incl_search, char *page)
516 {
517         char *url;
518
519         if (!ctx.cfg.virtual_root) {
520                 url = fmt("%s/%s", ctx.qry.repo, page);
521                 if (ctx.qry.path)
522                         url = fmt("%s/%s", url, ctx.qry.path);
523                 html_hidden("url", url);
524         }
525
526         if (incl_head && ctx.qry.head && ctx.repo->defbranch &&
527             strcmp(ctx.qry.head, ctx.repo->defbranch))
528                 html_hidden("h", ctx.qry.head);
529
530         if (ctx.qry.sha1)
531                 html_hidden("id", ctx.qry.sha1);
532         if (ctx.qry.sha2)
533                 html_hidden("id2", ctx.qry.sha2);
534
535         if (incl_search) {
536                 if (ctx.qry.grep)
537                         html_hidden("qt", ctx.qry.grep);
538                 if (ctx.qry.search)
539                         html_hidden("q", ctx.qry.search);
540         }
541 }
542
543 char *hc(struct cgit_cmd *cmd, const char *page)
544 {
545         return (strcmp(cmd->name, page) ? NULL : "active");
546 }
547
548 void cgit_print_pageheader(struct cgit_context *ctx)
549 {
550         struct cgit_cmd *cmd = cgit_get_cmd(ctx);
551
552         html("<table id='header'>\n");
553         html("<tr>\n");
554         html("<td class='logo' rowspan='2'><a href='");
555         if (ctx->cfg.logo_link)
556                 html_attr(ctx->cfg.logo_link);
557         else
558                 html_attr(cgit_rooturl());
559         html("'><img src='");
560         html_attr(ctx->cfg.logo);
561         html("' alt='cgit logo'/></a></td>\n");
562
563         html("<td class='main'>");
564         if (ctx->repo) {
565                 cgit_index_link("index", NULL, NULL, NULL, 0);
566                 html(" : ");
567                 reporevlink(NULL, ctx->repo->name, NULL, hc(cmd, "summary"),
568                             ctx->qry.head, NULL, NULL);
569                 html("</td><td class='form'>");
570                 html("<form method='get' action=''>\n");
571                 add_hidden_formfields(0, 1, ctx->qry.page);
572                 html("<select name='h' onchange='this.form.submit();'>\n");
573                 for_each_branch_ref(print_branch_option, ctx->qry.head);
574                 html("</select> ");
575                 html("<input type='submit' name='' value='switch'/>");
576                 html("</form>");
577         } else
578                 html_txt(ctx->cfg.root_title);
579         html("</td></tr>\n");
580
581         html("<tr><td class='sub'>");
582         if (ctx->repo) {
583                 html_txt(ctx->repo->desc);
584                 html("</td><td class='sub right'>");
585                 html_txt(ctx->repo->owner);
586         } else {
587                 if (ctx->cfg.root_desc)
588                         html_txt(ctx->cfg.root_desc);
589                 else if (ctx->cfg.index_info)
590                         html_include(ctx->cfg.index_info);
591         }
592         html("</td></tr></table>\n");
593
594         html("<table class='tabs'><tr><td>\n");
595         if (ctx->repo) {
596                 reporevlink(NULL, "summary", NULL, hc(cmd, "summary"),
597                             ctx->qry.head, NULL, NULL);
598                 cgit_refs_link("refs", NULL, hc(cmd, "refs"), ctx->qry.head,
599                                ctx->qry.sha1, NULL);
600                 cgit_log_link("log", NULL, hc(cmd, "log"), ctx->qry.head,
601                               NULL, NULL, 0, NULL, NULL);
602                 cgit_tree_link("tree", NULL, hc(cmd, "tree"), ctx->qry.head,
603                                ctx->qry.sha1, NULL);
604                 cgit_commit_link("commit", NULL, hc(cmd, "commit"),
605                                  ctx->qry.head, ctx->qry.sha1);
606                 cgit_diff_link("diff", NULL, hc(cmd, "diff"), ctx->qry.head,
607                                ctx->qry.sha1, ctx->qry.sha2, NULL);
608                 if (ctx->repo->readme)
609                         reporevlink("about", "about", NULL,
610                                     hc(cmd, "about"), ctx->qry.head, NULL,
611                                     NULL);
612                 html("</td><td class='form'>");
613                 html("<form class='right' method='get' action='");
614                 if (ctx->cfg.virtual_root)
615                         html_attr(cgit_fileurl(ctx->qry.repo, "log",
616                                                ctx->qry.path, NULL));
617                 html("'>\n");
618                 add_hidden_formfields(1, 0, "log");
619                 html("<select name='qt'>\n");
620                 html_option("grep", "log msg", ctx->qry.grep);
621                 html_option("author", "author", ctx->qry.grep);
622                 html_option("committer", "committer", ctx->qry.grep);
623                 html("</select>\n");
624                 html("<input class='txt' type='text' size='10' name='q' value='");
625                 html_attr(ctx->qry.search);
626                 html("'/>\n");
627                 html("<input type='submit' value='search'/>\n");
628                 html("</form>\n");
629         } else {
630                 site_link(NULL, "index", NULL, hc(cmd, "repolist"), NULL, 0);
631                 if (ctx->cfg.root_readme)
632                         site_link("about", "about", NULL, hc(cmd, "about"),
633                                   NULL, 0);
634                 html("</td><td class='form'>");
635                 html("<form method='get' action='");
636                 html_attr(cgit_rooturl());
637                 html("'>\n");
638                 html("<input type='text' name='q' size='10' value='");
639                 html_attr(ctx->qry.search);
640                 html("'/>\n");
641                 html("<input type='submit' value='search'/>\n");
642                 html("</form>");
643         }
644         html("</td></tr></table>\n");
645         html("<div class='content'>");
646 }
647
648 void cgit_print_filemode(unsigned short mode)
649 {
650         if (S_ISDIR(mode))
651                 html("d");
652         else if (S_ISLNK(mode))
653                 html("l");
654         else if (S_ISGITLINK(mode))
655                 html("m");
656         else
657                 html("-");
658         html_fileperm(mode >> 6);
659         html_fileperm(mode >> 3);
660         html_fileperm(mode);
661 }
662
663 void cgit_print_snapshot_links(const char *repo, const char *head,
664                                const char *hex, int snapshots)
665 {
666         const struct cgit_snapshot_format* f;
667         char *filename;
668
669         for (f = cgit_snapshot_formats; f->suffix; f++) {
670                 if (!(snapshots & f->bit))
671                         continue;
672                 filename = fmt("%s-%s%s", cgit_repobasename(repo), hex,
673                                f->suffix);
674                 cgit_snapshot_link(filename, NULL, NULL, (char *)head,
675                                    (char *)hex, filename);
676                 html("<br/>");
677         }
678 }