diff options
Diffstat (limited to 'ui-repolist.c')
-rw-r--r-- | ui-repolist.c | 144 |
1 files changed, 128 insertions, 16 deletions
diff --git a/ui-repolist.c b/ui-repolist.c index ab050c7..2c13d50 100644 --- a/ui-repolist.c +++ b/ui-repolist.c | |||
@@ -6,6 +6,10 @@ | |||
6 | * (see COPYING for full license text) | 6 | * (see COPYING for full license text) |
7 | */ | 7 | */ |
8 | 8 | ||
9 | /* This is needed for strcasestr to be defined by <string.h> */ | ||
10 | #define _GNU_SOURCE 1 | ||
11 | #include <string.h> | ||
12 | |||
9 | #include <time.h> | 13 | #include <time.h> |
10 | 14 | ||
11 | #include "cgit.h" | 15 | #include "cgit.h" |
@@ -19,7 +23,8 @@ time_t read_agefile(char *path) | |||
19 | 23 | ||
20 | if (!(f = fopen(path, "r"))) | 24 | if (!(f = fopen(path, "r"))) |
21 | return -1; | 25 | return -1; |
22 | fgets(buf, sizeof(buf), f); | 26 | if (fgets(buf, sizeof(buf), f) == NULL) |
27 | return -1; | ||
23 | fclose(f); | 28 | fclose(f); |
24 | if (parse_date(buf, buf2, sizeof(buf2))) | 29 | if (parse_date(buf, buf2, sizeof(buf2))) |
25 | return strtoul(buf2, NULL, 10); | 30 | return strtoul(buf2, NULL, 10); |
@@ -27,21 +32,38 @@ time_t read_agefile(char *path) | |||
27 | return 0; | 32 | return 0; |
28 | } | 33 | } |
29 | 34 | ||
30 | static void print_modtime(struct cgit_repo *repo) | 35 | static int get_repo_modtime(const struct cgit_repo *repo, time_t *mtime) |
31 | { | 36 | { |
32 | char *path; | 37 | char *path; |
33 | struct stat s; | 38 | struct stat s; |
39 | struct cgit_repo *r = (struct cgit_repo *)repo; | ||
34 | 40 | ||
41 | if (repo->mtime != -1) { | ||
42 | *mtime = repo->mtime; | ||
43 | return 1; | ||
44 | } | ||
35 | path = fmt("%s/%s", repo->path, ctx.cfg.agefile); | 45 | path = fmt("%s/%s", repo->path, ctx.cfg.agefile); |
36 | if (stat(path, &s) == 0) { | 46 | if (stat(path, &s) == 0) { |
37 | cgit_print_age(read_agefile(path), -1, NULL); | 47 | *mtime = read_agefile(path); |
38 | return; | 48 | r->mtime = *mtime; |
49 | return 1; | ||
39 | } | 50 | } |
40 | 51 | ||
41 | path = fmt("%s/refs/heads/%s", repo->path, repo->defbranch); | 52 | path = fmt("%s/refs/heads/%s", repo->path, repo->defbranch); |
42 | if (stat(path, &s) != 0) | 53 | if (stat(path, &s) == 0) |
43 | return; | 54 | *mtime = s.st_mtime; |
44 | cgit_print_age(s.st_mtime, -1, NULL); | 55 | else |
56 | *mtime = 0; | ||
57 | |||
58 | r->mtime = *mtime; | ||
59 | return (r->mtime != 0); | ||
60 | } | ||
61 | |||
62 | static void print_modtime(struct cgit_repo *repo) | ||
63 | { | ||
64 | time_t t; | ||
65 | if (get_repo_modtime(repo, &t)) | ||
66 | cgit_print_age(t, -1, NULL); | ||
45 | } | 67 | } |
46 | 68 | ||
47 | int is_match(struct cgit_repo *repo) | 69 | int is_match(struct cgit_repo *repo) |
@@ -68,13 +90,23 @@ int is_in_url(struct cgit_repo *repo) | |||
68 | return 0; | 90 | return 0; |
69 | } | 91 | } |
70 | 92 | ||
93 | void print_sort_header(const char *title, const char *sort) | ||
94 | { | ||
95 | htmlf("<th class='left'><a href='./?s=%s", sort); | ||
96 | if (ctx.qry.search) { | ||
97 | html("&q="); | ||
98 | html_url_arg(ctx.qry.search); | ||
99 | } | ||
100 | htmlf("'>%s</a></th>", title); | ||
101 | } | ||
102 | |||
71 | void print_header(int columns) | 103 | void print_header(int columns) |
72 | { | 104 | { |
73 | html("<tr class='nohover'>" | 105 | html("<tr class='nohover'>"); |
74 | "<th class='left'>Name</th>" | 106 | print_sort_header("Name", "name"); |
75 | "<th class='left'>Description</th>" | 107 | print_sort_header("Description", "desc"); |
76 | "<th class='left'>Owner</th>" | 108 | print_sort_header("Owner", "owner"); |
77 | "<th class='left'>Idle</th>"); | 109 | print_sort_header("Idle", "idle"); |
78 | if (ctx.cfg.enable_index_links) | 110 | if (ctx.cfg.enable_index_links) |
79 | html("<th class='left'>Links</th>"); | 111 | html("<th class='left'>Links</th>"); |
80 | html("</tr>\n"); | 112 | html("</tr>\n"); |
@@ -91,10 +123,86 @@ void print_pager(int items, int pagelen, char *search) | |||
91 | html("</div>"); | 123 | html("</div>"); |
92 | } | 124 | } |
93 | 125 | ||
126 | static int cmp(const char *s1, const char *s2) | ||
127 | { | ||
128 | if (s1 && s2) | ||
129 | return strcmp(s1, s2); | ||
130 | if (s1 && !s2) | ||
131 | return -1; | ||
132 | if (s2 && !s1) | ||
133 | return 1; | ||
134 | return 0; | ||
135 | } | ||
136 | |||
137 | static int sort_name(const void *a, const void *b) | ||
138 | { | ||
139 | const struct cgit_repo *r1 = a; | ||
140 | const struct cgit_repo *r2 = b; | ||
141 | |||
142 | return cmp(r1->name, r2->name); | ||
143 | } | ||
144 | |||
145 | static int sort_desc(const void *a, const void *b) | ||
146 | { | ||
147 | const struct cgit_repo *r1 = a; | ||
148 | const struct cgit_repo *r2 = b; | ||
149 | |||
150 | return cmp(r1->desc, r2->desc); | ||
151 | } | ||
152 | |||
153 | static int sort_owner(const void *a, const void *b) | ||
154 | { | ||
155 | const struct cgit_repo *r1 = a; | ||
156 | const struct cgit_repo *r2 = b; | ||
157 | |||
158 | return cmp(r1->owner, r2->owner); | ||
159 | } | ||
160 | |||
161 | static int sort_idle(const void *a, const void *b) | ||
162 | { | ||
163 | const struct cgit_repo *r1 = a; | ||
164 | const struct cgit_repo *r2 = b; | ||
165 | time_t t1, t2; | ||
166 | |||
167 | t1 = t2 = 0; | ||
168 | get_repo_modtime(r1, &t1); | ||
169 | get_repo_modtime(r2, &t2); | ||
170 | return t2 - t1; | ||
171 | } | ||
172 | |||
173 | struct sortcolumn { | ||
174 | const char *name; | ||
175 | int (*fn)(const void *a, const void *b); | ||
176 | }; | ||
177 | |||
178 | struct sortcolumn sortcolumn[] = { | ||
179 | {"name", sort_name}, | ||
180 | {"desc", sort_desc}, | ||
181 | {"owner", sort_owner}, | ||
182 | {"idle", sort_idle}, | ||
183 | {NULL, NULL} | ||
184 | }; | ||
185 | |||
186 | int sort_repolist(char *field) | ||
187 | { | ||
188 | struct sortcolumn *column; | ||
189 | |||
190 | for (column = &sortcolumn[0]; column->name; column++) { | ||
191 | if (strcmp(field, column->name)) | ||
192 | continue; | ||
193 | qsort(cgit_repolist.repos, cgit_repolist.count, | ||
194 | sizeof(struct cgit_repo), column->fn); | ||
195 | return 1; | ||
196 | } | ||
197 | return 0; | ||
198 | } | ||
199 | |||
200 | |||
94 | void cgit_print_repolist() | 201 | void cgit_print_repolist() |
95 | { | 202 | { |
96 | int i, columns = 4, hits = 0, header = 0; | 203 | int i, columns = 4, hits = 0, header = 0; |
97 | char *last_group = NULL; | 204 | char *last_group = NULL; |
205 | int sorted = 0; | ||
98 | 206 | ||
99 | if (ctx.cfg.enable_index_links) | 207 | if (ctx.cfg.enable_index_links) |
100 | columns++; | 208 | columns++; |
@@ -107,6 +215,9 @@ void cgit_print_repolist() | |||
107 | if (ctx.cfg.index_header) | 215 | if (ctx.cfg.index_header) |
108 | html_include(ctx.cfg.index_header); | 216 | html_include(ctx.cfg.index_header); |
109 | 217 | ||
218 | if(ctx.qry.sort) | ||
219 | sorted = sort_repolist(ctx.qry.sort); | ||
220 | |||
110 | html("<table summary='repository list' class='list nowrap'>"); | 221 | html("<table summary='repository list' class='list nowrap'>"); |
111 | for (i=0; i<cgit_repolist.count; i++) { | 222 | for (i=0; i<cgit_repolist.count; i++) { |
112 | ctx.repo = &cgit_repolist.repos[i]; | 223 | ctx.repo = &cgit_repolist.repos[i]; |
@@ -119,10 +230,11 @@ void cgit_print_repolist() | |||
119 | continue; | 230 | continue; |
120 | if (!header++) | 231 | if (!header++) |
121 | print_header(columns); | 232 | print_header(columns); |
122 | if ((last_group == NULL && ctx.repo->group != NULL) || | 233 | if (!sorted && |
234 | ((last_group == NULL && ctx.repo->group != NULL) || | ||
123 | (last_group != NULL && ctx.repo->group == NULL) || | 235 | (last_group != NULL && ctx.repo->group == NULL) || |
124 | (last_group != NULL && ctx.repo->group != NULL && | 236 | (last_group != NULL && ctx.repo->group != NULL && |
125 | strcmp(ctx.repo->group, last_group))) { | 237 | strcmp(ctx.repo->group, last_group)))) { |
126 | htmlf("<tr class='nohover'><td colspan='%d' class='repogroup'>", | 238 | htmlf("<tr class='nohover'><td colspan='%d' class='repogroup'>", |
127 | columns); | 239 | columns); |
128 | html_txt(ctx.repo->group); | 240 | html_txt(ctx.repo->group); |
@@ -130,7 +242,7 @@ void cgit_print_repolist() | |||
130 | last_group = ctx.repo->group; | 242 | last_group = ctx.repo->group; |
131 | } | 243 | } |
132 | htmlf("<tr><td class='%s'>", | 244 | htmlf("<tr><td class='%s'>", |
133 | ctx.repo->group ? "sublevel-repo" : "toplevel-repo"); | 245 | !sorted && ctx.repo->group ? "sublevel-repo" : "toplevel-repo"); |
134 | cgit_summary_link(ctx.repo->name, ctx.repo->name, NULL, NULL); | 246 | cgit_summary_link(ctx.repo->name, ctx.repo->name, NULL, NULL); |
135 | html("</td><td>"); | 247 | html("</td><td>"); |
136 | html_link_open(cgit_repourl(ctx.repo->url), NULL, NULL); | 248 | html_link_open(cgit_repourl(ctx.repo->url), NULL, NULL); |
@@ -145,7 +257,7 @@ void cgit_print_repolist() | |||
145 | html("<td>"); | 257 | html("<td>"); |
146 | cgit_summary_link("summary", NULL, "button", NULL); | 258 | cgit_summary_link("summary", NULL, "button", NULL); |
147 | cgit_log_link("log", NULL, "button", NULL, NULL, NULL, | 259 | cgit_log_link("log", NULL, "button", NULL, NULL, NULL, |
148 | 0, NULL, NULL); | 260 | 0, NULL, NULL, ctx.qry.showmsg); |
149 | cgit_tree_link("tree", NULL, "button", NULL, NULL, NULL); | 261 | cgit_tree_link("tree", NULL, "button", NULL, NULL, NULL); |
150 | html("</td>"); | 262 | html("</td>"); |
151 | } | 263 | } |