diff options
| author | Lars Hjemli | 2007-02-03 15:02:55 +0100 |
|---|---|---|
| committer | Lars Hjemli | 2007-02-04 21:47:46 +0100 |
| commit | ce1c7336e5b3e3ebe8f8c9029c405aedec98c208 (patch) | |
| tree | b51a59a9552b32519cf694c0f5dc68c5a739069c /shared.c | |
| parent | ebd7b0fbc378e9beca0b275c5cd9150c930bde56 (diff) | |
| download | cgit-ce1c7336e5b3e3ebe8f8c9029c405aedec98c208.tar.gz cgit-ce1c7336e5b3e3ebe8f8c9029c405aedec98c208.tar.bz2 cgit-ce1c7336e5b3e3ebe8f8c9029c405aedec98c208.zip | |
Read repo-info from /etc/cgitrc
This makes cgit read all repo-info from the configfile, instead of scanning for
possible git-dirs below a common root path. This is primarily done to get
better security (separate physical path from logical repo-name).
In /etc/cgitrc each repo is registered with the following keys:
repo.url
repo.name
repo.path
repo.desc
repo.owner
Note:
*Required keys are repo.url and repo.path, all others are optional
*Each occurrence of repo.url starts a new repository registration
*Default value for repo.name is taken from repo.url
*The value of repo.url cannot contain characters with special meaning for
urls (i.e. one of /?%&), while repo.name can contain anything.
Example:
repo.url=cgit-pub
repo.name=cgit/public
repo.path=/pub/git/cgit
repo.desc=My public cgit repo
repo.owner=Lars Hjemli
repo.url=cgit-priv
repo.name=cgit/private
repo.path=/home/larsh/src/cgit/.git
repo.desc=My private cgit repo
repo.owner=Lars Hjemli
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to 'shared.c')
| -rw-r--r-- | shared.c | 41 |
1 files changed, 37 insertions, 4 deletions
| @@ -8,7 +8,9 @@ | |||
| 8 | 8 | ||
| 9 | #include "cgit.h" | 9 | #include "cgit.h" |
| 10 | 10 | ||
| 11 | char *cgit_root = "/usr/src/git"; | 11 | struct repolist cgit_repolist; |
| 12 | struct repoinfo *cgit_repo; | ||
| 13 | |||
| 12 | char *cgit_root_title = "Git repository browser"; | 14 | char *cgit_root_title = "Git repository browser"; |
| 13 | char *cgit_css = "/cgit.css"; | 15 | char *cgit_css = "/cgit.css"; |
| 14 | char *cgit_logo = "/git-logo.png"; | 16 | char *cgit_logo = "/git-logo.png"; |
| @@ -46,11 +48,32 @@ int cgit_query_ofs = 0; | |||
| 46 | 48 | ||
| 47 | int htmlfd = 0; | 49 | int htmlfd = 0; |
| 48 | 50 | ||
| 51 | struct repoinfo *add_repo(const char *url) | ||
| 52 | { | ||
| 53 | struct repoinfo *ret; | ||
| 54 | |||
| 55 | if (++cgit_repolist.count > cgit_repolist.length) { | ||
| 56 | if (cgit_repolist.length == 0) | ||
| 57 | cgit_repolist.length = 8; | ||
| 58 | else | ||
| 59 | cgit_repolist.length *= 2; | ||
| 60 | cgit_repolist.repos = xrealloc(cgit_repolist.repos, | ||
| 61 | cgit_repolist.length * | ||
| 62 | sizeof(struct repoinfo)); | ||
| 63 | } | ||
| 64 | |||
| 65 | ret = &cgit_repolist.repos[cgit_repolist.count-1]; | ||
| 66 | ret->url = xstrdup(url); | ||
| 67 | ret->name = ret->url; | ||
| 68 | ret->path = NULL; | ||
| 69 | ret->desc = NULL; | ||
| 70 | ret->owner = NULL; | ||
| 71 | return ret; | ||
| 72 | } | ||
| 73 | |||
| 49 | void cgit_global_config_cb(const char *name, const char *value) | 74 | void cgit_global_config_cb(const char *name, const char *value) |
| 50 | { | 75 | { |
| 51 | if (!strcmp(name, "root")) | 76 | if (!strcmp(name, "root-title")) |
| 52 | cgit_root = xstrdup(value); | ||
| 53 | else if (!strcmp(name, "root-title")) | ||
| 54 | cgit_root_title = xstrdup(value); | 77 | cgit_root_title = xstrdup(value); |
| 55 | else if (!strcmp(name, "css")) | 78 | else if (!strcmp(name, "css")) |
| 56 | cgit_css = xstrdup(value); | 79 | cgit_css = xstrdup(value); |
| @@ -74,6 +97,16 @@ void cgit_global_config_cb(const char *name, const char *value) | |||
| 74 | cgit_cache_dynamic_ttl = atoi(value); | 97 | cgit_cache_dynamic_ttl = atoi(value); |
| 75 | else if (!strcmp(name, "max-message-length")) | 98 | else if (!strcmp(name, "max-message-length")) |
| 76 | cgit_max_msg_len = atoi(value); | 99 | cgit_max_msg_len = atoi(value); |
| 100 | else if (!strcmp(name, "repo.url")) | ||
| 101 | cgit_repo = add_repo(value); | ||
| 102 | else if (!strcmp(name, "repo.name")) | ||
| 103 | cgit_repo->name = xstrdup(value); | ||
| 104 | else if (cgit_repo && !strcmp(name, "repo.path")) | ||
| 105 | cgit_repo->path = xstrdup(value); | ||
| 106 | else if (cgit_repo && !strcmp(name, "repo.desc")) | ||
| 107 | cgit_repo->desc = xstrdup(value); | ||
| 108 | else if (cgit_repo && !strcmp(name, "repo.owner")) | ||
| 109 | cgit_repo->owner = xstrdup(value); | ||
| 77 | } | 110 | } |
| 78 | 111 | ||
| 79 | void cgit_repo_config_cb(const char *name, const char *value) | 112 | void cgit_repo_config_cb(const char *name, const char *value) |
