summaryrefslogtreecommitdiff
path: root/sfeed_frames.c
blob: 57ff3d733b50203fd262ecf914256cbe36a32328 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <time.h>
#include <ctype.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <utime.h>
#include <limits.h>
#include <errno.h>

#include "util.h"

static int showsidebar = 1; /* show sidebar ? */
static FILE *fpindex = NULL, *fpitems = NULL, *fpmenu = NULL;
static FILE *fpcontent = NULL;
static char *line = NULL;
static struct feed *feeds = NULL;

/* print error message to stderr */
static void
die(const char *s) {
	fprintf(stderr, "sfeed_frames: %s\n", s);
	exit(EXIT_FAILURE);
}

static void
cleanup(void) {
	if(fpmenu) {
		fclose(fpmenu);
		fpmenu = NULL;
	}
	if(fpitems) {
		fclose(fpitems);
		fpitems = NULL;
	}
	if(fpindex) {
		fclose(fpindex);
		fpindex = NULL;
	}
	if(fpcontent) {
		fclose(fpcontent);
		fpcontent = NULL;
	}
	free(line); /* free line */
	line = NULL;
	feedsfree(feeds); /* free feeds linked-list */
}

/* print text, ignore tabs, newline and carriage return etc
 * print some HTML 2.0 / XML 1.0 as normal text */
static void
printcontent(const char *s, FILE *fp) {
	const char *p;

	for(p = s; *p; p++) {
		if(*p == '\\') {
			p++;
			if(*p == '\\')
				fputc('\\', fp);
			else if(*p == 't')
				fputc('\t', fp);
			else if(*p == 'n')
				fputc('\n', fp);
			else
				fputc(*p, fp); /* unknown */
		} else {
			fputc(*p, fp);
		}
	}
}

/* TODO: bufsiz - 1 ? */
static size_t
makepathname(const char *path, char *buffer, size_t bufsiz) {
	size_t i = 0, r = 0;

	for(; *path && i < bufsiz - 1; path++) {
		if(isalpha((int)*path) || isdigit((int)*path)) {
			buffer[i++] = tolower((int)*path);
			r = 0;
		} else {
			if(!r) /* don't repeat '-'. */
				buffer[i++] = '-';
			r++;
		}
	}
	buffer[i] = '\0';
	/* remove trailing - */
	for(; i > 0 && (buffer[i] == '-' || buffer[i] == '\0'); i--)
		buffer[i] = '\0';
	return i;
}

static int
fileexists(const char *path) {
	return (!access(path, F_OK));
}

int
main(int argc, char **argv) {
	struct feed *f, *fcur = NULL;
	char *fields[FieldLast];
	char name[64]; /* TODO: bigger size? */
	char dirpath[PATH_MAX], filepath[PATH_MAX];
	char reldirpath[PATH_MAX], relfilepath[PATH_MAX];
	char *feedname = "", *basepath = ".";
	unsigned long totalfeeds = 0, totalnew = 0;
	unsigned int isnew;
	time_t parsedtime, comparetime;
	size_t linesize = 0, namelen, basepathlen;
	struct stat st;
	struct utimbuf contenttime;

	atexit(cleanup);
	memset(&contenttime, 0, sizeof(contenttime));

	if(argc > 1 && argv[1][0] != '\0')
		basepath = argv[1];

	comparetime = time(NULL) - (3600 * 24); /* 1 day is old news */
	basepathlen = strlen(basepath);
	if(basepathlen > 0)
		mkdir(basepath, S_IRWXU);

	/* write main index page */
	if(snprintf(dirpath, sizeof(dirpath), "%s/index.html", basepath) <= 0)
		die("snprintf() format error");
	if(!(fpindex = fopen(dirpath, "w+b")))
		die("can't write index.html");
	if(snprintf(dirpath, sizeof(dirpath), "%s/menu.html", basepath) <= 0)
		die("snprintf() format error");
	if(!(fpmenu = fopen(dirpath, "w+b")))
		die("can't write menu.html");
	if(snprintf(dirpath, sizeof(dirpath), "%s/items.html", basepath) <= 0)
		die("snprintf() format error");
	if(!(fpitems = fopen(dirpath, "w+b")))
		die("can't write items.html");
	fputs("<html><head><link rel=\"stylesheet\" type=\"text/css\" href=\"../style.css\" />"
	      "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" /></head>"
	      "<body class=\"frame\"><div id=\"items\">", fpitems);

	while(parseline(&line, &linesize, fields, FieldLast, '\t', stdin) > 0) {
		feedname = fields[FieldFeedName];
		if(feedname[0] == '\0') {
			feedname = "unknown";
			/* assume single feed (hide sidebar) */
			if(!totalfeeds)
				showsidebar = 0;
		}
		/* first of feed section or new feed section (differ from previous). */
		if(!totalfeeds || (fcur && strcmp(fcur->name, feedname))) {
			/* TODO: makepathname isn't necesary if fields[FieldFeedName] is the same as the previous line */
			/* TODO: move this part below where FieldFeedName is checked if it's different ? */

			/* make directory for feedname */
			if(!(namelen = makepathname(feedname, name, sizeof(name))))
				continue;

			if(snprintf(dirpath, sizeof(dirpath), "%s/%s", basepath, name) <= 0)
				die("snprintf() format error");

			/* directory doesn't exist: try to create it. */
			if(stat(dirpath, &st) == -1) {
				if(mkdir(dirpath, S_IRWXU) == -1) {
					fprintf(stderr, "sfeed_frames: can't make directory '%s': %s\n",
					        dirpath, strerror(errno));
					exit(EXIT_FAILURE);
				}
			}
			strlcpy(reldirpath, name, sizeof(reldirpath));

			if(!(f = calloc(1, sizeof(struct feed))))
				die("can't allocate enough memory");

			if(totalfeeds) { /* end previous one. */
				fputs("</table>\n", fpitems);
				fcur->next = f;
				fcur = fcur->next;
			} else {
				/* first item. */
				fcur = f;
				feeds = fcur;
			}
			/* write menu link if new. */
			if(!(fcur->name = strdup(feedname)))
				die("can't allocate enough memory");
			if(fields[FieldFeedName][0] != '\0') {
				fputs("<h2 id=\"", fpitems);
				printfeednameid(fcur->name, fpitems);
				fputs("\"><a href=\"#", fpitems);
				printfeednameid(fcur->name, fpitems);
				fputs("\">", fpitems);
				fputs(fcur->name, fpitems);
				fputs("</a></h2>\n", fpitems);
			}
			fputs("<table cellpadding=\"0\" cellspacing=\"0\">\n", fpitems);
			totalfeeds++;
		}
		/* write content */
		if(!(namelen = makepathname(fields[FieldTitle], name, sizeof(name))))
			continue;
		if(snprintf(filepath, sizeof(filepath), "%s/%s.html", dirpath, name) <= 0)
			die("snprintf() format error");
		if(snprintf(relfilepath, sizeof(relfilepath), "%s/%s.html", reldirpath, name) <= 0)
			die("snprintf() format error");
		if(!fileexists(filepath) && (fpcontent = fopen(filepath, "w+b"))) {
			fputs("<html><head><link rel=\"stylesheet\" type=\"text/css\" href=\"../../style.css\" />"
			      "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" /></head>\n"
			      "<body class=\"frame\"><div class=\"content\">"
			      "<h2><a href=\"", fpcontent);
			if(fields[FieldBaseSiteUrl][0] != '\0')
				printlink(fields[FieldLink], fields[FieldBaseSiteUrl], fpcontent);
			else
				printlink(fields[FieldLink], fields[FieldFeedUrl], fpcontent);
			fputs("\">", fpcontent);
			printhtmlencoded(fields[FieldTitle], fpcontent);
			fputs("</a></h2>", fpcontent);
			printcontent(fields[FieldContent], fpcontent);
			fputs("</div></body></html>", fpcontent);
			fclose(fpcontent);
			fpcontent = NULL;
		}

		/* write item. */
		errno = 0;
		parsedtime = (time_t)strtol(fields[FieldUnixTimestamp], NULL, 10);
		if(errno != 0)
			parsedtime = 0;
		/* set modified and access time of file to time of item. */
		contenttime.actime = parsedtime;
		contenttime.modtime = parsedtime;
		utime(filepath, &contenttime);

		isnew = (parsedtime >= comparetime) ? 1 : 0;
		totalnew += isnew;
		fcur->totalnew += isnew;
		fcur->total++;
		if(isnew)
			fputs("<tr class=\"n\">", fpitems);
		else
			fputs("<tr>", fpitems);
		fputs("<td nowrap valign=\"top\">", fpitems);
		fputs(fields[FieldTimeFormatted], fpitems);
		fputs("</td><td nowrap valign=\"top\">", fpitems);
		if(isnew)
			fputs("<b><u>", fpitems);
		fputs("<a href=\"", fpitems);
		fputs(relfilepath, fpitems);
		fputs("\" target=\"content\">", fpitems);
		printhtmlencoded(fields[FieldTitle], fpitems);
		fputs("</a>", fpitems);
		if(isnew)
			fputs("</u></b>", fpitems);
		fputs("</td></tr>\n", fpitems);
	}
	if(totalfeeds) {
		fputs("</table>\n", fpitems);
	}
	fputs("\n</div></body>\n</html>", fpitems); /* div items */
	if(showsidebar) {
		fputs("<html><head>"
		      "<link rel=\"stylesheet\" type=\"text/css\" href=\"../style.css\" />\n"
		      "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n"
		      "</head><body class=\"frame\"><div id=\"sidebar\">", fpmenu);
		for(fcur = feeds; fcur; fcur = fcur->next) {
			if(!fcur->name || fcur->name[0] == '\0')
				continue;
			if(fcur->totalnew)
				fputs("<a class=\"n\" href=\"items.html#", fpmenu);
			else
				fputs("<a href=\"items.html#", fpmenu);
			printfeednameid(fcur->name, fpmenu);
			fputs("\" target=\"items\">", fpmenu);
			if(fcur->totalnew > 0)
				fputs("<b><u>", fpmenu);
			fputs(fcur->name, fpmenu);
			fprintf(fpmenu, " (%lu)", fcur->totalnew);
			if(fcur->totalnew > 0)
				fputs("</u></b>", fpmenu);
			fputs("</a><br/>\n", fpmenu);
		}
		fputs("</div></body></html>", fpmenu);
	}
	fputs("<!DOCTYPE html><html><head>\n\t<title>Newsfeed (", fpindex);
	fprintf(fpindex, "%lu", totalnew);
	fputs(")</title>\n\t<link rel=\"stylesheet\" type=\"text/css\" href=\"../style.css\" />\n"
	      "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n"
	      "</head>\n", fpindex);
	if(showsidebar) {
		fputs("<frameset framespacing=\"0\" cols=\"200,*\" frameborder=\"1\">\n"
		      "	<frame name=\"menu\" src=\"menu.html\" target=\"menu\">\n", fpindex);
	} else {
		fputs("<frameset framespacing=\"0\" cols=\"*\" frameborder=\"1\">\n", fpindex);
	}
	fputs("\t<frameset id=\"frameset\" framespacing=\"0\" cols=\"50%,50%\" frameborder=\"1\">\n"
	      "\t\t<frame name=\"items\" src=\"items.html\" target=\"items\">\n"
	      "\t\t<frame name=\"content\" target=\"content\">\n"
	      "\t</frameset>\n"
	      "</frameset>\n"
	      "</html>", fpindex);

	return EXIT_SUCCESS;
}