* add 'control context'; which will carry information from control elements into...
[citadel.git] / webcit / downloads.c
1 /*
2  * $Id$
3  */
4 #include "webcit.h"
5 #include "webserver.h"
6
7 extern char* static_dirs[];
8
9 typedef struct _FileListStruct {
10         StrBuf *Filename;
11         long FileSize;
12         StrBuf *MimeType;
13         StrBuf *Comment;
14         int IsPic;
15         int Sequence;
16 } FileListStruct;
17
18 void FreeFiles(void *vFile)
19 {
20         FileListStruct *F = (FileListStruct*) vFile;
21         FreeStrBuf(&F->Filename);
22         FreeStrBuf(&F->MimeType);
23         FreeStrBuf(&F->Comment);
24         free(F);
25 }
26
27 /* -------------------------------------------------------------------------------- */
28 void tmplput_FILE_NAME(StrBuf *Target, WCTemplputParams *TP)
29 {
30         FileListStruct *F = (FileListStruct*) CTX;
31         StrBufAppendTemplate(Target, TP, F->Filename, 0);
32 }
33 void tmplput_FILE_SIZE(StrBuf *Target, WCTemplputParams *TP)
34 {
35         FileListStruct *F = (FileListStruct*) CTX;
36         StrBufAppendPrintf(Target, "%ld", F->FileSize);
37 }
38 void tmplput_FILEMIMETYPE(StrBuf *Target, WCTemplputParams *TP)
39 {
40         FileListStruct *F = (FileListStruct*) CTX;
41         StrBufAppendTemplate(Target, TP, F->MimeType, 0);
42 }
43 void tmplput_FILE_COMMENT(StrBuf *Target, WCTemplputParams *TP)
44 {
45         FileListStruct *F = (FileListStruct*) CTX;
46         StrBufAppendTemplate(Target, TP, F->Comment, 0);
47 }
48
49 /* -------------------------------------------------------------------------------- */
50
51 int Conditional_FILE_ISPIC(StrBuf *Target, WCTemplputParams *TP)
52 {
53         FileListStruct *F = (FileListStruct*) CTX;
54         return F->IsPic;
55 }
56
57 /* -------------------------------------------------------------------------------- */
58 int CompareFilelistByMime(const void *vFile1, const void *vFile2)
59 {
60         FileListStruct *File1 = (FileListStruct*) GetSearchPayload(vFile1);
61         FileListStruct *File2 = (FileListStruct*) GetSearchPayload(vFile2);
62
63         if (File1->IsPic != File2->IsPic)
64                 return File1->IsPic > File2->IsPic;
65         return strcasecmp(ChrPtr(File1->MimeType), ChrPtr(File2->MimeType));
66 }
67 int CompareFilelistByMimeRev(const void *vFile1, const void *vFile2)
68 {
69         FileListStruct *File1 = (FileListStruct*) GetSearchPayload(vFile1);
70         FileListStruct *File2 = (FileListStruct*) GetSearchPayload(vFile2);
71         if (File1->IsPic != File2->IsPic)
72                 return File1->IsPic < File2->IsPic;
73         return strcasecmp(ChrPtr(File2->MimeType), ChrPtr(File1->MimeType));
74 }
75 int GroupchangeFilelistByMime(const void *vFile1, const void *vFile2)
76 {
77         FileListStruct *File1 = (FileListStruct*) vFile1;
78         FileListStruct *File2 = (FileListStruct*) vFile2;
79
80         if (File1->IsPic != File2->IsPic)
81                 return File1->IsPic > File2->IsPic;
82         return strcasecmp(ChrPtr(File1->MimeType), ChrPtr(File2->MimeType)) != 0;
83 }
84
85
86 int CompareFilelistByName(const void *vFile1, const void *vFile2)
87 {
88         FileListStruct *File1 = (FileListStruct*) GetSearchPayload(vFile1);
89         FileListStruct *File2 = (FileListStruct*) GetSearchPayload(vFile2);
90
91         if (File1->IsPic != File2->IsPic)
92                 return File1->IsPic > File2->IsPic;
93         return strcasecmp(ChrPtr(File1->Filename), ChrPtr(File2->Filename));
94 }
95 int CompareFilelistByNameRev(const void *vFile1, const void *vFile2)
96 {
97         FileListStruct *File1 = (FileListStruct*) GetSearchPayload(vFile1);
98         FileListStruct *File2 = (FileListStruct*) GetSearchPayload(vFile2);
99         if (File1->IsPic != File2->IsPic)
100                 return File1->IsPic < File2->IsPic;
101         return strcasecmp(ChrPtr(File2->Filename), ChrPtr(File1->Filename));
102 }
103 int GroupchangeFilelistByName(const void *vFile1, const void *vFile2)
104 {
105         FileListStruct *File1 = (FileListStruct*) vFile1;
106         FileListStruct *File2 = (FileListStruct*) vFile2;
107
108         return ChrPtr(File1->Filename)[0] != ChrPtr(File2->Filename)[0];
109 }
110
111
112 int CompareFilelistBySize(const void *vFile1, const void *vFile2)
113 {
114         FileListStruct *File1 = (FileListStruct*) GetSearchPayload(vFile1);
115         FileListStruct *File2 = (FileListStruct*) GetSearchPayload(vFile2);
116         if (File1->FileSize == File2->FileSize)
117                 return 0;
118         return (File1->FileSize > File2->FileSize);
119 }
120 int CompareFilelistBySizeRev(const void *vFile1, const void *vFile2)
121 {
122         FileListStruct *File1 = (FileListStruct*) GetSearchPayload(vFile1);
123         FileListStruct *File2 = (FileListStruct*) GetSearchPayload(vFile2);
124         if (File1->FileSize == File2->FileSize)
125                 return 0;
126         return (File1->FileSize < File2->FileSize);
127 }
128 int GroupchangeFilelistBySize(const void *vFile1, const void *vFile2)
129 {
130         return 0;
131 }
132
133
134 int CompareFilelistByComment(const void *vFile1, const void *vFile2)
135 {
136         FileListStruct *File1 = (FileListStruct*) GetSearchPayload(vFile1);
137         FileListStruct *File2 = (FileListStruct*) GetSearchPayload(vFile2);
138         return strcasecmp(ChrPtr(File1->Comment), ChrPtr(File2->Comment));
139 }
140 int CompareFilelistByCommentRev(const void *vFile1, const void *vFile2)
141 {
142         FileListStruct *File1 = (FileListStruct*) GetSearchPayload(vFile1);
143         FileListStruct *File2 = (FileListStruct*) GetSearchPayload(vFile2);
144         return strcasecmp(ChrPtr(File2->Comment), ChrPtr(File1->Comment));
145 }
146 int GroupchangeFilelistByComment(const void *vFile1, const void *vFile2)
147 {
148         FileListStruct *File1 = (FileListStruct*) vFile1;
149         FileListStruct *File2 = (FileListStruct*) vFile2;
150         return ChrPtr(File1->Comment)[9] != ChrPtr(File2->Comment)[0];
151 }
152
153
154 int CompareFilelistBySequence(const void *vFile1, const void *vFile2)
155 {
156         FileListStruct *File1 = (FileListStruct*) GetSearchPayload(vFile1);
157         FileListStruct *File2 = (FileListStruct*) GetSearchPayload(vFile2);
158         return (File2->Sequence >  File1->Sequence);
159 }
160 int GroupchangeFilelistBySequence(const void *vFile1, const void *vFile2)
161 {
162         return 0;
163 }
164
165 /* -------------------------------------------------------------------------------- */
166 HashList* LoadFileList(StrBuf *Target, WCTemplputParams *TP)
167 {
168         FileListStruct *Entry;
169         StrBuf *Buf;
170         HashList *Files;
171         int Done = 0;
172         int sequence = 0;
173         char buf[1024];
174         CompareFunc SortIt;
175         int HavePic;
176         WCTemplputParams SubTP;
177
178         memset(&TP, 0, sizeof(WCTemplputParams));
179         serv_puts("RDIR");
180         serv_getln(buf, sizeof buf);
181         if (buf[0] != '1') return NULL;
182
183         Buf = NewStrBuf();             
184         Files = NewHash(1, NULL);
185         while (!Done && (StrBuf_ServGetln(Buf)>=0)) {
186                 if ( (StrLength(Buf)==3) && 
187                     !strcmp(ChrPtr(Buf), "000")) 
188                 {
189                         Done = 1;
190                         continue;
191                 }
192
193                 Entry = (FileListStruct*) malloc(sizeof (FileListStruct));
194                 Entry->Filename = NewStrBufPlain(NULL, StrLength(Buf));
195                 Entry->MimeType = NewStrBufPlain(NULL, StrLength(Buf));
196                 Entry->Comment = NewStrBufPlain(NULL, StrLength(Buf));
197
198                 Entry->Sequence = sequence++;
199
200                 StrBufExtract_token(Entry->Filename, Buf, 0, '|');
201                 Entry->FileSize = StrBufExtract_long(Buf, 1, '|');
202                 StrBufExtract_token(Entry->MimeType, Buf, 2, '|');
203                 StrBufExtract_token(Entry->Comment, Buf, 3, '|');
204
205
206
207                 Entry->IsPic = (strstr(ChrPtr(Entry->MimeType), "image") != NULL);
208                 if (Entry->IsPic) {
209                         HavePic = 1;
210                 }
211                 Put(Files, SKEY(Entry->Filename), Entry, FreeFiles);
212         }
213         SubTP.Filter.ContextType = CTX_FILELIST;
214         SortIt = RetrieveSort(&SubTP, NULL, 0, HKEY("fileunsorted"), 0);
215         if (SortIt != NULL)
216                 SortByPayload(Files, SortIt);
217         else 
218                 SortByPayload(Files, CompareFilelistBySequence);
219         FreeStrBuf(&Buf);
220         svputlong("FILE:HAVEPICS", HavePic);
221         return Files;
222 }
223
224 void display_mime_icon(void)
225 {
226         char FileBuf[SIZ];
227         const char *FileName;
228         char *MimeType;
229         size_t tlen;
230
231         MimeType = xbstr("type", &tlen);
232         FileName = GetIconFilename(MimeType, tlen);
233
234         if (FileName == NULL)
235                 snprintf (FileBuf, SIZ, "%s%s", static_dirs[0], "/diskette_24x.gif");
236         else
237                 snprintf (FileBuf, SIZ, "%s%s", static_dirs[3], FileName);
238         output_static(FileBuf);
239 }
240
241 void download_file(void)
242 {
243         char buf[256];
244         off_t bytes;
245         char content_type[256];
246         char *content = NULL;
247
248         /* Setting to nonzero forces a MIME type of application/octet-stream */
249         int force_download = 1;
250         
251         safestrncpy(buf, ChrPtr(WC->UrlFragment2), sizeof buf);
252         unescape_input(buf);
253         serv_printf("OPEN %s", buf);
254         serv_getln(buf, sizeof buf);
255         if (buf[0] == '2') {
256                 bytes = extract_long(&buf[4], 0);
257                 content = malloc(bytes + 2);
258                 if (force_download) {
259                         strcpy(content_type, "application/octet-stream");
260                 }
261                 else {
262                         extract_token(content_type, &buf[4], 3, '|', sizeof content_type);
263                 }
264                 output_headers(0, 0, 0, 0, 0, 0);
265                 read_server_binary(WC->WBuf, bytes);
266                 serv_puts("CLOS");
267                 serv_getln(buf, sizeof buf);
268                 http_transmit_thing(content_type, 0);
269                 free(content);
270         } else {
271                 hprintf("HTTP/1.1 404 %s\n", &buf[4]);
272                 output_headers(0, 0, 0, 0, 0, 0);
273                 hprintf("Content-Type: text/plain\r\n");
274                 wprintf(_("An error occurred while retrieving this file: %s\n"), &buf[4]);
275                 end_burst();
276         }
277 }
278
279
280
281 void upload_file(void)
282 {
283         const char *MimeType;
284         char buf[1024];
285         long bytes_transmitted = 0;
286         long blocksize;
287         wcsession *WCC = WC;     /* stack this for faster access (WC is a function) */
288
289         MimeType = GuessMimeType(WCC->upload, WCC->upload_length); 
290         serv_printf("UOPN %s|%s|%s", WCC->upload_filename, MimeType, bstr("description"));
291         serv_getln(buf, sizeof buf);
292         if (buf[0] != '2')
293         {
294                 strcpy(WCC->ImportantMessage, &buf[4]);
295                 do_template("files", NULL);
296                 return;
297         }
298
299         while (bytes_transmitted < WCC->upload_length)
300         {
301                 blocksize = 4096;
302                 if (blocksize > (WCC->upload_length - bytes_transmitted))
303                 {
304                         blocksize = (WCC->upload_length - bytes_transmitted);
305                 }
306                 serv_printf("WRIT %ld", blocksize);
307                 serv_getln(buf, sizeof buf);
308                 if (buf[0] == '7')
309                 {
310                         blocksize = atoi(&buf[4]);
311                         serv_write(&WCC->upload[bytes_transmitted], blocksize);
312                         bytes_transmitted += blocksize;
313                 }
314         }
315
316         serv_puts("UCLS 1");
317         serv_getln(buf, sizeof buf);
318         strcpy(WCC->ImportantMessage, &buf[4]);
319         do_template("files", CTX_NONE);
320 }
321
322
323
324 /*
325  * When the browser requests an image file from the Citadel server,
326  * this function is called to transmit it.
327  */
328 void output_image(void)
329 {
330         char blank_gif[SIZ];
331         wcsession *WCC = WC;
332         char buf[SIZ];
333         off_t bytes;
334         const char *MimeType;
335         
336         serv_printf("OIMG %s|%s", bstr("name"), bstr("parm"));
337         serv_getln(buf, sizeof buf);
338         if (buf[0] == '2') {
339                 bytes = extract_long(&buf[4], 0);
340
341                 /** Read it from the server */
342                 
343                 if (read_server_binary(WCC->WBuf, bytes) > 0) {
344                         serv_puts("CLOS");
345                         serv_getln(buf, sizeof buf);
346                 
347                         MimeType = GuessMimeType (ChrPtr(WCC->WBuf), StrLength(WCC->WBuf));
348                         /** Write it to the browser */
349                         if (!IsEmptyStr(MimeType))
350                         {
351                                 http_transmit_thing(MimeType, 0);
352                                 return;
353                         }
354                 }
355                 /* hm... unknown mimetype? fallback to blank gif */
356         } 
357
358         
359         /*
360          * Instead of an ugly 404, send a 1x1 transparent GIF
361          * when there's no such image on the server.
362          */
363         snprintf (blank_gif, SIZ, "%s%s", static_dirs[0], "/blank.gif");
364         output_static(blank_gif);
365 }
366
367 void 
368 InitModule_DOWNLOAD
369 (void)
370 {
371
372         RegisterIterator("ROOM:FILES", 0, NULL, LoadFileList,
373                          NULL, DeleteHash, CTX_FILELIST, CTX_NONE, 
374                          IT_FLAG_DETECT_GROUPCHANGE);
375
376         RegisterSortFunc(HKEY("filemime"),
377                          NULL, 0,
378                          CompareFilelistByMime,
379                          CompareFilelistByMimeRev,
380                          GroupchangeFilelistByMime,
381                          CTX_FILELIST);
382         RegisterSortFunc(HKEY("filename"),
383                          NULL, 0,
384                          CompareFilelistByName,
385                          CompareFilelistByNameRev,
386                          GroupchangeFilelistByName,
387                          CTX_FILELIST);
388         RegisterSortFunc(HKEY("filesize"),
389                          NULL, 0,
390                          CompareFilelistBySize,
391                          CompareFilelistBySizeRev,
392                          GroupchangeFilelistBySize,
393                          CTX_FILELIST);
394         RegisterSortFunc(HKEY("filesubject"),
395                          NULL, 0,
396                          CompareFilelistByComment,
397                          CompareFilelistByCommentRev,
398                          GroupchangeFilelistByComment,
399                          CTX_FILELIST);
400         RegisterSortFunc(HKEY("fileunsorted"),
401                          NULL, 0,
402                          CompareFilelistBySequence,
403                          CompareFilelistBySequence,
404                          GroupchangeFilelistBySequence,
405                          CTX_FILELIST);
406
407         RegisterNamespace("FILE:NAME", 0, 2, tmplput_FILE_NAME, CTX_FILELIST);
408         RegisterNamespace("FILE:SIZE", 0, 1, tmplput_FILE_SIZE, CTX_FILELIST);
409         RegisterNamespace("FILE:MIMETYPE", 0, 2, tmplput_FILEMIMETYPE, CTX_FILELIST);
410         RegisterNamespace("FILE:COMMENT", 0, 2, tmplput_FILE_COMMENT, CTX_FILELIST);
411
412         RegisterConditional(HKEY("COND:FILE:ISPIC"), 0, Conditional_FILE_ISPIC, CTX_FILELIST);
413
414         WebcitAddUrlHandler(HKEY("image"), output_image, 0);
415         WebcitAddUrlHandler(HKEY("display_mime_icon"), display_mime_icon , 0);
416         WebcitAddUrlHandler(HKEY("download_file"), download_file, NEED_URL);
417         WebcitAddUrlHandler(HKEY("upload_file"), upload_file, 0);
418 }