1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215
|
/*
* Handles HTTP upload of graphics files into the system.
*
* Copyright (c) 1996-2016 by the citadel.org team
*
* This program is open source software. You can redistribute it and/or
* modify it under the terms of the GNU General Public License, version 3.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*/
#include "webcit.h"
extern void output_static(const char* What);
// display the picture (icon, photo, whatever) associated with the current room
void display_roompic(void) {
off_t bytes;
StrBuf *Buf = NewStrBuf();
serv_printf("DLRI");
StrBuf_ServGetln(Buf);
if (GetServerStatus(Buf, NULL) == 6) {
StrBufCutLeft(Buf, 4);
bytes = StrBufExtract_long(Buf, 0, '|');
StrBuf *content_type = NewStrBuf();
StrBufExtract_token(content_type, Buf, 3, '|');
WC->WBuf = NewStrBuf();
StrBuf_ServGetBLOBBuffered(WC->WBuf, bytes);
http_transmit_thing(ChrPtr(content_type), 0);
FreeStrBuf(&content_type);
}
else {
output_error_pic("", "");
}
FreeStrBuf(&Buf);
}
// upload the picture (icon, photo, whatever) associated with the current room
void common_code_for_editroompic_and_editpic(char *servcmd)
{
if (havebstr("cancel_button")) {
AppendImportantMessage(_("Graphics upload has been cancelled."), -1);
display_main_menu();
return;
}
if (WC->upload_length == 0) {
AppendImportantMessage(_("You didn't upload a file."), -1);
display_main_menu();
return;
}
serv_printf("%s %ld|%s", servcmd, (long)WC->upload_length, GuessMimeType(ChrPtr(WC->upload), WC->upload_length));
StrBuf *Line = NewStrBuf();
StrBuf_ServGetln(Line);
if (GetServerStatusMsg(Line, NULL, 0, 0) == 7) {
serv_write(ChrPtr(WC->upload), WC->upload_length);
display_success(ChrPtr(Line) + 4);
}
else {
AppendImportantMessage((ChrPtr(Line) + 4), -1);
display_main_menu();
}
FreeStrBuf(&Line);
}
// upload the picture (icon, photo, whatever) associated with the current room
void editroompic(void)
{
common_code_for_editroompic_and_editpic("ULRI");
}
// upload the picture (icon, photo, whatever) associated with the current user
void editpic(void)
{
common_code_for_editroompic_and_editpic("ULUI");
}
// display the screen for uploading graphics to the server
void display_graphics_upload(char *filename)
{
StrBuf *Line;
Line = NewStrBuf();
serv_printf("UIMG 0||%s", filename);
StrBuf_ServGetln(Line);
if (GetServerStatusMsg(Line, NULL, 1, 2) != 2) {
display_main_menu();
return;
}
else
{
output_headers(1, 0, 0, 0, 1, 0);
do_template("files_graphicsupload");
end_burst();
}
FreeStrBuf(&Line);
}
void do_graphics_upload(char *filename)
{
StrBuf *Line;
const char *MimeType;
wcsession *WCC = WC;
int bytes_remaining;
int pos = 0;
int thisblock;
bytes_remaining = WCC->upload_length;
if (havebstr("cancel_button")) {
AppendImportantMessage(_("Graphics upload has been cancelled."), -1);
display_main_menu();
return;
}
if (WCC->upload_length == 0) {
AppendImportantMessage(_("You didn't upload a file."), -1);
display_main_menu();
return;
}
MimeType = GuessMimeType(ChrPtr(WCC->upload), bytes_remaining);
serv_printf("UIMG 1|%s|%s", MimeType, filename);
Line = NewStrBuf();
StrBuf_ServGetln(Line);
if (GetServerStatusMsg(Line, NULL, 1, 2) != 2) {
display_main_menu();
FreeStrBuf(&Line);
return;
}
while (bytes_remaining) {
thisblock = ((bytes_remaining > 4096) ? 4096 : bytes_remaining);
serv_printf("WRIT %d", thisblock);
StrBuf_ServGetln(Line);
if (GetServerStatusMsg(Line, NULL, 1, 7) != 7) {
serv_puts("UCLS 0");
StrBuf_ServGetln(Line);
display_main_menu();
FreeStrBuf(&Line);
return;
}
thisblock = extract_int(ChrPtr(Line) +4, 0);
serv_write(&ChrPtr(WCC->upload)[pos], thisblock);
pos += thisblock;
bytes_remaining -= thisblock;
}
serv_puts("UCLS 1");
StrBuf_ServGetln(Line);
if (*ChrPtr(Line) != 'x') {
display_success(ChrPtr(Line) + 4);
}
FreeStrBuf(&Line);
}
void edithellopic(void) { do_graphics_upload("hello"); }
void editgoodbuyepic(void) { do_graphics_upload("UIMG 1|%s|goodbuye"); }
/* The users photo display / upload facility */
void display_editpic(void) {
putbstr("__PICDESC", NewStrBufPlain(_("your photo"), -1));
putbstr("__UPLURL", NewStrBufPlain(HKEY("editpic")));
display_graphics_upload("editpic");
}
/* room picture dispay / upload facility */
void display_editroompic(void) {
putbstr("__PICDESC", NewStrBufPlain(_("the icon for this room"), -1));
putbstr("__UPLURL", NewStrBufPlain(HKEY("editroompic")));
display_graphics_upload("editroompic");
}
/* the greetingpage hello pic */
void display_edithello(void) {
putbstr("__WHICHPIC", NewStrBufPlain(HKEY("hello")));
putbstr("__PICDESC", NewStrBufPlain(_("the Greetingpicture for the login prompt"), -1));
putbstr("__UPLURL", NewStrBufPlain(HKEY("edithellopic")));
display_graphics_upload("edithellopic");
}
/* the logoff banner */
void display_editgoodbyepic(void) {
putbstr("__WHICHPIC", NewStrBufPlain(HKEY("UIMG 0|%s|goodbuye")));
putbstr("__PICDESC", NewStrBufPlain(_("the Logoff banner picture"), -1));
putbstr("__UPLURL", NewStrBufPlain(HKEY("editgoodbuyepic")));
display_graphics_upload("editgoodbuyepic");
}
void
InitModule_GRAPHICS
(void)
{
WebcitAddUrlHandler(HKEY("display_editpic"), "", 0, display_editpic, 0);
WebcitAddUrlHandler(HKEY("editpic"), "", 0, editpic, 0);
WebcitAddUrlHandler(HKEY("display_editroompic"), "", 0, display_editroompic, 0);
WebcitAddUrlHandler(HKEY("editroompic"), "", 0, editroompic, 0);
WebcitAddUrlHandler(HKEY("display_edithello"), "", 0, display_edithello, 0);
WebcitAddUrlHandler(HKEY("edithellopic"), "", 0, edithellopic, 0);
WebcitAddUrlHandler(HKEY("display_editgoodbuye"), "", 0, display_editgoodbyepic, 0);
WebcitAddUrlHandler(HKEY("editgoodbuyepic"), "", 0, editgoodbuyepic, 0);
WebcitAddUrlHandler(HKEY("roompic"), "", 0, display_roompic, 0);
}
|