]> gitweb.ps.run Git - ps-cgit/blobdiff - shared.c
Add submodule links in tree listing
[ps-cgit] / shared.c
index e4595fabe0cd2f1650fa1566adfb67c1568b60e3..19d2df04d9071dea4cd7bf238e6090c6f89a46ac 100644 (file)
--- a/shared.c
+++ b/shared.c
@@ -8,16 +8,20 @@
 
 #include "cgit.h"
 
-char *cgit_root         = "/usr/src/git";
+struct repolist cgit_repolist;
+struct repoinfo *cgit_repo;
+
 char *cgit_root_title   = "Git repository browser";
 char *cgit_css          = "/cgit.css";
 char *cgit_logo         = "/git-logo.png";
 char *cgit_logo_link    = "http://www.kernel.org/pub/software/scm/git/docs/";
+char *cgit_module_link  = "./?repo=%s&page=commit&id=%s";
 char *cgit_virtual_root = NULL;
 
 char *cgit_cache_root   = "/var/cache/cgit";
 
 int cgit_nocache               =  0;
+int cgit_snapshots             =  0;
 int cgit_max_lock_attempts     =  5;
 int cgit_cache_root_ttl        =  5;
 int cgit_cache_repo_ttl        =  5;
@@ -25,6 +29,8 @@ int cgit_cache_dynamic_ttl     =  5;
 int cgit_cache_static_ttl      = -1;
 int cgit_cache_max_create_time =  5;
 
+int cgit_max_msg_len = 60;
+
 char *cgit_repo_name    = NULL;
 char *cgit_repo_desc    = NULL;
 char *cgit_repo_owner   = NULL;
@@ -39,15 +45,54 @@ char *cgit_query_head   = NULL;
 char *cgit_query_search = NULL;
 char *cgit_query_sha1   = NULL;
 char *cgit_query_sha2   = NULL;
+char *cgit_query_path   = NULL;
+char *cgit_query_name   = NULL;
 int   cgit_query_ofs    = 0;
 
 int htmlfd = 0;
 
+int chk_zero(int result, char *msg)
+{
+       if (result != 0)
+               die("%s: %s", msg, strerror(errno));
+       return result;
+}
+
+int chk_positive(int result, char *msg)
+{
+       if (result <= 0)
+               die("%s: %s", msg, strerror(errno));
+       return result;
+}
+
+struct repoinfo *add_repo(const char *url)
+{
+       struct repoinfo *ret;
+
+       if (++cgit_repolist.count > cgit_repolist.length) {
+               if (cgit_repolist.length == 0)
+                       cgit_repolist.length = 8;
+               else
+                       cgit_repolist.length *= 2;
+               cgit_repolist.repos = xrealloc(cgit_repolist.repos, 
+                                              cgit_repolist.length * 
+                                              sizeof(struct repoinfo));
+       }
+
+       ret = &cgit_repolist.repos[cgit_repolist.count-1];
+       ret->url = xstrdup(url);
+       ret->name = ret->url;
+       ret->path = NULL;
+       ret->desc = NULL;
+       ret->owner = NULL;
+       ret->snapshots = cgit_snapshots;
+       ret->module_link = cgit_module_link;
+       return ret;
+}
+
 void cgit_global_config_cb(const char *name, const char *value)
 {
-       if (!strcmp(name, "root"))
-               cgit_root = xstrdup(value);
-       else if (!strcmp(name, "root-title"))
+       if (!strcmp(name, "root-title"))
                cgit_root_title = xstrdup(value);
        else if (!strcmp(name, "css"))
                cgit_css = xstrdup(value);
@@ -55,10 +100,14 @@ void cgit_global_config_cb(const char *name, const char *value)
                cgit_logo = xstrdup(value);
        else if (!strcmp(name, "logo-link"))
                cgit_logo_link = xstrdup(value);
+       else if (!strcmp(name, "module-link"))
+               cgit_module_link = xstrdup(value);
        else if (!strcmp(name, "virtual-root"))
                cgit_virtual_root = xstrdup(value);
        else if (!strcmp(name, "nocache"))
                cgit_nocache = atoi(value);
+       else if (!strcmp(name, "snapshots"))
+               cgit_snapshots = atoi(value);
        else if (!strcmp(name, "cache-root"))
                cgit_cache_root = xstrdup(value);
        else if (!strcmp(name, "cache-root-ttl"))
@@ -69,6 +118,22 @@ void cgit_global_config_cb(const char *name, const char *value)
                cgit_cache_static_ttl = atoi(value);
        else if (!strcmp(name, "cache-dynamic-ttl"))
                cgit_cache_dynamic_ttl = atoi(value);
+       else if (!strcmp(name, "max-message-length"))
+               cgit_max_msg_len = atoi(value);
+       else if (!strcmp(name, "repo.url"))
+               cgit_repo = add_repo(value);
+       else if (!strcmp(name, "repo.name"))
+               cgit_repo->name = xstrdup(value);
+       else if (cgit_repo && !strcmp(name, "repo.path"))
+               cgit_repo->path = xstrdup(value);
+       else if (cgit_repo && !strcmp(name, "repo.desc"))
+               cgit_repo->desc = xstrdup(value);
+       else if (cgit_repo && !strcmp(name, "repo.owner"))
+               cgit_repo->owner = xstrdup(value);
+       else if (cgit_repo && !strcmp(name, "repo.snapshots"))
+               cgit_repo->snapshots = atoi(value);
+       else if (cgit_repo && !strcmp(name, "repo.module-link"))
+               cgit_repo->module_link= xstrdup(value);
 }
 
 void cgit_repo_config_cb(const char *name, const char *value)
@@ -100,6 +165,10 @@ void cgit_querystring_cb(const char *name, const char *value)
                cgit_query_has_sha1 = 1;
        } else if (!strcmp(name, "ofs")) {
                cgit_query_ofs = atoi(value);
+       } else if (!strcmp(name, "path")) {
+               cgit_query_path = xstrdup(value);
+       } else if (!strcmp(name, "name")) {
+               cgit_query_name = xstrdup(value);
        }
 }