aboutsummaryrefslogtreecommitdiffstats
path: root/cgit.h
diff options
context:
space:
mode:
authorGravatar Jason A. Donenfeld <Jason@zx2c4.com>2014-01-15 05:49:31 (JST)
committerGravatar Jason A. Donenfeld <Jason@zx2c4.com>2014-01-16 10:28:12 (JST)
commitd6e9200cc35411f3f27426b608bcfdef9348e6d3 (patch)
tree9cdd921b03465458d10b99ff4357f79a810501c0 /cgit.h
parent3741254a6989b2837cd8d20480f152f0096bcb9a (diff)
downloadcgit-d6e9200cc35411f3f27426b608bcfdef9348e6d3.zip
cgit-d6e9200cc35411f3f27426b608bcfdef9348e6d3.tar.gz
auth: add basic authentication filter framework
This leverages the new lua support. See filters/simple-authentication.lua for explaination of how this works. There is also additional documentation in cgitrc.5.txt. Though this is a cookie-based approach, cgit's caching mechanism is preserved for authenticated pages. Very plugable and extendable depending on user needs. The sample script uses an HMAC-SHA1 based cookie to store the currently logged in user, with an expiration date. Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'cgit.h')
-rw-r--r--cgit.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/cgit.h b/cgit.h
index e200a06..496d0f6 100644
--- a/cgit.h
+++ b/cgit.h
@@ -53,7 +53,7 @@ typedef void (*filepair_fn)(struct diff_filepair *pair);
53typedef void (*linediff_fn)(char *line, int len); 53typedef void (*linediff_fn)(char *line, int len);
54 54
55typedef enum { 55typedef enum {
56 ABOUT, COMMIT, SOURCE, EMAIL 56 ABOUT, COMMIT, SOURCE, EMAIL, AUTH
57} filter_type; 57} filter_type;
58 58
59struct cgit_filter { 59struct cgit_filter {
@@ -252,6 +252,7 @@ struct cgit_config {
252 struct cgit_filter *commit_filter; 252 struct cgit_filter *commit_filter;
253 struct cgit_filter *source_filter; 253 struct cgit_filter *source_filter;
254 struct cgit_filter *email_filter; 254 struct cgit_filter *email_filter;
255 struct cgit_filter *auth_filter;
255}; 256};
256 257
257struct cgit_page { 258struct cgit_page {
@@ -278,6 +279,10 @@ struct cgit_environment {
278 const char *script_name; 279 const char *script_name;
279 const char *server_name; 280 const char *server_name;
280 const char *server_port; 281 const char *server_port;
282 const char *http_cookie;
283 const char *http_referer;
284 unsigned int content_length;
285 int authenticated;
281}; 286};
282 287
283struct cgit_context { 288struct cgit_context {