Remove previous commit, we actually have GuessMimeByFilename() in libcitadel for...
[citadel.git] / citadel / modules / image / serv_image.c
1 /*
2  * Copyright (c) 1987-2016 by the citadel.org team
3  *
4  * This program is open source software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 3 of the License, or
7  * (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
15 #include "ctdl_module.h"
16 #include "config.h"
17
18 #include <sys/types.h>
19 #include <sys/stat.h>
20 #include <dirent.h>
21
22
23
24 /*
25  * DownLoad User Image (see their avatar or photo or whatever)
26  * If this command succeeds, it follows the same protocol as the DLAT command.
27  */
28 void cmd_dlui(char *cmdbuf)
29 {
30         struct ctdluser ruser;
31         char buf[SIZ];
32
33         if (CtdlAccessCheck(ac_logged_in_or_guest)) return;
34         extract_token(buf, cmdbuf, 0, '|', sizeof buf);
35         if (CtdlGetUser(&ruser, buf) != 0) {
36                 cprintf("%d No such user.\n", ERROR + NO_SUCH_USER);
37                 return;
38         }
39         if (ruser.msgnum_pic < 1) {
40                 cprintf("%d No image found.\n", ERROR + FILE_NOT_FOUND);
41                 return;
42         }
43
44         struct CtdlMessage *msg = CtdlFetchMessage(ruser.msgnum_pic, 1, 1);
45         if (msg != NULL) {
46                 // The call to CtdlOutputPreLoadedMsg() with MT_SPEW_SECTION will cause the DLUI command
47                 // to have the same output format as the DLAT command, because it calls the same code.
48                 // For example: 600 402132|-1||image/gif|
49                 safestrncpy(CC->download_desired_section, "1", sizeof CC->download_desired_section);
50                 CtdlOutputPreLoadedMsg(msg, MT_SPEW_SECTION, HEADERS_NONE, 1, 0, 0);
51                 CM_Free(msg);
52         }
53         else {
54                 cprintf("%d No image found.\n", ERROR + MESSAGE_NOT_FOUND);
55                 return;
56         }
57 }
58
59
60 /*
61  * DownLoad User Image (avatar or photo or whatever)
62  */
63 void cmd_ului(char *cmdbuf)
64 {
65         long data_length;
66         char mimetype[SIZ];
67         char username[USERNAME_SIZE];
68
69         if (CtdlAccessCheck(ac_logged_in_or_guest)) return;
70
71         if (num_parms(cmdbuf) < 2)
72         {
73                 cprintf("%d Usage error\n", ERROR + ILLEGAL_VALUE);
74                 return;
75         }
76
77         data_length = extract_long(cmdbuf, 0);
78         extract_token(mimetype, cmdbuf, 1, '|', sizeof mimetype);
79         extract_token(username, cmdbuf, 2, '|', sizeof username);
80
81         if (data_length < 20) {
82                 cprintf("%d That's an awfully small file.  Try again.\n", ERROR + ILLEGAL_VALUE);
83                 return;
84         }
85
86         if (strncasecmp(mimetype, "image/", 6)) {
87                 cprintf("%d Only image files are permitted.\n", ERROR + ILLEGAL_VALUE);
88                 return;
89         }
90
91         if (IsEmptyStr(username)) {
92                 safestrncpy(username, CC->curr_user, sizeof username);
93         }
94
95         // Normal users can only change their own photo
96         if ( (strcasecmp(username, CC->curr_user)) && (CC->user.axlevel < AxAideU) && (!CC->internal_pgm) ) {
97                 cprintf("%d Higher access required to change another user's photo.\n", ERROR + HIGHER_ACCESS_REQUIRED);
98         }
99
100         // Check to make sure the user exists
101         struct ctdluser usbuf;
102         if (CtdlGetUser(&usbuf, username) != 0) {               // check for existing user, don't lock it yet
103                 cprintf("%d %s not found.\n", ERROR + NO_SUCH_USER , username);
104                 return;
105         }
106
107         char *unencoded_data = malloc(data_length + 1);
108         if (!unencoded_data) {
109                 cprintf("%d Could not allocate %ld bytes of memory\n", ERROR + INTERNAL_ERROR , data_length);
110                 return;
111         }
112
113         cprintf("%d %ld\n", SEND_BINARY, data_length);
114         client_read(unencoded_data, data_length);
115
116         // We've got the data read from the client, now save it.
117         // FIXME do this
118
119         free(unencoded_data);
120 }
121
122
123 /*
124  * Import function called by import_old_userpic_files() for a single user
125  */
126 void import_one_userpic_file(char *username, long usernum, char *path)
127 {
128         syslog(LOG_DEBUG, "Import legacy userpic for %s, usernum=%ld, filename=%s", username, usernum, path);
129
130         FILE *fp = fopen(path, "r");
131         if (!fp) return;
132
133         fseek(fp, 0, SEEK_END);
134         long data_length = ftell(fp);
135
136         if (data_length >= 1) {
137                 rewind(fp);
138                 char *unencoded_data = malloc(data_length);
139                 if (unencoded_data) {
140                         fread(unencoded_data, data_length, 1, fp);
141                         char *encoded_data = malloc((data_length * 2) + 100);
142                         if (encoded_data) {
143                                 sprintf(encoded_data, "Content-type: %s\nContent-transfer-encoding: base64\n\n", GuessMimeByFilename(path, strlen(path)));
144                                 CtdlEncodeBase64(&encoded_data[strlen(encoded_data)], unencoded_data, data_length, 1);
145
146                                 char userconfigroomname[ROOMNAMELEN];
147                                 struct ctdluser usbuf;
148
149                                 if (CtdlGetUser(&usbuf, username) == 0) {       // no need to lock it , we are still initializing
150                                         long old_msgnum = usbuf.msgnum_pic;
151                                         CtdlMailboxName(userconfigroomname, sizeof userconfigroomname, &usbuf, USERCONFIGROOM);
152                                         long new_msgnum = quickie_message("Citadel", NULL, NULL, userconfigroomname, encoded_data, FMT_RFC822, "Photo imported from file");
153                                         syslog(LOG_DEBUG, "Message %ld is now the profile for %s", new_msgnum, username);
154                                         usbuf.msgnum_pic = new_msgnum;
155                                         CtdlPutUser(&usbuf);
156                                         unlink(path);                           // delete the old file , it's in the database now
157                                         if (old_msgnum > 0) {
158                                                 syslog(LOG_DEBUG, "Deleting old message %ld from %s", old_msgnum, userconfigroomname);
159                                                 CtdlDeleteMessages(userconfigroomname, &old_msgnum, 1, "");
160                                         }
161                                 }
162                                 free(encoded_data);
163                         }
164                         free(unencoded_data);
165                 }
166         }
167         fclose(fp);
168 }
169
170
171 /*
172  * Look for old-format "userpic" files and import them into the message base
173  */
174 void import_old_userpic_files(void)
175 {
176         DIR *filedir = NULL;
177         struct dirent *filedir_entry;
178         struct dirent *d;
179         size_t d_namelen;
180         struct ctdluser usbuf;
181         long usernum = 0;
182         int d_type = 0;
183         struct stat s;
184         char path[PATH_MAX];
185
186
187         syslog(LOG_DEBUG, "Importing old style userpic files into the message base");
188         d = (struct dirent *)malloc(offsetof(struct dirent, d_name) + PATH_MAX + 2);
189         if (d == NULL) {
190                 return;
191         }
192
193         filedir = opendir (ctdl_usrpic_dir);
194         if (filedir == NULL) {
195                 free(d);
196                 return;
197         }
198         while ((readdir_r(filedir, d, &filedir_entry) == 0) &&
199                (filedir_entry != NULL))
200         {
201 #ifdef _DIRENT_HAVE_D_NAMLEN
202                 d_namelen = filedir_entry->d_namlen;
203
204 #else
205                 d_namelen = strlen(filedir_entry->d_name);
206 #endif
207
208 #ifdef _DIRENT_HAVE_D_TYPE
209                 d_type = filedir_entry->d_type;
210 #else
211
212 #ifndef DT_UNKNOWN
213 #define DT_UNKNOWN     0
214 #define DT_DIR         4
215 #define DT_REG         8
216 #define DT_LNK         10
217
218 #define IFTODT(mode)   (((mode) & 0170000) >> 12)
219 #define DTTOIF(dirtype)        ((dirtype) << 12)
220 #endif
221                 d_type = DT_UNKNOWN;
222 #endif
223                 if ((d_namelen == 1) && 
224                     (filedir_entry->d_name[0] == '.'))
225                         continue;
226
227                 if ((d_namelen == 2) && 
228                     (filedir_entry->d_name[0] == '.') &&
229                     (filedir_entry->d_name[1] == '.'))
230                         continue;
231
232                 snprintf(path, PATH_MAX, "%s/%s", ctdl_usrpic_dir, filedir_entry->d_name);
233                 if (d_type == DT_UNKNOWN) {
234                         if (lstat(path, &s) == 0) {
235                                 d_type = IFTODT(s.st_mode);
236                         }
237                 }
238                 switch (d_type)
239                 {
240                 case DT_DIR:
241                         break;
242                 case DT_LNK:
243                 case DT_REG:
244                         usernum = atol(filedir_entry->d_name);
245                         if (CtdlGetUserByNumber(&usbuf, usernum) == 0) {
246                                 import_one_userpic_file(usbuf.fullname, usernum, path);
247                         }
248                 }
249         }
250         free(d);
251         closedir(filedir);
252         rmdir(ctdl_usrpic_dir);
253 }
254
255
256
257 CTDL_MODULE_INIT(image)
258 {
259         if (!threading)
260         {
261                 import_old_userpic_files();
262                 CtdlRegisterProtoHook(cmd_dlui, "DLUI", "DownLoad User Image");
263                 CtdlRegisterProtoHook(cmd_ului, "ULUI", "UpLoad User Image");
264         }
265         /* return our module name for the log */
266         return "image";
267 }