-rw-r--r-- | scan-tree.c | 16 |
1 files changed, 2 insertions, 14 deletions
diff --git a/scan-tree.c b/scan-tree.c index 47f3988..95dc65b 100644 --- a/scan-tree.c +++ b/scan-tree.c | |||
@@ -1,137 +1,125 @@ | |||
1 | #include "cgit.h" | 1 | #include "cgit.h" |
2 | #include "html.h" | 2 | #include "html.h" |
3 | 3 | ||
4 | #define MAX_PATH 4096 | 4 | #define MAX_PATH 4096 |
5 | 5 | ||
6 | /* return 1 if path contains a objects/ directory and a HEAD file */ | 6 | /* return 1 if path contains a objects/ directory and a HEAD file */ |
7 | static int is_git_dir(const char *path) | 7 | static int is_git_dir(const char *path) |
8 | { | 8 | { |
9 | struct stat st; | 9 | struct stat st; |
10 | static char buf[MAX_PATH]; | 10 | static char buf[MAX_PATH]; |
11 | 11 | ||
12 | if (snprintf(buf, MAX_PATH, "%s/objects", path) >= MAX_PATH) { | 12 | if (snprintf(buf, MAX_PATH, "%s/objects", path) >= MAX_PATH) { |
13 | fprintf(stderr, "Insanely long path: %s\n", path); | 13 | fprintf(stderr, "Insanely long path: %s\n", path); |
14 | return 0; | 14 | return 0; |
15 | } | 15 | } |
16 | if (stat(buf, &st)) { | 16 | if (stat(buf, &st)) { |
17 | if (errno != ENOENT) | 17 | if (errno != ENOENT) |
18 | fprintf(stderr, "Error checking path %s: %s (%d)\n", | 18 | fprintf(stderr, "Error checking path %s: %s (%d)\n", |
19 | path, strerror(errno), errno); | 19 | path, strerror(errno), errno); |
20 | return 0; | 20 | return 0; |
21 | } | 21 | } |
22 | if (!S_ISDIR(st.st_mode)) | 22 | if (!S_ISDIR(st.st_mode)) |
23 | return 0; | 23 | return 0; |
24 | 24 | ||
25 | sprintf(buf, "%s/HEAD", path); | 25 | sprintf(buf, "%s/HEAD", path); |
26 | if (stat(buf, &st)) { | 26 | if (stat(buf, &st)) { |
27 | if (errno != ENOENT) | 27 | if (errno != ENOENT) |
28 | fprintf(stderr, "Error checking path %s: %s (%d)\n", | 28 | fprintf(stderr, "Error checking path %s: %s (%d)\n", |
29 | path, strerror(errno), errno); | 29 | path, strerror(errno), errno); |
30 | return 0; | 30 | return 0; |
31 | } | 31 | } |
32 | if (!S_ISREG(st.st_mode)) | 32 | if (!S_ISREG(st.st_mode)) |
33 | return 0; | 33 | return 0; |
34 | 34 | ||
35 | return 1; | 35 | return 1; |
36 | } | 36 | } |
37 | 37 | ||
38 | char *readfile(const char *path) | ||
39 | { | ||
40 | FILE *f; | ||
41 | static char buf[MAX_PATH]; | ||
42 | |||
43 | if (!(f = fopen(path, "r"))) | ||
44 | return NULL; | ||
45 | buf[0] = 0; | ||
46 | fgets(buf, MAX_PATH, f); | ||
47 | fclose(f); | ||
48 | return buf; | ||
49 | } | ||
50 | |||
51 | static void add_repo(const char *base, const char *path) | 38 | static void add_repo(const char *base, const char *path) |
52 | { | 39 | { |
53 | struct cgit_repo *repo; | 40 | struct cgit_repo *repo; |
54 | struct stat st; | 41 | struct stat st; |
55 | struct passwd *pwd; | 42 | struct passwd *pwd; |
56 | char *p; | 43 | char *p; |
44 | size_t size; | ||
57 | 45 | ||
58 | if (stat(path, &st)) { | 46 | if (stat(path, &st)) { |
59 | fprintf(stderr, "Error accessing %s: %s (%d)\n", | 47 | fprintf(stderr, "Error accessing %s: %s (%d)\n", |
60 | path, strerror(errno), errno); | 48 | path, strerror(errno), errno); |
61 | return; | 49 | return; |
62 | } | 50 | } |
63 | if ((pwd = getpwuid(st.st_uid)) == NULL) { | 51 | if ((pwd = getpwuid(st.st_uid)) == NULL) { |
64 | fprintf(stderr, "Error reading owner-info for %s: %s (%d)\n", | 52 | fprintf(stderr, "Error reading owner-info for %s: %s (%d)\n", |
65 | path, strerror(errno), errno); | 53 | path, strerror(errno), errno); |
66 | return; | 54 | return; |
67 | } | 55 | } |
68 | if (base == path) | 56 | if (base == path) |
69 | p = fmt("%s", path); | 57 | p = fmt("%s", path); |
70 | else | 58 | else |
71 | p = fmt("%s", path + strlen(base) + 1); | 59 | p = fmt("%s", path + strlen(base) + 1); |
72 | 60 | ||
73 | if (!strcmp(p + strlen(p) - 5, "/.git")) | 61 | if (!strcmp(p + strlen(p) - 5, "/.git")) |
74 | p[strlen(p) - 5] = '\0'; | 62 | p[strlen(p) - 5] = '\0'; |
75 | 63 | ||
76 | repo = cgit_add_repo(xstrdup(p)); | 64 | repo = cgit_add_repo(xstrdup(p)); |
77 | repo->name = repo->url; | 65 | repo->name = repo->url; |
78 | repo->path = xstrdup(path); | 66 | repo->path = xstrdup(path); |
79 | repo->owner = (pwd ? xstrdup(pwd->pw_gecos ? pwd->pw_gecos : pwd->pw_name) : ""); | 67 | repo->owner = (pwd ? xstrdup(pwd->pw_gecos ? pwd->pw_gecos : pwd->pw_name) : ""); |
80 | 68 | ||
81 | p = fmt("%s/description", path); | 69 | p = fmt("%s/description", path); |
82 | if (!stat(p, &st)) | 70 | if (!stat(p, &st)) |
83 | repo->desc = xstrdup(readfile(p)); | 71 | readfile(p, &repo->desc, &size); |
84 | 72 | ||
85 | p = fmt("%s/README.html", path); | 73 | p = fmt("%s/README.html", path); |
86 | if (!stat(p, &st)) | 74 | if (!stat(p, &st)) |
87 | repo->readme = "README.html"; | 75 | repo->readme = "README.html"; |
88 | } | 76 | } |
89 | 77 | ||
90 | static void scan_path(const char *base, const char *path) | 78 | static void scan_path(const char *base, const char *path) |
91 | { | 79 | { |
92 | DIR *dir; | 80 | DIR *dir; |
93 | struct dirent *ent; | 81 | struct dirent *ent; |
94 | char *buf; | 82 | char *buf; |
95 | struct stat st; | 83 | struct stat st; |
96 | 84 | ||
97 | if (is_git_dir(path)) { | 85 | if (is_git_dir(path)) { |
98 | add_repo(base, path); | 86 | add_repo(base, path); |
99 | return; | 87 | return; |
100 | } | 88 | } |
101 | dir = opendir(path); | 89 | dir = opendir(path); |
102 | if (!dir) { | 90 | if (!dir) { |
103 | fprintf(stderr, "Error opening directory %s: %s (%d)\n", | 91 | fprintf(stderr, "Error opening directory %s: %s (%d)\n", |
104 | path, strerror(errno), errno); | 92 | path, strerror(errno), errno); |
105 | return; | 93 | return; |
106 | } | 94 | } |
107 | while((ent = readdir(dir)) != NULL) { | 95 | while((ent = readdir(dir)) != NULL) { |
108 | if (ent->d_name[0] == '.') { | 96 | if (ent->d_name[0] == '.') { |
109 | if (ent->d_name[1] == '\0') | 97 | if (ent->d_name[1] == '\0') |
110 | continue; | 98 | continue; |
111 | if (ent->d_name[1] == '.' && ent->d_name[2] == '\0') | 99 | if (ent->d_name[1] == '.' && ent->d_name[2] == '\0') |
112 | continue; | 100 | continue; |
113 | } | 101 | } |
114 | buf = malloc(strlen(path) + strlen(ent->d_name) + 2); | 102 | buf = malloc(strlen(path) + strlen(ent->d_name) + 2); |
115 | if (!buf) { | 103 | if (!buf) { |
116 | fprintf(stderr, "Alloc error on %s: %s (%d)\n", | 104 | fprintf(stderr, "Alloc error on %s: %s (%d)\n", |
117 | path, strerror(errno), errno); | 105 | path, strerror(errno), errno); |
118 | exit(1); | 106 | exit(1); |
119 | } | 107 | } |
120 | sprintf(buf, "%s/%s", path, ent->d_name); | 108 | sprintf(buf, "%s/%s", path, ent->d_name); |
121 | if (stat(buf, &st)) { | 109 | if (stat(buf, &st)) { |
122 | fprintf(stderr, "Error checking path %s: %s (%d)\n", | 110 | fprintf(stderr, "Error checking path %s: %s (%d)\n", |
123 | buf, strerror(errno), errno); | 111 | buf, strerror(errno), errno); |
124 | free(buf); | 112 | free(buf); |
125 | continue; | 113 | continue; |
126 | } | 114 | } |
127 | if (S_ISDIR(st.st_mode)) | 115 | if (S_ISDIR(st.st_mode)) |
128 | scan_path(base, buf); | 116 | scan_path(base, buf); |
129 | free(buf); | 117 | free(buf); |
130 | } | 118 | } |
131 | closedir(dir); | 119 | closedir(dir); |
132 | } | 120 | } |
133 | 121 | ||
134 | void scan_tree(const char *path) | 122 | void scan_tree(const char *path) |
135 | { | 123 | { |
136 | scan_path(path, path); | 124 | scan_path(path, path); |
137 | } | 125 | } |