summaryrefslogtreecommitdiffabout
authorLars Hjemli <hjemli@gmail.com>2010-02-28 17:40:02 (UTC)
committer Lars Hjemli <hjemli@gmail.com>2010-02-28 17:40:02 (UTC)
commit31ba37c0a44f152005fbb8ab49c05462fb741fd6 (patch) (unidiff)
tree1270e4a66e4a436c7802795ec3c420dad4fa1894
parentc151ce61d87c577ac8a067523a406938c557d650 (diff)
downloadcgit-31ba37c0a44f152005fbb8ab49c05462fb741fd6.zip
cgit-31ba37c0a44f152005fbb8ab49c05462fb741fd6.tar.gz
cgit-31ba37c0a44f152005fbb8ab49c05462fb741fd6.tar.bz2
scan-tree: add test for noweb-file in repo dir
If such a file exists, the repo is not added to the repolist. Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--scan-tree.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/scan-tree.c b/scan-tree.c
index dbca797..1e18f3c 100644
--- a/scan-tree.c
+++ b/scan-tree.c
@@ -11,96 +11,98 @@ static int is_git_dir(const char *path)
11 static char buf[MAX_PATH]; 11 static char buf[MAX_PATH];
12 12
13 if (snprintf(buf, MAX_PATH, "%s/objects", path) >= MAX_PATH) { 13 if (snprintf(buf, MAX_PATH, "%s/objects", path) >= MAX_PATH) {
14 fprintf(stderr, "Insanely long path: %s\n", path); 14 fprintf(stderr, "Insanely long path: %s\n", path);
15 return 0; 15 return 0;
16 } 16 }
17 if (stat(buf, &st)) { 17 if (stat(buf, &st)) {
18 if (errno != ENOENT) 18 if (errno != ENOENT)
19 fprintf(stderr, "Error checking path %s: %s (%d)\n", 19 fprintf(stderr, "Error checking path %s: %s (%d)\n",
20 path, strerror(errno), errno); 20 path, strerror(errno), errno);
21 return 0; 21 return 0;
22 } 22 }
23 if (!S_ISDIR(st.st_mode)) 23 if (!S_ISDIR(st.st_mode))
24 return 0; 24 return 0;
25 25
26 sprintf(buf, "%s/HEAD", path); 26 sprintf(buf, "%s/HEAD", path);
27 if (stat(buf, &st)) { 27 if (stat(buf, &st)) {
28 if (errno != ENOENT) 28 if (errno != ENOENT)
29 fprintf(stderr, "Error checking path %s: %s (%d)\n", 29 fprintf(stderr, "Error checking path %s: %s (%d)\n",
30 path, strerror(errno), errno); 30 path, strerror(errno), errno);
31 return 0; 31 return 0;
32 } 32 }
33 if (!S_ISREG(st.st_mode)) 33 if (!S_ISREG(st.st_mode))
34 return 0; 34 return 0;
35 35
36 return 1; 36 return 1;
37} 37}
38 38
39struct cgit_repo *repo; 39struct cgit_repo *repo;
40repo_config_fn config_fn; 40repo_config_fn config_fn;
41 41
42static void repo_config(const char *name, const char *value) 42static void repo_config(const char *name, const char *value)
43{ 43{
44 config_fn(repo, name, value); 44 config_fn(repo, name, value);
45} 45}
46 46
47static void add_repo(const char *base, const char *path, repo_config_fn fn) 47static void add_repo(const char *base, const char *path, repo_config_fn fn)
48{ 48{
49 struct stat st; 49 struct stat st;
50 struct passwd *pwd; 50 struct passwd *pwd;
51 char *p; 51 char *p;
52 size_t size; 52 size_t size;
53 53
54 if (stat(path, &st)) { 54 if (stat(path, &st)) {
55 fprintf(stderr, "Error accessing %s: %s (%d)\n", 55 fprintf(stderr, "Error accessing %s: %s (%d)\n",
56 path, strerror(errno), errno); 56 path, strerror(errno), errno);
57 return; 57 return;
58 } 58 }
59 if (!stat(fmt("%s/noweb", path), &st))
60 return;
59 if ((pwd = getpwuid(st.st_uid)) == NULL) { 61 if ((pwd = getpwuid(st.st_uid)) == NULL) {
60 fprintf(stderr, "Error reading owner-info for %s: %s (%d)\n", 62 fprintf(stderr, "Error reading owner-info for %s: %s (%d)\n",
61 path, strerror(errno), errno); 63 path, strerror(errno), errno);
62 return; 64 return;
63 } 65 }
64 if (base == path) 66 if (base == path)
65 p = fmt("%s", path); 67 p = fmt("%s", path);
66 else 68 else
67 p = fmt("%s", path + strlen(base) + 1); 69 p = fmt("%s", path + strlen(base) + 1);
68 70
69 if (!strcmp(p + strlen(p) - 5, "/.git")) 71 if (!strcmp(p + strlen(p) - 5, "/.git"))
70 p[strlen(p) - 5] = '\0'; 72 p[strlen(p) - 5] = '\0';
71 73
72 repo = cgit_add_repo(xstrdup(p)); 74 repo = cgit_add_repo(xstrdup(p));
73 repo->name = repo->url; 75 repo->name = repo->url;
74 repo->path = xstrdup(path); 76 repo->path = xstrdup(path);
75 p = (pwd && pwd->pw_gecos) ? strchr(pwd->pw_gecos, ',') : NULL; 77 p = (pwd && pwd->pw_gecos) ? strchr(pwd->pw_gecos, ',') : NULL;
76 if (p) 78 if (p)
77 *p = '\0'; 79 *p = '\0';
78 repo->owner = (pwd ? xstrdup(pwd->pw_gecos ? pwd->pw_gecos : pwd->pw_name) : ""); 80 repo->owner = (pwd ? xstrdup(pwd->pw_gecos ? pwd->pw_gecos : pwd->pw_name) : "");
79 81
80 p = fmt("%s/description", path); 82 p = fmt("%s/description", path);
81 if (!stat(p, &st)) 83 if (!stat(p, &st))
82 readfile(p, &repo->desc, &size); 84 readfile(p, &repo->desc, &size);
83 85
84 p = fmt("%s/README.html", path); 86 p = fmt("%s/README.html", path);
85 if (!stat(p, &st)) 87 if (!stat(p, &st))
86 repo->readme = "README.html"; 88 repo->readme = "README.html";
87 89
88 p = fmt("%s/cgitrc", path); 90 p = fmt("%s/cgitrc", path);
89 if (!stat(p, &st)) { 91 if (!stat(p, &st)) {
90 config_fn = fn; 92 config_fn = fn;
91 parse_configfile(xstrdup(p), &repo_config); 93 parse_configfile(xstrdup(p), &repo_config);
92 } 94 }
93} 95}
94 96
95static void scan_path(const char *base, const char *path, repo_config_fn fn) 97static void scan_path(const char *base, const char *path, repo_config_fn fn)
96{ 98{
97 DIR *dir; 99 DIR *dir;
98 struct dirent *ent; 100 struct dirent *ent;
99 char *buf; 101 char *buf;
100 struct stat st; 102 struct stat st;
101 103
102 if (is_git_dir(path)) { 104 if (is_git_dir(path)) {
103 add_repo(base, path, fn); 105 add_repo(base, path, fn);
104 return; 106 return;
105 } 107 }
106 if (is_git_dir(fmt("%s/.git", path))) { 108 if (is_git_dir(fmt("%s/.git", path))) {