ui-blob: Do not accept mimetype from user
[cgit.git] / cgit.h
blob4b4bcf4b9cb30bda303ac9b597313be667e93274
1 #ifndef CGIT_H
2 #define CGIT_H
5 #include <git-compat-util.h>
6 #include <stdbool.h>
8 #include <cache.h>
9 #include <grep.h>
10 #include <object.h>
11 #include <tree.h>
12 #include <commit.h>
13 #include <tag.h>
14 #include <diff.h>
15 #include <diffcore.h>
16 #include <argv-array.h>
17 #include <refs.h>
18 #include <revision.h>
19 #include <log-tree.h>
20 #include <archive.h>
21 #include <string-list.h>
22 #include <xdiff-interface.h>
23 #include <xdiff/xdiff.h>
24 #include <utf8.h>
25 #include <notes.h>
26 #include <graph.h>
28 /* Add isgraph(x) to Git's sane ctype support (see git-compat-util.h) */
29 #undef isgraph
30 #define isgraph(x) (isprint((x)) && !isspace((x)))
33 * Dateformats used on misc. pages
35 #define FMT_LONGDATE "%Y-%m-%d %H:%M:%S (%Z)"
36 #define FMT_SHORTDATE "%Y-%m-%d"
37 #define FMT_ATOMDATE "%Y-%m-%dT%H:%M:%SZ"
41 * Limits used for relative dates
43 #define TM_MIN 60
44 #define TM_HOUR (TM_MIN * 60)
45 #define TM_DAY (TM_HOUR * 24)
46 #define TM_WEEK (TM_DAY * 7)
47 #define TM_YEAR (TM_DAY * 365)
48 #define TM_MONTH (TM_YEAR / 12.0)
52 * Default encoding
54 #define PAGE_ENCODING "UTF-8"
56 typedef void (*configfn)(const char *name, const char *value);
57 typedef void (*filepair_fn)(struct diff_filepair *pair);
58 typedef void (*linediff_fn)(char *line, int len);
60 typedef enum {
61 DIFF_UNIFIED, DIFF_SSDIFF, DIFF_STATONLY
62 } diff_type;
64 typedef enum {
65 ABOUT, COMMIT, SOURCE, EMAIL, AUTH, OWNER
66 } filter_type;
68 struct cgit_filter {
69 int (*open)(struct cgit_filter *, va_list ap);
70 int (*close)(struct cgit_filter *);
71 void (*fprintf)(struct cgit_filter *, FILE *, const char *prefix);
72 void (*cleanup)(struct cgit_filter *);
73 int argument_count;
76 struct cgit_exec_filter {
77 struct cgit_filter base;
78 char *cmd;
79 char **argv;
80 int old_stdout;
81 int pipe_fh[2];
82 int pid;
85 struct cgit_repo {
86 char *url;
87 char *name;
88 char *path;
89 char *desc;
90 char *owner;
91 char *defbranch;
92 char *module_link;
93 struct string_list readme;
94 char *section;
95 char *clone_url;
96 char *logo;
97 char *logo_link;
98 int snapshots;
99 int enable_commit_graph;
100 int enable_log_filecount;
101 int enable_log_linecount;
102 int enable_remote_branches;
103 int enable_subject_links;
104 int max_stats;
105 int branch_sort;
106 int commit_sort;
107 time_t mtime;
108 struct cgit_filter *about_filter;
109 struct cgit_filter *commit_filter;
110 struct cgit_filter *source_filter;
111 struct cgit_filter *email_filter;
112 struct cgit_filter *owner_filter;
113 struct string_list submodules;
114 int hide;
115 int ignore;
118 typedef void (*repo_config_fn)(struct cgit_repo *repo, const char *name,
119 const char *value);
121 struct cgit_repolist {
122 int length;
123 int count;
124 struct cgit_repo *repos;
127 struct commitinfo {
128 struct commit *commit;
129 char *author;
130 char *author_email;
131 unsigned long author_date;
132 char *committer;
133 char *committer_email;
134 unsigned long committer_date;
135 char *subject;
136 char *msg;
137 char *msg_encoding;
140 struct taginfo {
141 char *tagger;
142 char *tagger_email;
143 unsigned long tagger_date;
144 char *msg;
147 struct refinfo {
148 const char *refname;
149 struct object *object;
150 union {
151 struct taginfo *tag;
152 struct commitinfo *commit;
156 struct reflist {
157 struct refinfo **refs;
158 int alloc;
159 int count;
162 struct cgit_query {
163 int has_symref;
164 int has_sha1;
165 int has_difftype;
166 char *raw;
167 char *repo;
168 char *page;
169 char *search;
170 char *grep;
171 char *head;
172 char *sha1;
173 char *sha2;
174 char *path;
175 char *name;
176 char *url;
177 char *period;
178 int ofs;
179 int nohead;
180 char *sort;
181 int showmsg;
182 diff_type difftype;
183 int show_all;
184 int context;
185 int ignorews;
186 int follow;
187 char *vpath;
190 struct cgit_config {
191 char *agefile;
192 char *cache_root;
193 char *clone_prefix;
194 char *clone_url;
195 char *css;
196 char *favicon;
197 char *footer;
198 char *head_include;
199 char *header;
200 char *index_header;
201 char *index_info;
202 char *logo;
203 char *logo_link;
204 char *mimetype_file;
205 char *module_link;
206 char *project_list;
207 struct string_list readme;
208 char *robots;
209 char *root_title;
210 char *root_desc;
211 char *root_readme;
212 char *script_name;
213 char *section;
214 char *repository_sort;
215 char *virtual_root; /* Always ends with '/'. */
216 char *strict_export;
217 int cache_size;
218 int cache_dynamic_ttl;
219 int cache_max_create_time;
220 int cache_repo_ttl;
221 int cache_root_ttl;
222 int cache_scanrc_ttl;
223 int cache_static_ttl;
224 int cache_about_ttl;
225 int cache_snapshot_ttl;
226 int case_sensitive_sort;
227 int embedded;
228 int enable_filter_overrides;
229 int enable_follow_links;
230 int enable_http_clone;
231 int enable_index_links;
232 int enable_index_owner;
233 int enable_commit_graph;
234 int enable_log_filecount;
235 int enable_log_linecount;
236 int enable_remote_branches;
237 int enable_subject_links;
238 int enable_tree_linenumbers;
239 int enable_git_config;
240 int local_time;
241 int max_atom_items;
242 int max_repo_count;
243 int max_commit_count;
244 int max_lock_attempts;
245 int max_msg_len;
246 int max_repodesc_len;
247 int max_blob_size;
248 int max_stats;
249 int nocache;
250 int noplainemail;
251 int noheader;
252 int renamelimit;
253 int remove_suffix;
254 int scan_hidden_path;
255 int section_from_path;
256 int snapshots;
257 int section_sort;
258 int summary_branches;
259 int summary_log;
260 int summary_tags;
261 diff_type difftype;
262 int branch_sort;
263 int commit_sort;
264 struct string_list mimetypes;
265 struct cgit_filter *about_filter;
266 struct cgit_filter *commit_filter;
267 struct cgit_filter *source_filter;
268 struct cgit_filter *email_filter;
269 struct cgit_filter *owner_filter;
270 struct cgit_filter *auth_filter;
273 struct cgit_page {
274 time_t modified;
275 time_t expires;
276 size_t size;
277 const char *mimetype;
278 const char *charset;
279 const char *filename;
280 const char *etag;
281 const char *title;
282 int status;
283 const char *statusmsg;
286 struct cgit_environment {
287 const char *cgit_config;
288 const char *http_host;
289 const char *https;
290 const char *no_http;
291 const char *path_info;
292 const char *query_string;
293 const char *request_method;
294 const char *script_name;
295 const char *server_name;
296 const char *server_port;
297 const char *http_cookie;
298 const char *http_referer;
299 unsigned int content_length;
300 int authenticated;
303 struct cgit_context {
304 struct cgit_environment env;
305 struct cgit_query qry;
306 struct cgit_config cfg;
307 struct cgit_repo *repo;
308 struct cgit_page page;
311 typedef int (*write_archive_fn_t)(const char *, const char *);
313 struct cgit_snapshot_format {
314 const char *suffix;
315 const char *mimetype;
316 write_archive_fn_t write_func;
317 int bit;
320 extern const char *cgit_version;
322 extern struct cgit_repolist cgit_repolist;
323 extern struct cgit_context ctx;
324 extern const struct cgit_snapshot_format cgit_snapshot_formats[];
326 extern char *cgit_default_repo_desc;
327 extern struct cgit_repo *cgit_add_repo(const char *url);
328 extern struct cgit_repo *cgit_get_repoinfo(const char *url);
329 extern void cgit_repo_config_cb(const char *name, const char *value);
331 extern int chk_zero(int result, char *msg);
332 extern int chk_positive(int result, char *msg);
333 extern int chk_non_negative(int result, char *msg);
335 extern char *trim_end(const char *str, char c);
336 extern char *ensure_end(const char *str, char c);
337 extern char *strlpart(char *txt, int maxlen);
338 extern char *strrpart(char *txt, int maxlen);
340 extern void strbuf_ensure_end(struct strbuf *sb, char c);
342 extern void cgit_add_ref(struct reflist *list, struct refinfo *ref);
343 extern void cgit_free_reflist_inner(struct reflist *list);
344 extern int cgit_refs_cb(const char *refname, const struct object_id *oid,
345 int flags, void *cb_data);
347 extern void *cgit_free_commitinfo(struct commitinfo *info);
349 void cgit_diff_tree_cb(struct diff_queue_struct *q,
350 struct diff_options *options, void *data);
352 extern int cgit_diff_files(const unsigned char *old_sha1,
353 const unsigned char *new_sha1,
354 unsigned long *old_size, unsigned long *new_size,
355 int *binary, int context, int ignorews,
356 linediff_fn fn);
358 extern void cgit_diff_tree(const unsigned char *old_sha1,
359 const unsigned char *new_sha1,
360 filepair_fn fn, const char *prefix, int ignorews);
362 extern void cgit_diff_commit(struct commit *commit, filepair_fn fn,
363 const char *prefix);
365 __attribute__((format (printf,1,2)))
366 extern char *fmt(const char *format,...);
368 __attribute__((format (printf,1,2)))
369 extern char *fmtalloc(const char *format,...);
371 extern struct commitinfo *cgit_parse_commit(struct commit *commit);
372 extern struct taginfo *cgit_parse_tag(struct tag *tag);
373 extern void cgit_parse_url(const char *url);
375 extern const char *cgit_repobasename(const char *reponame);
377 extern int cgit_parse_snapshots_mask(const char *str);
379 extern int cgit_open_filter(struct cgit_filter *filter, ...);
380 extern int cgit_close_filter(struct cgit_filter *filter);
381 extern void cgit_fprintf_filter(struct cgit_filter *filter, FILE *f, const char *prefix);
382 extern void cgit_exec_filter_init(struct cgit_exec_filter *filter, char *cmd, char **argv);
383 extern struct cgit_filter *cgit_new_filter(const char *cmd, filter_type filtertype);
384 extern void cgit_cleanup_filters(void);
385 extern void cgit_init_filters(void);
387 extern void cgit_prepare_repo_env(struct cgit_repo * repo);
389 extern int readfile(const char *path, char **buf, size_t *size);
391 extern char *expand_macros(const char *txt);
393 extern char *get_mimetype_for_filename(const char *filename);
395 #endif /* CGIT_H */