summaryrefslogtreecommitdiff
path: root/sfeed_frames.c
blob: 54464c34597bcf5e19fb60f064bd36a8ebf5bedd (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
306
307
308
309
#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 "common.c"

/* Feed info. */
struct feed {
	char *name; /* feed name */
	unsigned long new; /* amount of new items per feed */
	unsigned long total; /* total items */
	struct feed *next; /* linked list */
};

static int showsidebar = 1; /* show sidebar ? */

void /* print error message to stderr */
die(const char *s) {
	fputs("sfeed_html: ", stderr);
	fputs(s, stderr);
	fputc('\n', stderr);
	exit(EXIT_FAILURE);
}

struct feed *
feednew(void) {
	struct feed *f;
	if(!(f = calloc(1, sizeof(struct feed))))
		die("can't allocate enough memory");
	return f;
}

void
feedsfree(struct feed *f) {
	struct feed *next;
	while(f) {
		next = f->next;
		free(f->name);
		free(f);
		f = next;
	}
}

/* print text, ignore tabs, newline and carriage return etc
 * print some HTML 2.0 / XML 1.0 as normal text */
void
print_content_test(const char *s, FILE *fp) {
	const char *p;
	int len = 0;
	for(p = s; *p; p++) {
		if(*p == '\\') {
			p++;
			if(*p == '\\')
				fputc('\\', fp);
			else if(*p == 't' && len)
				fputc('\t', fp);
			else if(*p == 'n' && len)
				fputc('\n', fp);
		} else {
			fputc(*p, fp);
			len++;
		}
	}
}

/* print feed name for id; spaces and tabs in string as "-" (spaces in anchors are not valid). */
void
printfeednameid(const char *s, FILE *fp) {
	for(; *s; s++)
		fputc(isspace((int)*s) ? '-' : *s, fp);
}

void
printhtmlencoded(const char *s, FILE *fp) {
	for(; *s; s++) {
		switch(*s) {
		case '<': fputs("&lt;", fp); break;
		case '>': fputs("&gt;", fp); break;
/*		case '&': fputs("&amp;", fp); break;*/
		default:
			fputc(*s, fp);
		}
	}
}

void
makepathname(char *buffer, size_t bufsiz, const char *path) {
	const char *p = path;
	size_t i = 0, r = 0;
	/*for(p = path; isspace((int)*p); p++);*/ /* remove leading whitespace */
	for(; *p && i < bufsiz; p++) {
		if(isalpha((int)*p) || isdigit((int)*p)) {
			buffer[i++] = tolower((int)*p);
			r = 0;
		} else {
			if(!r) { /* dont repeat '-'. */
				buffer[i++] = '-';
			}
			r++;
		}
	}
	buffer[i] = '\0';
	/* remove trailing - */
	for(; i > 0 && (buffer[i] == '-' || buffer[i] == '\0'); i--)
		buffer[i] = '\0';
}

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

int
main(int argc, char **argv) {
	char *line = NULL, *fields[FieldLast];
	unsigned long totalfeeds = 0, totalnew = 0;
	unsigned int islink, isnew;
	struct feed *feedcurrent = NULL, *feeds = NULL; /* start of feeds linked-list. */
	time_t parsedtime, comparetime;
	size_t size = 0;
	char name[256];
	char dirpath[256];
	char filepath[1024];
	char reldirpath[1024];
	char relfilepath[1024];
	FILE *fpindex, *fpitems, *fpmenu, *fpcontent;
	char feedname[1024];
	char *basepath = "feeds";
	struct utimbuf contenttime = { 0 };

	/* TODO: write menu to file */
	/* TODO: write items to file */
	/* TODO: write items per category to file? */

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

/*	tzset();*/
	comparetime = time(NULL) - (3600 * 24); /* 1 day is old news */

	mkdir(basepath, S_IRWXU);

	/* write main index page */
	snprintf(dirpath, sizeof(dirpath) - 1, "%s/index.html", basepath);
	if((fpindex = fopen(dirpath, "w+b"))) {
	}
	snprintf(dirpath, sizeof(dirpath) - 1, "%s/menu.html", basepath);
	if(!(fpmenu = fopen(dirpath, "w+b"))) {
		/* TODO: error */
		fclose(fpindex);
		return EXIT_FAILURE;
	}
	snprintf(dirpath, sizeof(dirpath) - 1, "%s/items.html", basepath);
	if(!(fpitems = fopen(dirpath, "w+b"))) {
		/* TODO: error */
		fclose(fpmenu);
		fclose(fpindex);
		return EXIT_FAILURE;
	}

	feedname[0] = '\0';
	while(parseline(&line, &size, fields, FieldLast, stdin, FieldSeparator) > 0) {
		dirpath[0] = '\0';
		filepath[0] = '\0';
		reldirpath[0] = '\0';
		relfilepath[0] = '\0';
		makepathname(name, sizeof(name) - 1, fields[FieldFeedName]);
		if(name[0] != '\0') {
			snprintf(dirpath, sizeof(dirpath) - 1, "%s/%s", basepath, name);
			/* TODO: handle error. */
			if(mkdir(dirpath, S_IRWXU) != -1) {
			}
/*			snprintf(reldirpath, sizeof(reldirpath) - 1, "%s", name);*/
			strncpy(reldirpath, name, sizeof(reldirpath) - 1);	
			makepathname(name, sizeof(name), fields[FieldTitle]);
			if(name[0] != '\0') {
				snprintf(filepath, sizeof(filepath) - 1, "%s/%s.html", dirpath, name);
				snprintf(relfilepath, sizeof(relfilepath) - 1, "%s/%s.html", reldirpath, name);

				/* TODO: if file exists, dont overwrite. */
				/* TODO: give file title and timestamp of article, touch() ?. */
				if(!fileexists(filepath) && (fpcontent = fopen(filepath, "w+b"))) {
					fputs("<html><body>", fpcontent);
					fputs("<h2>", fpcontent);
					printhtmlencoded(fields[FieldTitle], fpcontent);
					fputs("</h2>", fpcontent);
					print_content_test(fields[FieldContent], fpcontent);
					fputs("</body></html>", fpcontent);
					fclose(fpcontent);
				}

				/* first of feed section or new feed section. */
				if(!totalfeeds || strcmp(feedcurrent->name, fields[FieldFeedName])) {
					if(totalfeeds) { /* end previous one. */
						fputs("</table>\n", fpitems);
						if(!(feedcurrent->next = calloc(1, sizeof(struct feed))))
							die("can't allocate enough memory");
						feedcurrent = feedcurrent->next;
					} else {
						if(!(feedcurrent = calloc(1, sizeof(struct feed))))
							die("can't allocate enough memory");
						feeds = feedcurrent; /* first item. */
						if(fields[FieldFeedName][0] == '\0') {
							fputs("-nosidebar", fpitems); /* set other id on div if no sidebar for styling */
							showsidebar = 0;
						}
					}
					/* write menu link if new. */
					if(!(feedcurrent->name = xstrdup(fields[FieldFeedName])))
						die("can't allocate enough memory");
					if(fields[FieldFeedName][0] != '\0') {
						fputs("<h2 id=\"", fpitems);
						printfeednameid(feedcurrent->name, fpitems);
						fputs("\"><a href=\"#", fpitems);
						printfeednameid(feedcurrent->name, fpitems);
						fputs("\">", fpitems);
						fputs(feedcurrent->name, fpitems);
						fputs("</a></h2>\n", fpitems);
					}
					fputs("<table>", fpitems);
					totalfeeds++;
				}
				/* write item. */
				parsedtime = (time_t)strtol(fields[FieldUnixTimestamp], NULL, 10);
				/* set modified and access time of file to time of item. */
				contenttime.actime = parsedtime;
				contenttime.modtime = parsedtime;
				utime(filepath, &contenttime);

				isnew = (parsedtime >= comparetime);
				islink = (strlen(fields[FieldLink]) > 0);
				totalnew += isnew;
				feedcurrent->new += isnew;
				feedcurrent->total++;

				fputs("<tr><td nowrap valign=\"top\">", fpitems);
				fputs(fields[FieldTimeFormatted], fpitems);
				fputs("</td><td 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("\t\t</div>\n", fpitems); /* div items */
	}
	if(showsidebar) {
/*		fputs("\t\t<div id=\"sidebar\">\n\t\t\t<ul>\n", fpmenu);*/
		for(feedcurrent = feeds; feedcurrent; feedcurrent = feedcurrent->next) {
			if(!feedcurrent->name || feedcurrent->name[0] == '\0')
				continue;
			fputs("<a href=\"items.html#", fpmenu);
			printfeednameid(feedcurrent->name, fpmenu);
			fputs("\" target=\"items\">", fpmenu);
			if(feedcurrent->new > 0)
				fputs("<b><u>", fpmenu);
			fputs(feedcurrent->name, fpmenu);
			fprintf(fpmenu, " (%lu)", feedcurrent->new);
			if(feedcurrent->new > 0)
				fputs("</u></b>", fpmenu);
			fputs("</a><br/>\n", fpmenu);
		}
/*		fputs("\t\t\t</ul>\n\t\t</div>\n", fpmenu);*/
	}

	fputs("<!DOCTYPE html>"
		"<html>"
		"    <head>"
		"		<title>Newsfeeds (", fpindex);
	fprintf(fpindex, "%lu", totalnew);
	fputs(")</title>"
		"	</head>"
		"	<frameset framespacing=\"0\" cols=\"200,*\" frameborder=\"1\">"
		"		<frame name=\"menu\" src=\"menu.html\" target=\"menu\">"
		"		<frameset id=\"frameset\" framespacing=\"0\" cols=\"50%,50%\" frameborder=\"1\">"
		"			<frame name=\"items\" src=\"items.html\" target=\"items\">"
		"			<frame name=\"content\" target=\"content\">"
		"		</frameset>"
		"  	 </frameset>"
		"</html>", fpindex);

	fclose(fpmenu);
	fclose(fpitems);
	fclose(fpindex);

	free(line); /* free line */
	feedsfree(feeds); /* free feeds linked-list */

	return EXIT_SUCCESS;
}