summaryrefslogtreecommitdiffabout
path: root/scan-tree.c
Unidiff
Diffstat (limited to 'scan-tree.c') (more/less context) (ignore whitespace changes)
-rw-r--r--scan-tree.c16
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
@@ -14,94 +14,82 @@ static int is_git_dir(const char *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
38char *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
51static void add_repo(const char *base, const char *path) 38static 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
90static void scan_path(const char *base, const char *path) 78static 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) {