cleanup webcit.h; utils.c, remove unneeded stuff
[citadel.git] / webcit / downloads.c
1 /*
2  * Copyright (c) 1996-2010 by the citadel.org team
3  *
4  * This program is open source software.  You can redistribute it and/or
5  * modify it under the terms of the GNU General Public License as
6  * published by the Free Software Foundation; either version 3 of the
7  * License, or (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17  */
18
19 #include "webcit.h"
20 #include "webserver.h"
21
22 extern void output_static(const char* What);
23
24 extern char* static_dirs[];
25
26 typedef struct _FileListStruct {
27         StrBuf *Filename;
28         long FileSize;
29         StrBuf *MimeType;
30         StrBuf *Comment;
31         int IsPic;
32         int Sequence;
33 } FileListStruct;
34
35 void FreeFiles(void *vFile)
36 {
37         FileListStruct *F = (FileListStruct*) vFile;
38         FreeStrBuf(&F->Filename);
39         FreeStrBuf(&F->MimeType);
40         FreeStrBuf(&F->Comment);
41         free(F);
42 }
43
44 /* -------------------------------------------------------------------------------- */
45 void tmplput_FILE_NAME(StrBuf *Target, WCTemplputParams *TP)
46 {
47         FileListStruct *F = (FileListStruct*) CTX;
48         StrBufAppendTemplate(Target, TP, F->Filename, 0);
49 }
50 void tmplput_FILE_SIZE(StrBuf *Target, WCTemplputParams *TP)
51 {
52         FileListStruct *F = (FileListStruct*) CTX;
53         StrBufAppendPrintf(Target, "%ld", F->FileSize);
54 }
55 void tmplput_FILEMIMETYPE(StrBuf *Target, WCTemplputParams *TP)
56 {
57         FileListStruct *F = (FileListStruct*) CTX;
58         StrBufAppendTemplate(Target, TP, F->MimeType, 0);
59 }
60 void tmplput_FILE_COMMENT(StrBuf *Target, WCTemplputParams *TP)
61 {
62         FileListStruct *F = (FileListStruct*) CTX;
63         StrBufAppendTemplate(Target, TP, F->Comment, 0);
64 }
65
66 /* -------------------------------------------------------------------------------- */
67
68 int Conditional_FILE_ISPIC(StrBuf *Target, WCTemplputParams *TP)
69 {
70         FileListStruct *F = (FileListStruct*) CTX;
71         return F->IsPic;
72 }
73
74 /* -------------------------------------------------------------------------------- */
75 int CompareFilelistByMime(const void *vFile1, const void *vFile2)
76 {
77         FileListStruct *File1 = (FileListStruct*) GetSearchPayload(vFile1);
78         FileListStruct *File2 = (FileListStruct*) GetSearchPayload(vFile2);
79
80         if (File1->IsPic != File2->IsPic)
81                 return File1->IsPic > File2->IsPic;
82         return strcasecmp(ChrPtr(File1->MimeType), ChrPtr(File2->MimeType));
83 }
84 int CompareFilelistByMimeRev(const void *vFile1, const void *vFile2)
85 {
86         FileListStruct *File1 = (FileListStruct*) GetSearchPayload(vFile1);
87         FileListStruct *File2 = (FileListStruct*) GetSearchPayload(vFile2);
88         if (File1->IsPic != File2->IsPic)
89                 return File1->IsPic < File2->IsPic;
90         return strcasecmp(ChrPtr(File2->MimeType), ChrPtr(File1->MimeType));
91 }
92 int GroupchangeFilelistByMime(const void *vFile1, const void *vFile2)
93 {
94         FileListStruct *File1 = (FileListStruct*) vFile1;
95         FileListStruct *File2 = (FileListStruct*) vFile2;
96
97         if (File1->IsPic != File2->IsPic)
98                 return File1->IsPic > File2->IsPic;
99         return strcasecmp(ChrPtr(File1->MimeType), ChrPtr(File2->MimeType)) != 0;
100 }
101
102
103 int CompareFilelistByName(const void *vFile1, const void *vFile2)
104 {
105         FileListStruct *File1 = (FileListStruct*) GetSearchPayload(vFile1);
106         FileListStruct *File2 = (FileListStruct*) GetSearchPayload(vFile2);
107
108         if (File1->IsPic != File2->IsPic)
109                 return File1->IsPic > File2->IsPic;
110         return strcasecmp(ChrPtr(File1->Filename), ChrPtr(File2->Filename));
111 }
112 int CompareFilelistByNameRev(const void *vFile1, const void *vFile2)
113 {
114         FileListStruct *File1 = (FileListStruct*) GetSearchPayload(vFile1);
115         FileListStruct *File2 = (FileListStruct*) GetSearchPayload(vFile2);
116         if (File1->IsPic != File2->IsPic)
117                 return File1->IsPic < File2->IsPic;
118         return strcasecmp(ChrPtr(File2->Filename), ChrPtr(File1->Filename));
119 }
120 int GroupchangeFilelistByName(const void *vFile1, const void *vFile2)
121 {
122         FileListStruct *File1 = (FileListStruct*) vFile1;
123         FileListStruct *File2 = (FileListStruct*) vFile2;
124
125         return ChrPtr(File1->Filename)[0] != ChrPtr(File2->Filename)[0];
126 }
127
128
129 int CompareFilelistBySize(const void *vFile1, const void *vFile2)
130 {
131         FileListStruct *File1 = (FileListStruct*) GetSearchPayload(vFile1);
132         FileListStruct *File2 = (FileListStruct*) GetSearchPayload(vFile2);
133         if (File1->FileSize == File2->FileSize)
134                 return 0;
135         return (File1->FileSize > File2->FileSize);
136 }
137 int CompareFilelistBySizeRev(const void *vFile1, const void *vFile2)
138 {
139         FileListStruct *File1 = (FileListStruct*) GetSearchPayload(vFile1);
140         FileListStruct *File2 = (FileListStruct*) GetSearchPayload(vFile2);
141         if (File1->FileSize == File2->FileSize)
142                 return 0;
143         return (File1->FileSize < File2->FileSize);
144 }
145 int GroupchangeFilelistBySize(const void *vFile1, const void *vFile2)
146 {
147         return 0;
148 }
149
150
151 int CompareFilelistByComment(const void *vFile1, const void *vFile2)
152 {
153         FileListStruct *File1 = (FileListStruct*) GetSearchPayload(vFile1);
154         FileListStruct *File2 = (FileListStruct*) GetSearchPayload(vFile2);
155         return strcasecmp(ChrPtr(File1->Comment), ChrPtr(File2->Comment));
156 }
157 int CompareFilelistByCommentRev(const void *vFile1, const void *vFile2)
158 {
159         FileListStruct *File1 = (FileListStruct*) GetSearchPayload(vFile1);
160         FileListStruct *File2 = (FileListStruct*) GetSearchPayload(vFile2);
161         return strcasecmp(ChrPtr(File2->Comment), ChrPtr(File1->Comment));
162 }
163 int GroupchangeFilelistByComment(const void *vFile1, const void *vFile2)
164 {
165         FileListStruct *File1 = (FileListStruct*) vFile1;
166         FileListStruct *File2 = (FileListStruct*) vFile2;
167         return ChrPtr(File1->Comment)[9] != ChrPtr(File2->Comment)[0];
168 }
169
170
171 int CompareFilelistBySequence(const void *vFile1, const void *vFile2)
172 {
173         FileListStruct *File1 = (FileListStruct*) GetSearchPayload(vFile1);
174         FileListStruct *File2 = (FileListStruct*) GetSearchPayload(vFile2);
175         return (File2->Sequence >  File1->Sequence);
176 }
177 int GroupchangeFilelistBySequence(const void *vFile1, const void *vFile2)
178 {
179         return 0;
180 }
181
182 /* -------------------------------------------------------------------------------- */
183 HashList* LoadFileList(StrBuf *Target, WCTemplputParams *TP)
184 {
185         FileListStruct *Entry;
186         StrBuf *Buf;
187         HashList *Files;
188         int Done = 0;
189         int sequence = 0;
190         char buf[1024];
191         CompareFunc SortIt;
192         int HavePic;
193         WCTemplputParams SubTP;
194
195         memset(&SubTP, 0, sizeof(WCTemplputParams));
196         serv_puts("RDIR");
197         serv_getln(buf, sizeof buf);
198         if (buf[0] != '1') return NULL;
199
200         Buf = NewStrBuf();             
201         Files = NewHash(1, NULL);
202         while (!Done && (StrBuf_ServGetln(Buf)>=0)) {
203                 if ( (StrLength(Buf)==3) && 
204                     !strcmp(ChrPtr(Buf), "000")) 
205                 {
206                         Done = 1;
207                         continue;
208                 }
209
210                 Entry = (FileListStruct*) malloc(sizeof (FileListStruct));
211                 Entry->Filename = NewStrBufPlain(NULL, StrLength(Buf));
212                 Entry->MimeType = NewStrBufPlain(NULL, StrLength(Buf));
213                 Entry->Comment = NewStrBufPlain(NULL, StrLength(Buf));
214
215                 Entry->Sequence = sequence++;
216
217                 StrBufExtract_token(Entry->Filename, Buf, 0, '|');
218                 Entry->FileSize = StrBufExtract_long(Buf, 1, '|');
219                 StrBufExtract_token(Entry->MimeType, Buf, 2, '|');
220                 StrBufExtract_token(Entry->Comment, Buf, 3, '|');
221
222
223
224                 Entry->IsPic = (strstr(ChrPtr(Entry->MimeType), "image") != NULL);
225                 if (Entry->IsPic) {
226                         HavePic = 1;
227                 }
228                 Put(Files, SKEY(Entry->Filename), Entry, FreeFiles);
229         }
230         SubTP.Filter.ContextType = CTX_FILELIST;
231         SortIt = RetrieveSort(&SubTP, NULL, 0, HKEY("fileunsorted"), 0);
232         if (SortIt != NULL)
233                 SortByPayload(Files, SortIt);
234         else 
235                 SortByPayload(Files, CompareFilelistBySequence);
236         FreeStrBuf(&Buf);
237         return Files;
238 }
239
240 void display_mime_icon(void)
241 {
242         char FileBuf[SIZ];
243         const char *FileName;
244         char *MimeType;
245         size_t tlen;
246
247         MimeType = xbstr("type", &tlen);
248         FileName = GetIconFilename(MimeType, tlen);
249
250         if (FileName == NULL)
251                 snprintf (FileBuf, SIZ, "%s%s", static_dirs[0], "/webcit_icons/essen/16x16/file.png");
252         else
253                 snprintf (FileBuf, SIZ, "%s%s", static_dirs[3], FileName);
254         output_static(FileBuf);
255 }
256
257 void download_file(void)
258 {
259         wcsession *WCC = WC;
260         StrBuf *Buf;
261         off_t bytes;
262         StrBuf *ContentType = NewStrBufPlain(HKEY("application/octet-stream"));
263
264         /* Setting to nonzero forces a MIME type of application/octet-stream */
265         int force_download = 1;
266         
267         Buf = NewStrBuf();
268         StrBufExtract_token(Buf, WCC->Hdr->HR.ReqLine, 0, '/');
269         StrBufUnescape(Buf, 1);
270         serv_printf("OPEN %s", ChrPtr(Buf));
271         StrBuf_ServGetln(Buf);
272         if (GetServerStatus(Buf, NULL) == 2) {
273                 StrBufCutLeft(Buf, 4);
274                 bytes = StrBufExtract_long(Buf, 0, '|');
275                 if (!force_download) {
276                         StrBufExtract_token(ContentType, Buf, 3, '|');
277                 }
278                 serv_read_binary(WCC->WBuf, bytes, Buf);
279                 serv_puts("CLOS");
280                 StrBuf_ServGetln(Buf);
281                 http_transmit_thing(ChrPtr(ContentType), 0);
282         } else {
283                 StrBufCutLeft(Buf, 4);
284                 hprintf("HTTP/1.1 404 %s\n", ChrPtr(Buf));
285                 output_headers(0, 0, 0, 0, 0, 0);
286                 hprintf("Content-Type: text/plain\r\n");
287                 wc_printf(_("An error occurred while retrieving this file: %s\n"), 
288                         ChrPtr(Buf));
289                 end_burst();
290         }
291         FreeStrBuf(&ContentType);
292         FreeStrBuf(&Buf);
293 }
294
295
296
297 void delete_file(void)
298 {
299         const StrBuf *MimeType;
300         StrBuf *Buf;
301         char buf[256];
302         
303         safestrncpy(buf, bstr("file"), sizeof buf);
304         unescape_input(buf);
305         serv_printf("DELF %s", buf);
306         Buf = NewStrBuf();
307         StrBuf_ServGetln(Buf);
308         GetServerStatus(Buf, NULL);
309         StrBufCutLeft(Buf, 4);
310         strcpy(WC->ImportantMessage, ChrPtr(Buf));
311         MimeType = DoTemplate(HKEY("files"), NULL, &NoCtx);
312         http_transmit_thing(ChrPtr(MimeType), 0);
313         FreeStrBuf(&Buf);
314 }
315
316
317
318 void upload_file(void)
319 {
320         const StrBuf *RetMimeType;
321         const char *MimeType;
322         char buf[1024];
323         long bytes_transmitted = 0;
324         long blocksize;
325         const StrBuf *Desc;
326         wcsession *WCC = WC;     /* stack this for faster access (WC is a function) */
327
328         MimeType = GuessMimeType(ChrPtr(WCC->upload), WCC->upload_length); 
329
330                 Desc = sbstr("description");
331
332         serv_printf("UOPN %s|%s|%s", 
333                     ChrPtr(WCC->upload_filename), 
334                     MimeType, 
335                     ChrPtr(Desc));
336
337         serv_getln(buf, sizeof buf);
338         if (buf[0] != '2')
339         {
340                 strcpy(WCC->ImportantMessage, &buf[4]);
341                 RetMimeType = DoTemplate(HKEY("files"), NULL, &NoCtx);
342                 http_transmit_thing(ChrPtr(RetMimeType), 0);
343                 return;
344         }
345
346         while (bytes_transmitted < WCC->upload_length)
347         {
348                 blocksize = 4096;
349                 if (blocksize > (WCC->upload_length - bytes_transmitted))
350                 {
351                         blocksize = (WCC->upload_length - bytes_transmitted);
352                 }
353                 serv_printf("WRIT %ld", blocksize);
354                 serv_getln(buf, sizeof buf);
355                 if (buf[0] == '7')
356                 {
357                         blocksize = atoi(&buf[4]);
358                         serv_write(&ChrPtr(WCC->upload)[bytes_transmitted], blocksize);
359                         bytes_transmitted += blocksize;
360                 }
361         }
362
363         serv_puts("UCLS 1");
364         serv_getln(buf, sizeof buf);
365         strcpy(WCC->ImportantMessage, &buf[4]);
366         RetMimeType = DoTemplate(HKEY("files"), NULL, &NoCtx);
367         http_transmit_thing(ChrPtr(RetMimeType), 0);
368 }
369
370
371
372 /*
373  * When the browser requests an image file from the Citadel server,
374  * this function is called to transmit it.
375  */
376 void output_image(void)
377 {
378         StrBuf *Buf;
379         wcsession *WCC = WC;
380         off_t bytes;
381         const char *MimeType;
382         
383         Buf = NewStrBuf();
384         serv_printf("OIMG %s|%s", bstr("name"), bstr("parm"));
385         StrBuf_ServGetln(Buf);
386         if (GetServerStatus(Buf, NULL) == 2) {
387                 int rc;
388                 StrBufCutLeft(Buf, 4);
389                 bytes = StrBufExtract_long(Buf, 0, '|');
390
391                 /** Read it from the server */
392                 
393                 rc = serv_read_binary(WCC->WBuf, bytes, Buf);
394                 serv_puts("CLOS");
395                 StrBuf_ServGetln(Buf);
396                 
397                 if (rc > 0) {
398                         MimeType = GuessMimeType (ChrPtr(WCC->WBuf), StrLength(WCC->WBuf));
399                         /** Write it to the browser */
400                         if (!IsEmptyStr(MimeType))
401                         {
402                                 http_transmit_thing(MimeType, 0);
403                                 FreeStrBuf(&Buf);
404                                 return;
405                         }
406                 }
407                 /* hm... unknown mimetype? fallback to blank gif */
408         } 
409
410         
411         /*
412          * Instead of an ugly 404, send a 1x1 transparent GIF
413          * when there's no such image on the server.
414          */
415         StrBufPrintf (Buf, "%s%s", static_dirs[0], "/webcit_icons/blank.gif");
416         output_static(ChrPtr(Buf));
417         FreeStrBuf(&Buf);
418 }
419
420 void 
421 InitModule_DOWNLOAD
422 (void)
423 {
424
425         RegisterIterator("ROOM:FILES", 0, NULL, LoadFileList,
426                          NULL, DeleteHash, CTX_FILELIST, CTX_NONE, 
427                          IT_FLAG_DETECT_GROUPCHANGE);
428
429         RegisterSortFunc(HKEY("filemime"),
430                          NULL, 0,
431                          CompareFilelistByMime,
432                          CompareFilelistByMimeRev,
433                          GroupchangeFilelistByMime,
434                          CTX_FILELIST);
435         RegisterSortFunc(HKEY("filename"),
436                          NULL, 0,
437                          CompareFilelistByName,
438                          CompareFilelistByNameRev,
439                          GroupchangeFilelistByName,
440                          CTX_FILELIST);
441         RegisterSortFunc(HKEY("filesize"),
442                          NULL, 0,
443                          CompareFilelistBySize,
444                          CompareFilelistBySizeRev,
445                          GroupchangeFilelistBySize,
446                          CTX_FILELIST);
447         RegisterSortFunc(HKEY("filesubject"),
448                          NULL, 0,
449                          CompareFilelistByComment,
450                          CompareFilelistByCommentRev,
451                          GroupchangeFilelistByComment,
452                          CTX_FILELIST);
453         RegisterSortFunc(HKEY("fileunsorted"),
454                          NULL, 0,
455                          CompareFilelistBySequence,
456                          CompareFilelistBySequence,
457                          GroupchangeFilelistBySequence,
458                          CTX_FILELIST);
459
460         RegisterNamespace("FILE:NAME", 0, 2, tmplput_FILE_NAME, NULL, CTX_FILELIST);
461         RegisterNamespace("FILE:SIZE", 0, 1, tmplput_FILE_SIZE, NULL, CTX_FILELIST);
462         RegisterNamespace("FILE:MIMETYPE", 0, 2, tmplput_FILEMIMETYPE, NULL, CTX_FILELIST);
463         RegisterNamespace("FILE:COMMENT", 0, 2, tmplput_FILE_COMMENT, NULL, CTX_FILELIST);
464
465         RegisterConditional(HKEY("COND:FILE:ISPIC"), 0, Conditional_FILE_ISPIC, CTX_FILELIST);
466
467         WebcitAddUrlHandler(HKEY("image"), "", 0, output_image, ANONYMOUS);
468         WebcitAddUrlHandler(HKEY("display_mime_icon"), "", 0, display_mime_icon , ANONYMOUS);
469         WebcitAddUrlHandler(HKEY("download_file"), "", 0, download_file, NEED_URL);
470         WebcitAddUrlHandler(HKEY("delete_file"), "", 0, delete_file, NEED_URL);
471         WebcitAddUrlHandler(HKEY("upload_file"), "", 0, upload_file, 0);
472 }