]>
git.cameronkatri.com Git - cgit.git/blob - ui-shared.c
1 /* ui-shared.c: common web output functions
3 * Copyright (C) 2006 Lars Hjemli
5 * Licensed under GNU General Public License v2
6 * (see COPYING for full license text)
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";
17 static char *http_date(time_t t
)
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", "Nov", "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
);
30 void cgit_print_error(char *msg
)
32 html("<div class='error'>");
37 char *cgit_httpscheme()
39 if (ctx
.env
.https
&& !strcmp(ctx
.env
.https
, "on"))
47 if (ctx
.env
.http_host
)
48 return ctx
.env
.http_host
;
49 if (!ctx
.env
.server_name
)
51 if (!ctx
.env
.server_port
|| atoi(ctx
.env
.server_port
) == 80)
52 return ctx
.env
.server_name
;
53 return xstrdup(fmt("%s:%s", ctx
.env
.server_name
, ctx
.env
.server_port
));
58 if (ctx
.cfg
.virtual_root
)
59 return fmt("%s/", ctx
.cfg
.virtual_root
);
61 return ctx
.cfg
.script_name
;
64 char *cgit_repourl(const char *reponame
)
66 if (ctx
.cfg
.virtual_root
) {
67 return fmt("%s/%s/", ctx
.cfg
.virtual_root
, reponame
);
69 return fmt("?r=%s", reponame
);
73 char *cgit_fileurl(const char *reponame
, const char *pagename
,
74 const char *filename
, const char *query
)
79 if (ctx
.cfg
.virtual_root
) {
80 tmp
= fmt("%s/%s/%s/%s", ctx
.cfg
.virtual_root
, reponame
,
81 pagename
, (filename
? filename
:""));
84 tmp
= fmt("?url=%s/%s/%s", reponame
, pagename
,
85 (filename
? filename
: ""));
89 tmp
= fmt("%s%s%s", tmp
, delim
, query
);
93 char *cgit_pageurl(const char *reponame
, const char *pagename
,
96 return cgit_fileurl(reponame
,pagename
,0,query
);
99 const char *cgit_repobasename(const char *reponame
)
101 /* I assume we don't need to store more than one repo basename */
102 static char rvbuf
[1024];
105 strncpy(rvbuf
,reponame
,sizeof(rvbuf
));
106 if(rvbuf
[sizeof(rvbuf
)-1])
107 die("cgit_repobasename: truncated repository name '%s'", reponame
);
109 /* strip trailing slashes */
110 while(p
&& rvbuf
[p
]=='/') rvbuf
[p
--]=0;
111 /* strip trailing .git */
112 if(p
>=3 && !strncmp(&rvbuf
[p
-3],".git",4)) {
113 p
-= 3; rvbuf
[p
--] = 0;
115 /* strip more trailing slashes if any */
116 while( p
&& rvbuf
[p
]=='/') rvbuf
[p
--]=0;
117 /* find last slash in the remaining string */
118 rv
= strrchr(rvbuf
,'/');
126 if (!ctx
.cfg
.virtual_root
)
127 return ctx
.cfg
.script_name
;
128 else if (ctx
.qry
.page
)
129 return fmt("%s/%s/%s/", ctx
.cfg
.virtual_root
, ctx
.qry
.repo
, ctx
.qry
.page
);
130 else if (ctx
.qry
.repo
)
131 return fmt("%s/%s/", ctx
.cfg
.virtual_root
, ctx
.qry
.repo
);
133 return fmt("%s/", ctx
.cfg
.virtual_root
);
136 static void site_url(char *page
, char *search
, int ofs
)
140 if (ctx
.cfg
.virtual_root
) {
141 html_attr(ctx
.cfg
.virtual_root
);
142 if (ctx
.cfg
.virtual_root
[strlen(ctx
.cfg
.virtual_root
) - 1] != '/')
145 html(ctx
.cfg
.script_name
);
148 htmlf("?p=%s", page
);
159 htmlf("ofs=%d", ofs
);
163 static void site_link(char *page
, char *name
, char *title
, char *class,
164 char *search
, int ofs
)
178 site_url(page
, search
, ofs
);
184 void cgit_index_link(char *name
, char *title
, char *class, char *pattern
,
187 site_link(NULL
, name
, title
, class, pattern
, ofs
);
190 static char *repolink(char *title
, char *class, char *page
, char *head
,
207 if (ctx
.cfg
.virtual_root
) {
208 html_url_path(ctx
.cfg
.virtual_root
);
209 if (ctx
.cfg
.virtual_root
[strlen(ctx
.cfg
.virtual_root
) - 1] != '/')
211 html_url_path(ctx
.repo
->url
);
212 if (ctx
.repo
->url
[strlen(ctx
.repo
->url
) - 1] != '/')
221 html(ctx
.cfg
.script_name
);
223 html_url_arg(ctx
.repo
->url
);
224 if (ctx
.repo
->url
[strlen(ctx
.repo
->url
) - 1] != '/')
234 if (head
&& strcmp(head
, ctx
.repo
->defbranch
)) {
240 return fmt("%s", delim
);
243 static void reporevlink(char *page
, char *name
, char *title
, char *class,
244 char *head
, char *rev
, char *path
)
248 delim
= repolink(title
, class, page
, head
, path
);
249 if (rev
&& strcmp(rev
, ctx
.qry
.head
)) {
259 void cgit_summary_link(char *name
, char *title
, char *class, char *head
)
261 reporevlink(NULL
, name
, title
, class, head
, NULL
, NULL
);
264 void cgit_tag_link(char *name
, char *title
, char *class, char *head
,
267 reporevlink("tag", name
, title
, class, head
, rev
, NULL
);
270 void cgit_tree_link(char *name
, char *title
, char *class, char *head
,
271 char *rev
, char *path
)
273 reporevlink("tree", name
, title
, class, head
, rev
, path
);
276 void cgit_plain_link(char *name
, char *title
, char *class, char *head
,
277 char *rev
, char *path
)
279 reporevlink("plain", name
, title
, class, head
, rev
, path
);
282 void cgit_log_link(char *name
, char *title
, char *class, char *head
,
283 char *rev
, char *path
, int ofs
, char *grep
, char *pattern
,
288 delim
= repolink(title
, class, "log", head
, path
);
289 if (rev
&& strcmp(rev
, ctx
.qry
.head
)) {
295 if (grep
&& pattern
) {
302 html_url_arg(pattern
);
319 void cgit_commit_link(char *name
, char *title
, char *class, char *head
,
322 if (strlen(name
) > ctx
.cfg
.max_msg_len
&& ctx
.cfg
.max_msg_len
>= 15) {
323 name
[ctx
.cfg
.max_msg_len
] = '\0';
324 name
[ctx
.cfg
.max_msg_len
- 1] = '.';
325 name
[ctx
.cfg
.max_msg_len
- 2] = '.';
326 name
[ctx
.cfg
.max_msg_len
- 3] = '.';
328 reporevlink("commit", name
, title
, class, head
, rev
, NULL
);
331 void cgit_refs_link(char *name
, char *title
, char *class, char *head
,
332 char *rev
, char *path
)
334 reporevlink("refs", name
, title
, class, head
, rev
, path
);
337 void cgit_snapshot_link(char *name
, char *title
, char *class, char *head
,
338 char *rev
, char *archivename
)
340 reporevlink("snapshot", name
, title
, class, head
, rev
, archivename
);
343 void cgit_diff_link(char *name
, char *title
, char *class, char *head
,
344 char *new_rev
, char *old_rev
, char *path
)
348 delim
= repolink(title
, class, "diff", head
, path
);
349 if (new_rev
&& strcmp(new_rev
, ctx
.qry
.head
)) {
352 html_url_arg(new_rev
);
358 html_url_arg(old_rev
);
365 void cgit_patch_link(char *name
, char *title
, char *class, char *head
,
368 reporevlink("patch", name
, title
, class, head
, rev
, NULL
);
371 void cgit_stats_link(char *name
, char *title
, char *class, char *head
,
374 reporevlink("stats", name
, title
, class, head
, NULL
, path
);
377 void cgit_object_link(struct object
*obj
)
379 char *page
, *shortrev
, *fullrev
, *name
;
381 fullrev
= sha1_to_hex(obj
->sha1
);
382 shortrev
= xstrdup(fullrev
);
384 if (obj
->type
== OBJ_COMMIT
) {
385 cgit_commit_link(fmt("commit %s...", shortrev
), NULL
, NULL
,
386 ctx
.qry
.head
, fullrev
);
388 } else if (obj
->type
== OBJ_TREE
)
390 else if (obj
->type
== OBJ_TAG
)
394 name
= fmt("%s %s...", typename(obj
->type
), shortrev
);
395 reporevlink(page
, name
, NULL
, NULL
, ctx
.qry
.head
, fullrev
, NULL
);
398 void cgit_print_date(time_t secs
, char *format
, int local_time
)
406 time
= localtime(&secs
);
408 time
= gmtime(&secs
);
409 strftime(buf
, sizeof(buf
)-1, format
, time
);
413 void cgit_print_age(time_t t
, time_t max_relative
, char *format
)
422 if (secs
> max_relative
&& max_relative
>= 0) {
423 cgit_print_date(t
, format
, ctx
.cfg
.local_time
);
427 if (secs
< TM_HOUR
* 2) {
428 htmlf("<span class='age-mins'>%.0f min.</span>",
429 secs
* 1.0 / TM_MIN
);
432 if (secs
< TM_DAY
* 2) {
433 htmlf("<span class='age-hours'>%.0f hours</span>",
434 secs
* 1.0 / TM_HOUR
);
437 if (secs
< TM_WEEK
* 2) {
438 htmlf("<span class='age-days'>%.0f days</span>",
439 secs
* 1.0 / TM_DAY
);
442 if (secs
< TM_MONTH
* 2) {
443 htmlf("<span class='age-weeks'>%.0f weeks</span>",
444 secs
* 1.0 / TM_WEEK
);
447 if (secs
< TM_YEAR
* 2) {
448 htmlf("<span class='age-months'>%.0f months</span>",
449 secs
* 1.0 / TM_MONTH
);
452 htmlf("<span class='age-years'>%.0f years</span>",
453 secs
* 1.0 / TM_YEAR
);
456 void cgit_print_http_headers(struct cgit_context
*ctx
)
458 if (ctx
->env
.no_http
&& !strcmp(ctx
->env
.no_http
, "1"))
461 if (ctx
->page
.status
)
462 htmlf("Status: %d %s\n", ctx
->page
.status
, ctx
->page
.statusmsg
);
463 if (ctx
->page
.mimetype
&& ctx
->page
.charset
)
464 htmlf("Content-Type: %s; charset=%s\n", ctx
->page
.mimetype
,
466 else if (ctx
->page
.mimetype
)
467 htmlf("Content-Type: %s\n", ctx
->page
.mimetype
);
469 htmlf("Content-Length: %ld\n", ctx
->page
.size
);
470 if (ctx
->page
.filename
)
471 htmlf("Content-Disposition: inline; filename=\"%s\"\n",
473 htmlf("Last-Modified: %s\n", http_date(ctx
->page
.modified
));
474 htmlf("Expires: %s\n", http_date(ctx
->page
.expires
));
476 htmlf("ETag: \"%s\"\n", ctx
->page
.etag
);
478 if (ctx
->env
.request_method
&& !strcmp(ctx
->env
.request_method
, "HEAD"))
482 void cgit_print_docstart(struct cgit_context
*ctx
)
484 if (ctx
->cfg
.embedded
) {
486 html_include(ctx
->cfg
.header
);
490 char *host
= cgit_hosturl();
492 html("<html xmlns='http://www.w3.org/1999/xhtml' xml:lang='en' lang='en'>\n");
495 html_txt(ctx
->page
.title
);
497 htmlf("<meta name='generator' content='cgit %s'/>\n", cgit_version
);
498 if (ctx
->cfg
.robots
&& *ctx
->cfg
.robots
)
499 htmlf("<meta name='robots' content='%s'/>\n", ctx
->cfg
.robots
);
500 html("<link rel='stylesheet' type='text/css' href='");
501 html_attr(ctx
->cfg
.css
);
503 if (ctx
->cfg
.favicon
) {
504 html("<link rel='shortcut icon' href='");
505 html_attr(ctx
->cfg
.favicon
);
508 if (host
&& ctx
->repo
) {
509 html("<link rel='alternate' title='Atom feed' href='");
510 html(cgit_httpscheme());
511 html_attr(cgit_hosturl());
512 html_attr(cgit_fileurl(ctx
->repo
->url
, "atom", ctx
->qry
.path
,
513 fmt("h=%s", ctx
->qry
.head
)));
514 html("' type='application/atom+xml'/>\n");
516 if (ctx
->cfg
.head_include
)
517 html_include(ctx
->cfg
.head_include
);
521 html_include(ctx
->cfg
.header
);
524 void cgit_print_docend()
526 html("</div> <!-- class=content -->\n");
527 if (ctx
.cfg
.embedded
) {
528 html("</div> <!-- id=cgit -->\n");
530 html_include(ctx
.cfg
.footer
);
534 html_include(ctx
.cfg
.footer
);
536 htmlf("<div class='footer'>generated by cgit %s at ",
538 cgit_print_date(time(NULL
), FMT_LONGDATE
, ctx
.cfg
.local_time
);
541 html("</div> <!-- id=cgit -->\n");
542 html("</body>\n</html>\n");
545 int print_branch_option(const char *refname
, const unsigned char *sha1
,
546 int flags
, void *cb_data
)
548 char *name
= (char *)refname
;
549 html_option(name
, name
, ctx
.qry
.head
);
553 int print_archive_ref(const char *refname
, const unsigned char *sha1
,
554 int flags
, void *cb_data
)
557 struct taginfo
*info
;
560 unsigned char fileid
[20];
561 int *header
= (int *)cb_data
;
563 if (prefixcmp(refname
, "refs/archives"))
565 strncpy(buf
, refname
+14, sizeof(buf
));
566 obj
= parse_object(sha1
);
569 if (obj
->type
== OBJ_TAG
) {
570 tag
= lookup_tag(sha1
);
571 if (!tag
|| parse_tag(tag
) || !(info
= cgit_parse_tag(tag
)))
573 hashcpy(fileid
, tag
->tagged
->sha1
);
574 } else if (obj
->type
!= OBJ_BLOB
) {
577 hashcpy(fileid
, sha1
);
580 html("<h1>download</h1>\n");
583 url
= cgit_pageurl(ctx
.qry
.repo
, "blob",
584 fmt("id=%s&path=%s", sha1_to_hex(fileid
),
586 html_link_open(url
, NULL
, "menu");
587 html_txt(strlpart(buf
, 20));
592 void cgit_add_hidden_formfields(int incl_head
, int incl_search
, char *page
)
596 if (!ctx
.cfg
.virtual_root
) {
597 url
= fmt("%s/%s", ctx
.qry
.repo
, page
);
599 url
= fmt("%s/%s", url
, ctx
.qry
.path
);
600 html_hidden("url", url
);
603 if (incl_head
&& ctx
.qry
.head
&& ctx
.repo
->defbranch
&&
604 strcmp(ctx
.qry
.head
, ctx
.repo
->defbranch
))
605 html_hidden("h", ctx
.qry
.head
);
608 html_hidden("id", ctx
.qry
.sha1
);
610 html_hidden("id2", ctx
.qry
.sha2
);
612 html_hidden("showmsg", "1");
616 html_hidden("qt", ctx
.qry
.grep
);
618 html_hidden("q", ctx
.qry
.search
);
622 const char *fallback_cmd
= "repolist";
624 char *hc(struct cgit_cmd
*cmd
, const char *page
)
626 return (strcmp(cmd
? cmd
->name
: fallback_cmd
, page
) ? NULL
: "active");
629 static void print_header(struct cgit_context
*ctx
)
631 html("<table id='header'>\n");
634 if (ctx
->cfg
.logo
&& ctx
->cfg
.logo
[0] != 0) {
635 html("<td class='logo' rowspan='2'><a href='");
636 if (ctx
->cfg
.logo_link
)
637 html_attr(ctx
->cfg
.logo_link
);
639 html_attr(cgit_rooturl());
640 html("'><img src='");
641 html_attr(ctx
->cfg
.logo
);
642 html("' alt='cgit logo'/></a></td>\n");
645 html("<td class='main'>");
647 cgit_index_link("index", NULL
, NULL
, NULL
, 0);
649 cgit_summary_link(ctx
->repo
->name
, ctx
->repo
->name
, NULL
, NULL
);
650 html("</td><td class='form'>");
651 html("<form method='get' action=''>\n");
652 cgit_add_hidden_formfields(0, 1, ctx
->qry
.page
);
653 html("<select name='h' onchange='this.form.submit();'>\n");
654 for_each_branch_ref(print_branch_option
, ctx
->qry
.head
);
656 html("<input type='submit' name='' value='switch'/>");
659 html_txt(ctx
->cfg
.root_title
);
660 html("</td></tr>\n");
662 html("<tr><td class='sub'>");
664 html_txt(ctx
->repo
->desc
);
665 html("</td><td class='sub right'>");
666 html_txt(ctx
->repo
->owner
);
668 if (ctx
->cfg
.root_desc
)
669 html_txt(ctx
->cfg
.root_desc
);
670 else if (ctx
->cfg
.index_info
)
671 html_include(ctx
->cfg
.index_info
);
673 html("</td></tr></table>\n");
676 void cgit_print_pageheader(struct cgit_context
*ctx
)
678 struct cgit_cmd
*cmd
= cgit_get_cmd(ctx
);
680 if (!cmd
&& ctx
->repo
)
681 fallback_cmd
= "summary";
683 html("<div id='cgit'>");
684 if (!ctx
->cfg
.noheader
)
687 html("<table class='tabs'><tr><td>\n");
689 cgit_summary_link("summary", NULL
, hc(cmd
, "summary"),
691 cgit_refs_link("refs", NULL
, hc(cmd
, "refs"), ctx
->qry
.head
,
692 ctx
->qry
.sha1
, NULL
);
693 cgit_log_link("log", NULL
, hc(cmd
, "log"), ctx
->qry
.head
,
694 NULL
, NULL
, 0, NULL
, NULL
, ctx
->qry
.showmsg
);
695 cgit_tree_link("tree", NULL
, hc(cmd
, "tree"), ctx
->qry
.head
,
696 ctx
->qry
.sha1
, NULL
);
697 cgit_commit_link("commit", NULL
, hc(cmd
, "commit"),
698 ctx
->qry
.head
, ctx
->qry
.sha1
);
699 cgit_diff_link("diff", NULL
, hc(cmd
, "diff"), ctx
->qry
.head
,
700 ctx
->qry
.sha1
, ctx
->qry
.sha2
, NULL
);
701 if (ctx
->repo
->max_stats
)
702 cgit_stats_link("stats", NULL
, hc(cmd
, "stats"),
703 ctx
->qry
.head
, NULL
);
704 if (ctx
->repo
->readme
)
705 reporevlink("about", "about", NULL
,
706 hc(cmd
, "about"), ctx
->qry
.head
, NULL
,
708 html("</td><td class='form'>");
709 html("<form class='right' method='get' action='");
710 if (ctx
->cfg
.virtual_root
)
711 html_url_path(cgit_fileurl(ctx
->qry
.repo
, "log",
712 ctx
->qry
.path
, NULL
));
714 cgit_add_hidden_formfields(1, 0, "log");
715 html("<select name='qt'>\n");
716 html_option("grep", "log msg", ctx
->qry
.grep
);
717 html_option("author", "author", ctx
->qry
.grep
);
718 html_option("committer", "committer", ctx
->qry
.grep
);
720 html("<input class='txt' type='text' size='10' name='q' value='");
721 html_attr(ctx
->qry
.search
);
723 html("<input type='submit' value='search'/>\n");
726 site_link(NULL
, "index", NULL
, hc(cmd
, "repolist"), NULL
, 0);
727 if (ctx
->cfg
.root_readme
)
728 site_link("about", "about", NULL
, hc(cmd
, "about"),
730 html("</td><td class='form'>");
731 html("<form method='get' action='");
732 html_attr(cgit_rooturl());
734 html("<input type='text' name='q' size='10' value='");
735 html_attr(ctx
->qry
.search
);
737 html("<input type='submit' value='search'/>\n");
740 html("</td></tr></table>\n");
741 html("<div class='content'>");
744 void cgit_print_filemode(unsigned short mode
)
748 else if (S_ISLNK(mode
))
750 else if (S_ISGITLINK(mode
))
754 html_fileperm(mode
>> 6);
755 html_fileperm(mode
>> 3);
759 void cgit_print_snapshot_links(const char *repo
, const char *head
,
760 const char *hex
, int snapshots
)
762 const struct cgit_snapshot_format
* f
;
765 unsigned char sha1
[20];
767 if (get_sha1(fmt("refs/tags/%s", hex
), sha1
) == 0 &&
768 (hex
[0] == 'v' || hex
[0] == 'V') && isdigit(hex
[1]))
770 prefix
= xstrdup(fmt("%s-%s", cgit_repobasename(repo
), hex
));
771 for (f
= cgit_snapshot_formats
; f
->suffix
; f
++) {
772 if (!(snapshots
& f
->bit
))
774 filename
= fmt("%s%s", prefix
, f
->suffix
);
775 cgit_snapshot_link(filename
, NULL
, NULL
, NULL
, NULL
, filename
);