af2ddbd51c4465b895261e89b1773e07314d31f9
[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                                 // FIXME try to guess the content-type based on the filename, don't assume GIF
144                                 sprintf(encoded_data, "Content-type: image/gif\nContent-transfer-encoding: base64\n\n");
145                                 CtdlEncodeBase64(&encoded_data[strlen(encoded_data)], unencoded_data, data_length, 1);
146
147                                 char userconfigroomname[ROOMNAMELEN];
148                                 struct ctdluser usbuf;
149
150                                 if (CtdlGetUser(&usbuf, username) == 0) {       // no need to lock it , we are still initializing
151                                         long old_msgnum = usbuf.msgnum_pic;
152                                         CtdlMailboxName(userconfigroomname, sizeof userconfigroomname, &usbuf, USERCONFIGROOM);
153                                         long new_msgnum = quickie_message("Citadel", NULL, NULL, userconfigroomname, encoded_data, FMT_RFC822, "Photo imported from file");
154                                         syslog(LOG_DEBUG, "Message %ld is now the profile for %s", new_msgnum, username);
155                                         usbuf.msgnum_pic = new_msgnum;
156                                         CtdlPutUser(&usbuf);
157                                         unlink(path);                           // delete the old file , it's in the database now
158                                         if (old_msgnum > 0) {
159                                                 syslog(LOG_DEBUG, "Deleting old message %ld from %s", old_msgnum, userconfigroomname);
160                                                 CtdlDeleteMessages(userconfigroomname, &old_msgnum, 1, "");
161                                         }
162                                 }
163                                 free(encoded_data);
164                         }
165                         free(unencoded_data);
166                 }
167         }
168         fclose(fp);
169 }
170
171
172 /*
173  * Look for old-format "userpic" files and import them into the message base
174  */
175 void import_old_userpic_files(void)
176 {
177         DIR *filedir = NULL;
178         struct dirent *filedir_entry;
179         struct dirent *d;
180         size_t d_namelen;
181         struct ctdluser usbuf;
182         long usernum = 0;
183         int d_type = 0;
184         struct stat s;
185         char path[PATH_MAX];
186
187
188         syslog(LOG_DEBUG, "Importing old style userpic files into the message base");
189         d = (struct dirent *)malloc(offsetof(struct dirent, d_name) + PATH_MAX + 2);
190         if (d == NULL) {
191                 return;
192         }
193
194         filedir = opendir (ctdl_usrpic_dir);
195         if (filedir == NULL) {
196                 free(d);
197                 return;
198         }
199         while ((readdir_r(filedir, d, &filedir_entry) == 0) &&
200                (filedir_entry != NULL))
201         {
202 #ifdef _DIRENT_HAVE_D_NAMLEN
203                 d_namelen = filedir_entry->d_namlen;
204
205 #else
206                 d_namelen = strlen(filedir_entry->d_name);
207 #endif
208
209 #ifdef _DIRENT_HAVE_D_TYPE
210                 d_type = filedir_entry->d_type;
211 #else
212
213 #ifndef DT_UNKNOWN
214 #define DT_UNKNOWN     0
215 #define DT_DIR         4
216 #define DT_REG         8
217 #define DT_LNK         10
218
219 #define IFTODT(mode)   (((mode) & 0170000) >> 12)
220 #define DTTOIF(dirtype)        ((dirtype) << 12)
221 #endif
222                 d_type = DT_UNKNOWN;
223 #endif
224                 if ((d_namelen == 1) && 
225                     (filedir_entry->d_name[0] == '.'))
226                         continue;
227
228                 if ((d_namelen == 2) && 
229                     (filedir_entry->d_name[0] == '.') &&
230                     (filedir_entry->d_name[1] == '.'))
231                         continue;
232
233                 snprintf(path, PATH_MAX, "%s/%s", ctdl_usrpic_dir, filedir_entry->d_name);
234                 if (d_type == DT_UNKNOWN) {
235                         if (lstat(path, &s) == 0) {
236                                 d_type = IFTODT(s.st_mode);
237                         }
238                 }
239                 switch (d_type)
240                 {
241                 case DT_DIR:
242                         break;
243                 case DT_LNK:
244                 case DT_REG:
245                         usernum = atol(filedir_entry->d_name);
246                         if (CtdlGetUserByNumber(&usbuf, usernum) == 0) {
247                                 import_one_userpic_file(usbuf.fullname, usernum, path);
248                         }
249                 }
250         }
251         free(d);
252         closedir(filedir);
253         rmdir(ctdl_usrpic_dir);
254 }
255
256
257
258 CTDL_MODULE_INIT(image)
259 {
260         if (!threading)
261         {
262                 import_old_userpic_files();
263                 CtdlRegisterProtoHook(cmd_dlui, "DLUI", "DownLoad User Image");
264                 CtdlRegisterProtoHook(cmd_ului, "ULUI", "UpLoad User Image");
265         }
266         /* return our module name for the log */
267         return "image";
268 }