Moved webcit display of user photo to the new protocol
[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         extract_token(buf, cmdbuf, 0, '|', sizeof buf);
34         if (CtdlGetUser(&ruser, buf) != 0) {
35                 cprintf("%d No such user.\n", ERROR + NO_SUCH_USER);
36                 return;
37         }
38         if (ruser.msgnum_pic < 1) {
39                 cprintf("%d No image found.\n", ERROR + FILE_NOT_FOUND);
40                 return;
41         }
42
43         struct CtdlMessage *msg = CtdlFetchMessage(ruser.msgnum_pic, 1, 1);
44         if (msg != NULL) {
45                 // 600 402132|-1||image/gif|
46                 safestrncpy(CC->download_desired_section, "1", sizeof CC->download_desired_section);
47                 CtdlOutputPreLoadedMsg(msg, MT_SPEW_SECTION, HEADERS_NONE, 1, 0, 0);
48                 CM_Free(msg);
49         }
50         else {
51                 cprintf("%d No image found.\n", ERROR + MESSAGE_NOT_FOUND);
52                 return;
53         }
54 }
55
56
57
58
59 /*
60  * Import function called by import_old_userpic_files() for a single user
61  */
62 void import_one_userpic_file(char *username, long usernum, char *path)
63 {
64         syslog(LOG_DEBUG, "Import legacy userpic for %s, usernum=%ld, filename=%s", username, usernum, path);
65
66         FILE *fp = fopen(path, "r");
67         if (!fp) return;
68
69         fseek(fp, 0, SEEK_END);
70         long data_length = ftell(fp);
71
72         if (data_length >= 1) {
73                 rewind(fp);
74                 char *unencoded_data = malloc(data_length);
75                 if (unencoded_data) {
76                         fread(unencoded_data, data_length, 1, fp);
77                         char *encoded_data = malloc((data_length * 2) + 100);
78                         if (encoded_data) {
79                                 sprintf(encoded_data, "Content-type: image/gif\nContent-transfer-encoding: base64\n\n");
80                                 CtdlEncodeBase64(&encoded_data[strlen(encoded_data)], unencoded_data, data_length, 1);
81
82                                 char userconfigroomname[ROOMNAMELEN];
83                                 struct ctdluser usbuf;
84
85                                 if (CtdlGetUser(&usbuf, username) == 0) {       // no need to lock it , we are still initializing
86                                         long old_msgnum = usbuf.msgnum_pic;
87                                         CtdlMailboxName(userconfigroomname, sizeof userconfigroomname, &usbuf, USERCONFIGROOM);
88                                         long new_msgnum = quickie_message("Citadel", NULL, NULL, userconfigroomname, encoded_data, FMT_RFC822, "Photo imported from file");
89                                         syslog(LOG_DEBUG, "Message %ld is now the profile for %s", new_msgnum, username);
90                                         usbuf.msgnum_pic = new_msgnum;
91                                         CtdlPutUser(&usbuf);
92                                         unlink(path);                           // delete the old file , it's in the database now
93                                         if (old_msgnum > 0) {
94                                                 syslog(LOG_DEBUG, "Deleting old message %ld from %s", old_msgnum, userconfigroomname);
95                                                 CtdlDeleteMessages(userconfigroomname, &old_msgnum, 1, "");
96                                         }
97                                 }
98                                 free(encoded_data);
99                         }
100                         free(unencoded_data);
101                 }
102         }
103         fclose(fp);
104 }
105
106
107 /*
108  * Look for old-format "userpic" files and import them into the message base
109  */
110 void import_old_userpic_files(void)
111 {
112         DIR *filedir = NULL;
113         struct dirent *filedir_entry;
114         struct dirent *d;
115         size_t d_namelen;
116         struct ctdluser usbuf;
117         long usernum = 0;
118         int d_type = 0;
119         struct stat s;
120         char path[PATH_MAX];
121
122
123         syslog(LOG_DEBUG, "Importing old style userpic files into the message base");
124         d = (struct dirent *)malloc(offsetof(struct dirent, d_name) + PATH_MAX + 2);
125         if (d == NULL) {
126                 return;
127         }
128
129         filedir = opendir (ctdl_usrpic_dir);
130         if (filedir == NULL) {
131                 free(d);
132                 return;
133         }
134         while ((readdir_r(filedir, d, &filedir_entry) == 0) &&
135                (filedir_entry != NULL))
136         {
137 #ifdef _DIRENT_HAVE_D_NAMLEN
138                 d_namelen = filedir_entry->d_namlen;
139
140 #else
141                 d_namelen = strlen(filedir_entry->d_name);
142 #endif
143
144 #ifdef _DIRENT_HAVE_D_TYPE
145                 d_type = filedir_entry->d_type;
146 #else
147
148 #ifndef DT_UNKNOWN
149 #define DT_UNKNOWN     0
150 #define DT_DIR         4
151 #define DT_REG         8
152 #define DT_LNK         10
153
154 #define IFTODT(mode)   (((mode) & 0170000) >> 12)
155 #define DTTOIF(dirtype)        ((dirtype) << 12)
156 #endif
157                 d_type = DT_UNKNOWN;
158 #endif
159                 if ((d_namelen == 1) && 
160                     (filedir_entry->d_name[0] == '.'))
161                         continue;
162
163                 if ((d_namelen == 2) && 
164                     (filedir_entry->d_name[0] == '.') &&
165                     (filedir_entry->d_name[1] == '.'))
166                         continue;
167
168                 snprintf(path, PATH_MAX, "%s/%s", ctdl_usrpic_dir, filedir_entry->d_name);
169                 if (d_type == DT_UNKNOWN) {
170                         if (lstat(path, &s) == 0) {
171                                 d_type = IFTODT(s.st_mode);
172                         }
173                 }
174                 switch (d_type)
175                 {
176                 case DT_DIR:
177                         break;
178                 case DT_LNK:
179                 case DT_REG:
180                         usernum = atol(filedir_entry->d_name);
181                         if (CtdlGetUserByNumber(&usbuf, usernum) == 0) {
182                                 import_one_userpic_file(usbuf.fullname, usernum, path);
183                         }
184                 }
185         }
186         free(d);
187         closedir(filedir);
188         rmdir(ctdl_usrpic_dir);
189 }
190
191
192
193 CTDL_MODULE_INIT(image)
194 {
195         if (!threading)
196         {
197                 import_old_userpic_files();
198                 CtdlRegisterProtoHook(cmd_dlui, "DLUI", "DownLoad User Image");
199         }
200         /* return our module name for the log */
201         return "image";
202 }