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 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515
|
/* Copyright (C) 2007-2011 by George Williams */
/*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice, this
* list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
* The name of the author may not be used to endorse or promote products
* derived from this software without specific prior written permission.
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
* EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
* OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "fontforgevw.h"
#include <ustring.h>
#include <utype.h>
#include <gio.h>
#if defined(__MINGW32__)
int HasLicense(SplineFont *sf,FILE *tmp) {
return true;
}
int OFLibUploadFont(OFLibData *oflib) {
return false;
}
int HttpGetBuf(char *url, char *databuf, int *datalen, void *_lock) {
return -1;
}
FILE *URLToTempFile(char *url,void *_lock) {
return NULL;
}
int URLFromFile(char *url,FILE *from) {
return false;
}
#else
#include <stdio.h>
#include <unistd.h>
#include <sys/select.h>
#include <sys/types.h>
#include <sys/socket.h>
#ifndef MSG_NOSIGNAL
#define MSG_NOSIGNAL 0x0 /* linux man page for "send" implies MSG_NOSIGNAL is in sys/socket.h, but it ain't implemente for Mac and Solaris */
#endif
#include <netinet/in.h>
#include <arpa/inet.h>
#include <netdb.h>
#include <string.h>
#include <stdlib.h>
#include <time.h>
#include <errno.h>
#include <pthread.h>
struct siteinfo {
int cookie_cnt;
char *cookies[30];
int user_id;
char *upload_id;
};
enum conversation_type { ct_savecookies, ct_slurpdata, ct_getuserid, ct_getuploadid };
static int findhost(struct sockaddr_in *addr, char *hostname) {
struct hostent *hostent;
int i;
static int last_len;
static char last_addr[40];
static char *last_host=NULL;
if ( last_host!=NULL && strcmp(last_host,hostname)==0 ) {
memcpy(&addr->sin_addr,last_addr,last_len);
return( 1 );
} else {
hostent = gethostbyname(hostname);
if ( hostent==NULL )
return( 0 );
}
for ( i=0; hostent->h_addr_list[i]!=NULL; ++i );
memcpy(&addr->sin_addr,hostent->h_addr_list[rand()%i],hostent->h_length);
if ( hostent->h_length < sizeof(last_addr)) { /* Cache the last hostname, in case they ask for it again */
free(last_host); last_host = copy(hostname);
last_len = hostent->h_length;
memcpy(last_addr,hostent->h_addr_list[rand()%i],hostent->h_length);
}
endhostent();
return( 1 );
}
static pthread_mutex_t host_lock = PTHREAD_MUTEX_INITIALIZER;
static int findHTTPhost(struct sockaddr_in *addr, char *hostname, int port) {
struct servent *servent;
int ret;
pthread_mutex_lock(&host_lock);
memset(addr,0,sizeof(*addr));
addr->sin_family = AF_INET;
if ( port>=0 )
addr->sin_port = htons(port);
else if (( servent = getservbyname("http","tcp"))!=NULL )
addr->sin_port = servent->s_port; /* Already in server byteorder */
else
addr->sin_port = htons(80);
endservent();
ret = findhost(addr,hostname);
pthread_mutex_unlock(&host_lock);
return( ret );
}
static int findFTPhost(struct sockaddr_in *addr, char *hostname, int port) {
struct servent *servent;
int ret;
pthread_mutex_lock(&host_lock);
memset(addr,0,sizeof(*addr));
addr->sin_family = AF_INET;
if ( port>=0 )
addr->sin_port = htons(port);
else if (( servent = getservbyname("ftp","tcp"))!=NULL )
addr->sin_port = servent->s_port; /* Already in server byteorder */
else
addr->sin_port = htons(21);
endservent();
ret = findhost(addr,hostname);
pthread_mutex_unlock(&host_lock);
return( ret );
}
/* this excedingly complex routine tries to send data on a socket. */
/* first it waits until the socket is ready to accept data (there is no time-*/
/* out on send/write), checking to see if the user has aborted the operation */
/* if an interrupt happens which kills the select call then restart the call */
/* if we get an select error we assume the connection died. If we time-out we*/
/* essentially assume the same. If the send fails, ditto. If everything succedes */
/* record that we sent the command */
static int ftpsend(int ctl, char *cmd) {
struct timeval tv;
fd_set wts;
int i=0, ret=0;
restart:
FD_ZERO(&wts);
while ( i<60 ) {
FD_SET(ctl,&wts);
tv.tv_sec = 4; tv.tv_usec = 0;
if (( ret = select(ctl+1,NULL,&wts,NULL,&tv))<0 ) {
if ( errno==EINTR )
goto restart;
return( -1 );
} else if ( ret>0 )
break;
++i;
}
if ( ret==0 ) {
return( -1 );
}
if ( send(ctl,cmd,strlen(cmd),MSG_NOSIGNAL)<=0 ) {
if ( errno==EINTR ) /* interrupted, try again */
goto restart;
return( -1 );
}
return( true );
}
/* Similar thing for read */
static int getresponse(int ctl, char *buf, int buflen) {
struct timeval tv;
fd_set rds;
int len;
int ret=false, i;
char *pt, *start;
restart:
while ( 1 ) {
FD_ZERO(&rds);
i = 0;
while ( i<60 ) {
FD_SET(ctl,&rds);
tv.tv_sec = 4; tv.tv_usec = 0;
if (( ret = select(ctl+1,&rds,NULL,NULL,&tv))<0 ) {
if ( errno==EINTR )
goto restart;
return( -1 );
} else if ( ret>0 )
break;
++i;
}
if ( ret==0 ) /* Time out */
return( -1 );
len = read(ctl,buf,buflen);
if ( len==0 )
return( -1 );
buf[len]='\0';
start = buf;
while ( (pt = strchr(start,'\n' ))!=NULL ) {
if ( start[3]==' ' )
return(start[0]=='2' || start[0]=='1');
start = pt+1;
}
}
}
static int ftpsendr(int ctl, char *cmd, char *buf, int buflen) {
if ( ftpsend(ctl,cmd)==-1 )
return( -1 );
return( getresponse(ctl,buf,buflen));
}
static int ftpsendpassive(int ctl, struct sockaddr_in *data_addr, char *buf, int buflen) {
char *pt, *start;
if ( ftpsend(ctl,"PASV\r\n")==-1 )
return( -1 );
if ( getresponse(ctl,buf,buflen)== -1 )
return( -1 );
start = buf;
while ( (pt = strchr(start,'\n' ))!=NULL ) {
if ( start[3]==' ' )
break;
start = pt+1;
}
if ( strtol(buf,NULL,10) == 227 ) {
/* 227 Entering Passive Mode (h1,h2,h3,h4,p1,p2) */
int h1,h2,h3,h4,p1,p2;
for ( pt=buf+4; !isdigit(*pt) && *pt!='\n' ; ++pt );
if ( *pt=='\n' )
return( -2 ); /* can't parse it */
sscanf(pt,"%d,%d,%d,%d,%d,%d", &h1, &h2, &h3, &h4, &p1, &p2 );
data_addr->sin_family = AF_INET;
data_addr->sin_port = htons((p1<<8)|p2);
data_addr->sin_addr.s_addr = htonl((h1<<24)|(h2<<16)|(h3<<8)|h4);
return( 1 );
} else if ( *start=='4' || *start=='5' )
return( 0 );
return( 0 ); /* shouldn't get here */
}
static int getTCPsocket() {
struct protoent *protoent;
int proto;
if (( protoent = getprotobyname("tcp"))!=NULL )
proto = protoent->p_proto;
else
proto = IPPROTO_TCP;
endprotoent();
#if MSG_NOSIGNAL!=0 || !defined(SO_NOSIGPIPE)
return( socket(PF_INET,SOCK_STREAM,proto));
#else
{
int soc = socket(PF_INET,SOCK_STREAM,proto);
int value=1;
socklen_t len = sizeof(value);
if ( soc!=-1 )
setsockopt(soc,SOL_SOCKET,SO_NOSIGPIPE,&value,len);
return( soc );
}
#endif
}
static int makeConnection(struct sockaddr_in *addr) {
int soc = getTCPsocket();
if ( soc==-1 )
return( -1 );
if ( connect(soc,(struct sockaddr *) addr,sizeof(*addr))== -1 ) {
perror( "Connect failed?" );
close(soc);
return( -1 );
}
return( soc );
}
static char *UrlEncode(char *to,char *source) {
int nibble;
while ( *source ) {
if ( isalnum(*source) || *source=='$' || *source=='_' )
*to++ = *source;
else if ( *source==' ' )
*to++ = '+';
else {
*to++ = '%';
nibble = (*source>>4)&0xf;
if ( nibble<10 )
*to++ = '0'+nibble;
else
*to++ = 'A'-10 + nibble;
nibble = *source&0xf;
if ( nibble<10 )
*to++ = '0'+nibble;
else
*to++ = 'A'-10 + nibble;
}
++source;
}
*to ='\0';
return( to );
}
static void ChangeLine2_8(char *str) {
ff_progress_change_line2(str);
ff_progress_allow_events();
}
static int Converse(int soc, char *databuf, int databuflen, FILE *msg,
enum conversation_type ct, struct siteinfo *siteinfo ) {
static int verbose = -1;
const char *vtext;
char *pt, *end, *str;
int first, ended, code, len;
int ch;
if ( verbose==-1 ) {
vtext = getenv("FONTFORGE_HTTP_VERBOSE");
if ( vtext==NULL )
verbose = 0;
else if ( *vtext=='\0' )
verbose = 1;
else
verbose = strtol(vtext,NULL,10);
}
if ( verbose ) {
if ( verbose>=2 ) /* Print the entire message */
write(fileno(stdout),databuf,strlen(databuf));
else { /* Otherwise, just headers */
pt = strstr(databuf,"\r\n\r\n"); /* Blank line, end of headers */
if ( pt==NULL )
write(fileno(stdout),databuf,strlen(databuf));
else
write(fileno(stdout),databuf,pt-databuf);
}
write(fileno(stdout),"\n",1);
}
if ( write(soc,databuf,strlen(databuf))==-1 ) {
fprintf( stderr, "Socket write failed\n" );
close( soc );
return( 404 ); /* Random error */
}
if ( msg!=NULL ) {
/* int tot = 0;*/
ff_progress_change_total((int) ((ftell(msg)+databuflen-1)/databuflen) );
rewind(msg);
while ( (len=fread(databuf,1,databuflen,msg))>0 ) {
/*fprintf( stderr, "Total read=%d\n", tot += len );*/
if ( write(soc,databuf,len)==-1 ) {
fprintf( stderr, "Socket write failed3\n" );
close( soc );
return( 404 );
}
if ( !ff_progress_next() )
return( 404 );
if ( verbose>=2 )
write(fileno(stdout),databuf,len);
}
fclose(msg);
if ( !ff_progress_next() )
return( 404 );
ChangeLine2_8(_("Awaiting response"));
}
first = 1; ended = 0;
code = 404;
#if 0
{ FILE *out;
char fbuf[400];
static int msgid=0;
sprintf(fbuf,"response%d", ++msgid);
out = fopen( fbuf,"w");
#endif
while ((len = read(soc,databuf,databuflen))>0 ) {
#if 0
fwrite(databuf,1,len,out);
#endif
if ( first ) {
databuf[len] = '\0';
sscanf(databuf,"HTTP/%*f %d", &code );
first = 0;
}
if ( !ended ) {
pt = databuf;
for ( ;; ) {
end = strstr(pt,"\r\n");
if ( end==NULL ) end = pt+strlen(pt);
if ( end==pt ) {
ended = 1; /* Blank line */
if ( verbose!=0 && verbose<2 )
write(fileno(stdout),databuf,end-databuf);
break;
}
if ( ct == ct_savecookies ) {
ch = *end; *end = '\0';
str = "Set-Cookie: ";
if ( strncmp(pt,str,strlen(str))==0 ) {
char *end2;
pt += strlen(str);
end2 = strstr(pt,"; ");
if ( end2==NULL )
siteinfo->cookies[siteinfo->cookie_cnt++] = copy(pt);
else {
*end2 = '\0';
siteinfo->cookies[siteinfo->cookie_cnt++] = copy(pt);
*end2 = ' ';
}
}
*end = ch;
}
if ( *end=='\0' )
break;
pt = end+2;
}
}
if ( ct== ct_getuserid && (pt=strstr(databuf,"upload_user"))!=NULL ) {
pt = strstr(pt,"value=\"");
if ( pt!=NULL )
siteinfo->user_id = strtol(pt+7,NULL,10);
} else if ( ct== ct_getuploadid && (pt=strstr(databuf,"<!-- CONTENT STARTS -->"))!=NULL ) {
char *search = "http://openfontlibrary.org/media/files/";
pt = strstr(pt,search);
if ( pt!=NULL ) {
char *end = strchr(pt,'"');
pt += strlen(search);
if ( end!=NULL )
siteinfo->upload_id = copyn(pt,end-pt);
}
}
if ( verbose>=2 || ( verbose!=0 && verbose<2 && !ended) )
write(fileno(stdout),databuf,len);
}
#if 0
fclose(out);
}
#endif
if ( len==-1 )
fprintf( stderr, "Socket read failed\n" );
close( soc );
return( code );
}
static void AttachCookies(char *databuf,struct siteinfo *siteinfo) {
int i;
if ( siteinfo->cookie_cnt>0 ) {
databuf += strlen( databuf );
sprintf(databuf, "Cookie: %s", siteinfo->cookies[0] );
for ( i=1; i<siteinfo->cookie_cnt; ++i )
sprintf(databuf+strlen(databuf), "; %s", siteinfo->cookies[i] );
strcat(databuf,"\r\n");
}
}
static int dumpfile(FILE *formdata,FILE *dump, char *pathspec) {
int ch;
if ( dump==NULL )
dump = fopen( pathspec,"rb");
if ( dump==NULL ) {
fclose(formdata);
ff_progress_end_indicator();
return( false );
}
while ( (ch=getc(dump))!=EOF )
putc(ch,formdata);
fclose(dump);
fprintf(formdata,"\r\n"); /* Final line break not part of message (I hope) */
return( true );
}
int HasLicense(SplineFont *sf,FILE *tmp) {
struct ttflangname *strings;
char *license=NULL, *enlicense=NULL, *lu=NULL, *enlu=NULL;
for ( strings=sf->names; strings!=NULL; strings = strings->next ) {
if ( strings->lang==0x409 ) {
enlicense = strings->names[ttf_license];
enlu = strings->names[ttf_licenseurl];
}
if ( license==NULL && strings->names[ttf_license]!=NULL )
license = strings->names[ttf_license];
if ( lu==NULL && strings->names[ttf_licenseurl]!=NULL )
lu = strings->names[ttf_licenseurl];
}
if ( tmp==NULL )
return( license!=NULL || lu!=NULL );
if ( license==NULL && lu==NULL )
return( false );
if ( enlicense!=NULL )
fwrite(enlicense,1,strlen(enlicense),tmp);
else if ( license!=NULL )
fwrite(license,1,strlen(license),tmp);
if ( license!=NULL && lu!=NULL ) {
char *info = "\r\n---------------------------\r\nSee Also:\r\n";
fwrite(info,1,strlen(info),tmp);
}
if ( enlu!=NULL )
fwrite(enlu,1,strlen(enlu),tmp);
else if ( lu!=NULL )
fwrite(lu,1,strlen(lu),tmp);
rewind(tmp);
return( true );
}
static char *ImageMimeType(char *ext) {
if ( ext==NULL )
return( "application/octet-stream" );
if ( strcasecmp(ext,".txt")==0 )
return( "text/plain" );
if ( strcasecmp(ext,".html")==0 || strcasecmp(ext,".htm")==0 )
return( "text/html" );
if ( strcasecmp(ext,".png")==0 )
return( "image/png" );
if ( strcasecmp(ext,".jpeg")==0 || strcasecmp(ext,".jpg")==0 )
return( "image/jpeg" );
if ( strcasecmp(ext,".gif")==0 )
return( "image/gif" );
if ( strcasecmp(ext,".bmp")==0 )
return( "image/bmp" );
if ( strcasecmp(ext,".pdf")==0 )
return( "application/pdf" );
return( "application/octet-stream" );
}
static int UploadAdditionalFile(FILE *extrafile, char *uploadfilename,
char *databuf, int datalen,
char *boundary, struct siteinfo *siteinfo, struct sockaddr_in *addr,
char *file_description ) {
FILE *formdata;
int code, soc;
formdata = tmpfile();
sprintf( boundary, "-------GaB03x-------%X-------", rand());
fprintf(formdata,"--%s\r\n", boundary ); /* Multipart data begins with a boundary */
fprintf(formdata,"Content-Disposition: form-data; name=\"upload_file_name\"; filename=\"%s\"\r\n"
"Content-Type: %s\r\n\r\n", uploadfilename, ImageMimeType(strrchr(uploadfilename,'.')) );
if ( !dumpfile(formdata,extrafile,NULL)) {
ff_post_error(_("File vanished"),_("The %s file we just created can no longer be opened."), file_description );
return( false );
}
fprintf(formdata,"--%s\r\n", boundary );
fprintf(formdata,"Content-Disposition: form-data; name=\"file_nicname\"\r\n"
/*"Content-Type: text/plain; charset=UTF-8\r\n"*/"\r\n" );
fprintf(formdata,"\r\n" );
fprintf(formdata,"--%s\r\n", boundary );
fprintf(formdata,"Content-Disposition: form-data; name=\"form_submit\"\r\n\r\n" );
fprintf(formdata,"Submit\r\n" ); /* Although the "value" in the <input> is something else, this is what gets sent */
fprintf(formdata,"--%s\r\n", boundary );
fprintf(formdata,"Content-Disposition: form-data; name=\"http_referer\"\r\n\r\n" );
fprintf(formdata,"http%%3A%%2F%%2Fopenfontlibrary.org%%2Fmedia%%2Ffile%%2Fmanage%%2F%s\r\n",
strchr(siteinfo->upload_id,'/')+1 );
fprintf(formdata,"--%s\r\n", boundary );
fprintf(formdata,"Content-Disposition: form-data; name=\"fileadd\"\r\n\r\n" );
fprintf(formdata,"classname\r\n" );
fprintf(formdata,"--%s--\r\n", boundary );
sprintf( databuf, _("Transmitting %s..."), file_description );
ChangeLine2_8(databuf);
soc = makeConnection(addr);
if ( soc==-1 ) {
ff_progress_end_indicator();
fclose(formdata);
ff_post_error(_("Could not connect to host"),_("Could not connect to \"%s\"."), "openfontlibrary.org" );
return( false );
}
sprintf( databuf,"POST /media/file/add/%s HTTP/1.1\r\n"
"Host: www.openfontlibrary.org\r\n"
"Accept: text/html,text/plain\r\n"
"Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7\r\n"
"User-Agent: FontForge\r\n"
"Content-Type: multipart/form-data; boundary=\"%s\"\r\n"
"Content-Length: %ld\r\n"
"Connection: close\r\n",
strchr(siteinfo->upload_id,'/')==NULL ? siteinfo->upload_id : strchr(siteinfo->upload_id,'/')+1,
boundary ,
(long) ftell(formdata) );
AttachCookies(databuf,siteinfo);
strcat(databuf,"\r\n");
code = Converse( soc, databuf, datalen, formdata, ct_getuploadid, siteinfo );
if ( code<200 || code > 399 ) {
ff_post_error(_("Error from openfontlibrary"),_("Server error code=%d"), code );
ff_progress_end_indicator();
return( false );
} else if ( code!=200 )
ff_post_notice(_("Unexpected server return"),_("Unexpected server return code=%d"), code );
return( true );
}
static int HowIDidIt(char *databuf, int datalen,
char *boundary, struct siteinfo *siteinfo, struct sockaddr_in *addr ) {
FILE *formdata;
int code, soc;
formdata = tmpfile();
sprintf( boundary, "-------GaB03x=-------%X-------", rand());
fprintf(formdata,"--%s\r\n", boundary ); /* Multipart data begins with a boundary */
fprintf(formdata,"Content-Disposition: form-data; name=\"tools\"\r\n\r\n" );
fprintf(formdata,"FontForge upload\r\n" );
fprintf(formdata,"--%s\r\n", boundary );
fprintf(formdata,"Content-Disposition: form-data; name=\"samples\"\r\n\r\n" );
fprintf(formdata,"\r\n" );
fprintf(formdata,"--%s\r\n", boundary );
fprintf(formdata,"Content-Disposition: form-data; name=\"original\"\r\n\r\n" );
fprintf(formdata,"\r\n" );
fprintf(formdata,"--%s\r\n", boundary );
fprintf(formdata,"Content-Disposition: form-data; name=\"process\"\r\n\r\n" );
fprintf(formdata,"\r\n" );
fprintf(formdata,"--%s\r\n", boundary );
fprintf(formdata,"Content-Disposition: form-data; name=\"other\"\r\n\r\n" );
fprintf(formdata,"\r\n" );
fprintf(formdata,"--%s\r\n", boundary );
fprintf(formdata,"Content-Disposition: form-data; name=\"form_submit\"\r\n\r\n" );
fprintf(formdata,"Submit\r\n" ); /* Although the "value" in the <input> is something else, this is what gets sent */
fprintf(formdata,"--%s\r\n", boundary );
fprintf(formdata,"Content-Disposition: form-data; name=\"http_referer\"\r\n\r\n" );
fprintf(formdata,"http%%3A%%2F%%2Fopenfontlibrary.org%%2Fmedia%%2Ffiles%%2F%s\r\n",
strchr(siteinfo->upload_id,'/')+1 );
fprintf(formdata,"--%s\r\n", boundary );
fprintf(formdata,"Content-Disposition: form-data; name=\"howididit\"\r\n\r\n" );
fprintf(formdata,"classname\r\n" );
fprintf(formdata,"--%s--\r\n", boundary );
sprintf( databuf, "%s", _("Transmitting Meta Data...") );
ChangeLine2_8(databuf);
soc = makeConnection(addr);
if ( soc==-1 ) {
ff_progress_end_indicator();
fclose(formdata);
ff_post_error(_("Could not connect to host"),_("Could not connect to \"%s\"."), "openfontlibrary.org" );
return( false );
}
sprintf( databuf,"POST /media/edithowididit/%s HTTP/1.1\r\n"
"Host: www.openfontlibrary.org\r\n"
"Accept: text/html,text/plain\r\n"
"Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7\r\n"
"User-Agent: FontForge\r\n"
"Content-Type: multipart/form-data; boundary=\"%s\"\r\n"
"Content-Length: %ld\r\n"
"Connection: close\r\n",
strchr(siteinfo->upload_id,'/')==NULL ? siteinfo->upload_id : strchr(siteinfo->upload_id,'/')+1,
boundary ,
(long) ftell(formdata) );
AttachCookies(databuf,siteinfo);
strcat(databuf,"\r\n");
code = Converse( soc, databuf, datalen, formdata, ct_getuploadid, siteinfo );
if ( code<200 || code > 399 ) {
ff_post_error(_("Error from openfontlibrary"),_("Server error code=%d"), code );
ff_progress_end_indicator();
return( false );
} else if ( code!=200 )
ff_post_notice(_("Unexpected server return"),_("Unexpected server return code=%d"), code );
return( true );
}
int OFLibUploadFont(OFLibData *oflib) {
struct sockaddr_in addr;
int soc;
int datalen;
char *databuf;
char msg[1024], *pt;
struct siteinfo siteinfo;
int code;
FILE *formdata;
char boundary[80], *fontfilename;
time_t now;
struct tm *tm;
ff_progress_start_indicator(0,_("Font Upload..."),_("Uploading to Open Font Library"),
_("Looking for openfontlibrary.org"),1,1);
ff_progress_allow_events();
ff_progress_allow_events();
if ( !findHTTPhost(&addr, "openfontlibrary.org",-1)) {
ff_progress_end_indicator();
ff_post_error(_("Could not find host"),_("Could not find \"%s\"\nAre you connected to the internet?"), "openfontlibrary.org" );
return( false );
}
soc = makeConnection(&addr);
if ( soc==-1 ) {
ff_progress_end_indicator();
ff_post_error(_("Could not connect to host"),_("Could not connect to \"%s\"."), "openfontlibrary.org" );
return( false );
}
datalen = 8*8*1024;
databuf = galloc(datalen+1);
memset(&siteinfo,0,sizeof(siteinfo));
siteinfo.user_id = -1;
ChangeLine2_8("Logging in...");
strcpy(msg, "user_name=");
pt = UrlEncode(msg+strlen(msg),oflib->username);
strcpy(pt, "&user_password=");
pt = UrlEncode(msg+strlen(msg),oflib->password);
strcpy(pt, "&form_submit=Log+In&userlogin=classname");
sprintf( databuf,"POST /media/login HTTP/1.1\r\n"
"Accept: text/html,text/plain\r\n"
"Content-Length: %d\r\n"
"Content-Type: application/x-www-form-urlencoded\r\n"
"Host: www.openfontlibrary.org\r\n"
"User-Agent: FontForge\r\n"
"Connection: close\r\n\r\n%s",
(int) strlen( msg ), msg );
code = Converse( soc, databuf, datalen, NULL, ct_savecookies, &siteinfo );
/* Amusingly a success return of 200 is actually an error */
if ( code!=302 ) {
free(databuf);
ff_progress_end_indicator();
ff_post_error(_("Login failed"),_("Could not log in.") );
return( false );
}
ChangeLine2_8("Gathering state info...");
soc = makeConnection(&addr);
if ( soc==-1 ) {
ff_progress_end_indicator();
free(databuf);
ff_post_error(_("Could not connect to host"),_("Could not connect to \"%s\"."), "openfontlibrary.org" );
return( false );
}
sprintf( databuf,"GET /media/submit/font HTTP/1.1\r\n"
"Host: www.openfontlibrary.org\r\n"
"Accept: text/html,text/plain\r\n"
"User-Agent: FontForge\r\n"
"Connection: close\r\n" );
AttachCookies(databuf,&siteinfo);
strcat(databuf,"\r\n");
code = Converse( soc, databuf, datalen, NULL, ct_getuserid, &siteinfo );
if ( siteinfo.user_id==-1 ) {
ff_progress_end_indicator();
free(databuf);
ff_post_error(_("Could not read state"),_("Could not read state.") );
return( false );
}
ChangeLine2_8("Preparing to transmit...");
formdata = tmpfile();
/* formdata = fopen("foobar","w+"); /* !!!! DEBUG */
sprintf( boundary, "-------AaB03x-------%X-------", rand());
fontfilename = strrchr(oflib->pathspec,'/');
if ( fontfilename==NULL ) fontfilename = oflib->pathspec;
else ++fontfilename;
fprintf(formdata,"--%s\r\n", boundary ); /* Multipart data begins with a boundary */
fprintf(formdata,"Content-Disposition: form-data; name=\"upload_name\"\r\n"
/*"Content-Type: text/plain; charset=UTF-8\r\n"*/"\r\n" );
fprintf(formdata,"%s\r\n", oflib->name );
fprintf(formdata,"--%s\r\n", boundary );
fprintf(formdata,"Content-Disposition: form-data; name=\"upload_featuring\"\r\n"
/*"Content-Type: text/plain; charset=UTF-8\r\n"*/"\r\n" );
fprintf(formdata,"%s\r\n", oflib->artists );
fprintf(formdata,"--%s\r\n", boundary );
fprintf(formdata,"Content-Disposition: form-data; name=\"upload_file_name\"; filename=\"%s\"\r\n"
"Content-Type: application/octet-stream\r\n\r\n", fontfilename );
if ( !dumpfile(formdata,NULL,oflib->pathspec)) {
free(databuf);
ff_post_error(_("Font file vanished"),_("The font file we just created can no longer be opened.") );
return( false );
}
#if 0 /* Posting multiple files doesn't work */
} else {
char *previewname;
fprintf(formdata,"Content-Disposition: form-data; name=\"upload_file_name\";\r\n"
"Content-Type: multipart/mixed; boundary=Sub%s\r\n\r\n", boundary );
fprintf(formdata,"--Sub%s\r\n", boundary );
fprintf(formdata,"Content-Disposition: file; filename=\"%s\"\r\n"
"Content-Type: application/octet-stream\r\n\r\n", fontfilename );
if ( !dumpfile(formdata,NULL,oflib->pathspec)) {
free(databuf);
ff_post_error(_("Font file vanished"),_("The font file we just created can no longer be opened.") );
return( false );
}
fprintf(formdata,"--Sub%s\r\n", boundary );
previewname = strrchr(oflib->previewimage,'/');
if ( previewname==NULL ) previewname = oflib->previewimage;
else ++previewname;
fprintf(formdata,"Content-Disposition: file; filename=\"%s\"\r\n"
"Content-Type: %s\r\n\r\n", previewname,
ImageMimeType(strrchr(previewname,'.')));
if ( !dumpfile(formdata,NULL,oflib->previewimage)) {
free(databuf);
ff_post_error(_("Image file vanished"),_("The preview image we just created can no longer be opened.") );
return( false );
}
fprintf(formdata,"--Sub%s--\r\n", boundary );
}
#endif
fprintf(formdata,"--%s\r\n", boundary );
fprintf(formdata,"Content-Disposition: form-data; name=\"upload_tags\"\r\n"
/*"Content-Type: text/plain; charset=UTF-8\r\n"*/"\r\n" );
fprintf(formdata,"%s\r\n", oflib->tags );
fprintf(formdata,"--%s\r\n", boundary );
fprintf(formdata,"Content-Disposition: form-data; name=\"upload_description\"\r\n"
/*"Content-Type: text/plain; charset=UTF-8\r\n"*/"\r\n" );
fprintf(formdata,"%s\r\n", oflib->description );
fprintf(formdata,"--%s\r\n", boundary );
if ( oflib->notsafeforwork ) {
fprintf(formdata,"Content-Disposition: form-data; name=\"upload_license\"\r\n\r\n" );
fprintf(formdata,"on\r\n" );
fprintf(formdata,"--%s\r\n", boundary );
}
fprintf(formdata,"Content-Disposition: form-data; name=\"upload_license\"\r\n\r\n" );
fprintf(formdata,"%s\r\n", oflib->oflicense ? "ofl_1_1" : "publicdomain" );
fprintf(formdata,"--%s\r\n", boundary );
fprintf(formdata,"Content-Disposition: form-data; name=\"upload_published\"\r\n\r\n" );
fprintf(formdata,"on\r\n" );
fprintf(formdata,"--%s\r\n", boundary );
fprintf(formdata,"Content-Disposition: form-data; name=\"form_submit\"\r\n\r\n" );
fprintf(formdata,"Upload\r\n" );
fprintf(formdata,"--%s\r\n", boundary );
fprintf(formdata,"Content-Disposition: form-data; name=\"http_referer\"\r\n\r\n" );
/*fputs ("http%3A%2F%2Ffontforge.sf.net%2F\r\n", formdata ); */
fputs ("http%3A%2F%2Fopenfontlibrary.org%2Fmedia%2Fsubmit\r\n", formdata );
fprintf(formdata,"--%s\r\n", boundary );
fprintf(formdata,"Content-Disposition: form-data; name=\"newupload\"\r\n\r\n" );
fprintf(formdata,"classname\r\n" );
fprintf(formdata,"--%s\r\n", boundary );
fprintf(formdata,"Content-Disposition: form-data; name=\"upload_user\"\r\n\r\n" );
fprintf(formdata,"%d\r\n", siteinfo.user_id );
fprintf(formdata,"--%s\r\n", boundary );
fprintf(formdata,"Content-Disposition: form-data; name=\"upload_config\"\r\n\r\n" );
fprintf(formdata,"media\r\n" );
fprintf(formdata,"--%s\r\n", boundary );
fprintf(formdata,"Content-Disposition: form-data; name=\"upload_date\"\r\n\r\n" );
time(&now);
tm = localtime(&now);
fprintf(formdata,"%d-%d-%d %d:%02d:%02d\r\n", tm->tm_year+1900, tm->tm_mon+1, tm->tm_mday,
tm->tm_hour, tm->tm_min, tm->tm_sec );
fprintf(formdata,"--%s--\r\n", boundary );
ChangeLine2_8("Transmitting font...");
#if 0
findHTTPhost(&addr, "powerbook",-1); /* Debug!!!! */
/*addr.sin_port = htons(8080); /* Debug!!!! */
#endif
soc = makeConnection(&addr);
if ( soc==-1 ) {
ff_progress_end_indicator();
free(databuf);
fclose(formdata);
ff_post_error(_("Could not connect to host"),_("Could not connect to \"%s\"."), "openfontlibrary.org" );
return( false );
}
sprintf( databuf,"POST /media/submit/font HTTP/1.1\r\n"
/* sprintf( databuf,"POST /cgi-bin/echo HTTP/1.1\r\n" /* Debug!!!! */
"Host: www.openfontlibrary.org\r\n"
"Accept: text/html,text/plain\r\n"
"Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7\r\n"
"User-Agent: FontForge\r\n"
"Content-Type: multipart/form-data; boundary=\"%s\"\r\n"
"Content-Length: %ld\r\n"
"Connection: close\r\n",
boundary ,
(long) ftell(formdata) );
AttachCookies(databuf,&siteinfo);
strcat(databuf,"\r\n");
code = Converse( soc, databuf, datalen, formdata, ct_getuploadid, &siteinfo );
/* I think the expected return code here is 200, that's what I've seen the*/
/* two times I've done a successful upload */
if ( code<200 || code > 399 ) {
ff_post_error(_("Error from openfontlibrary"),_("Server error code=%d"), code );
ff_progress_end_indicator();
free( databuf );
return( false );
} else if ( code!=200 )
ff_post_notice(_("Unexpected server return"),_("Unexpected server return code=%d"), code );
if ( siteinfo.upload_id==NULL ) {
ff_post_error(_("Error from openfontlibrary"),_("Failed to find an upload id.") );
ff_progress_end_indicator();
free( databuf );
return( false );
}
oflib->upload_id = siteinfo.upload_id;
fprintf( stderr, "Upload ID: %s\n", siteinfo.upload_id );
if ( oflib->previewimage!=NULL ) {
char *previewname;
FILE *previewfile = fopen(oflib->previewimage,"rb");
if ( previewfile==NULL ) {
ff_post_error(_("Preview file vanished"),_("The preview file we just created can no longer be opened.") );
} else {
ChangeLine2_8("Preparing to transmit preview image...");
previewname = strrchr(oflib->previewimage,'/');
if ( previewname==NULL ) previewname = oflib->previewimage;
else ++previewname;
if ( !UploadAdditionalFile(previewfile,previewname,databuf,datalen,
boundary,&siteinfo,&addr,"preview")) {
free(databuf);
return( false );
}
}
}
/* Currently the OFLib will not accept txt files. Nor will it accept afm files */
if ( oflib->upload_fontlog && oflib->sf->fontlog ) {
FILE *tmp = tmpfile();
ChangeLine2_8("Preparing to transmit font log file...");
fwrite(oflib->sf->fontlog,1,strlen(oflib->sf->fontlog),tmp);
rewind(tmp);
if ( !UploadAdditionalFile(tmp,"FontLog.txt",databuf,datalen,
boundary,&siteinfo,&addr,"font log")) {
free(databuf);
return( false );
}
}
if ( oflib->upload_fontlog && HasLicense(oflib->sf,NULL) ) {
FILE *tmp = tmpfile();
ChangeLine2_8("Preparing to transmit license file...");
HasLicense(oflib->sf,tmp);
rewind(tmp);
if ( !UploadAdditionalFile(tmp,"License.txt",databuf,datalen,
boundary,&siteinfo,&addr,"license")) {
free(databuf);
return( false );
}
}
if ( !HowIDidIt(databuf,datalen, boundary,&siteinfo,&addr)) {
free(databuf);
return( false );
}
ff_progress_end_indicator();
free( databuf );
return( true );
}
static char *decomposeURL(const char *url,char **host, int *port, char **username,
char **password) {
char *pt, *pt2, *upt, *ppt;
char *path;
char proto[40];
/* ftp://[user[:password]@]ftpserver[:port]/url-path */
*username = NULL; *password = NULL; *port = -1;
pt = strstr(url,"://");
if ( pt==NULL ) {
*host = NULL;
return( copy(url));
}
strncpy(proto,url,pt-url<sizeof(proto)?pt-url:sizeof(proto));
proto[(pt-url)] = '\0';
pt += 3;
pt2 = strchr(pt,'/');
if ( pt2==NULL ) {
pt2 = pt+strlen(pt);
path = copy("/");
} else {
path = copy(pt2);
}
upt = strchr(pt,'@');
if ( upt!=NULL && upt<pt2 ) {
ppt = strchr(pt,':');
if ( ppt==NULL ) {
*username = copyn(pt,upt-pt);
} else {
*username = copyn(pt,ppt-pt);
*password = copyn(ppt+1,upt-ppt-1);
}
pt = upt+1;
}
ppt = strchr(pt,':');
if ( ppt!=NULL && ppt<pt2 ) {
char *temp = copyn(ppt+1,pt2-ppt-1), *end;
*port = strtol(temp,&end,10);
if ( *end!='\0' )
*port = -2;
free(temp);
pt2 = ppt;
}
*host = copyn(pt,pt2-pt);
if ( *username ) {
*password = GIO_PasswordCache(proto,*host,*username,*password);
if ( *password==NULL ) {
*password = ff_ask_password(_("Password?"),"",_("Enter password for %s@%s"), *username, *host );
*password = GIO_PasswordCache(proto,*host,*username,*password);
}
}
return( path );
}
static FILE *HttpURLToTempFile(char *url, void *_lock) {
pthread_mutex_t *lock = _lock;
struct sockaddr_in addr;
char *pt, *host, *filename, *username, *password;
int port;
FILE *ret;
char buffer[300];
int first, code;
int soc;
int datalen, len;
char *databuf;
snprintf(buffer,sizeof(buffer),_("Downloading from %s"), url);
if ( strncasecmp(url,"http://",7)!=0 ) {
if ( lock!=NULL )
pthread_mutex_lock(lock);
ff_post_error(_("Could not parse URL"),_("Got something else when expecting an http URL"));
if ( lock!=NULL )
pthread_mutex_unlock(lock);
return( NULL );
}
if ( lock!=NULL )
pthread_mutex_lock(lock);
filename = decomposeURL(url, &host, &port, &username, &password);
/* I don't support username/passwords for http */
free( username ); free( password );
if ( lock!=NULL )
pthread_mutex_unlock(lock);
if ( lock==NULL ) {
ff_progress_start_indicator(0,_("Font Download..."),buffer,
_("Resolving host"),1,1);
ff_progress_enable_stop(false);
ff_progress_allow_events();
ff_progress_allow_events();
}
/* This routine contains it's own lock */
if ( !findHTTPhost(&addr, host, port)) {
if ( lock==NULL )
ff_progress_end_indicator();
else
pthread_mutex_lock(lock);
ff_post_error(_("Could not find host"),_("Could not find \"%s\"\nAre you connected to the internet?"), host );
free( host ); free( filename );
if ( lock!=NULL )
pthread_mutex_unlock(lock);
return( false );
}
soc = makeConnection(&addr);
if ( soc==-1 ) {
if ( lock==NULL )
ff_progress_end_indicator();
else
pthread_mutex_lock(lock);
ff_post_error(_("Could not connect to host"),_("Could not connect to \"%s\"."), host );
free( host ); free( filename );
if ( lock!=NULL )
pthread_mutex_unlock(lock);
return( false );
}
if ( lock!=NULL )
pthread_mutex_lock(lock);
datalen = 8*8*1024;
databuf = galloc(datalen+1);
if ( lock!=NULL )
pthread_mutex_unlock(lock);
else
ChangeLine2_8(_("Requesting font..."));
sprintf( databuf,"GET %s HTTP/1.1\r\n"
"Host: %s\r\n"
"User-Agent: FontForge\r\n"
"Connection: close\r\n\r\n", filename, host );
if ( write(soc,databuf,strlen(databuf))==-1 ) {
if ( lock==NULL )
ff_progress_end_indicator();
if ( lock!=NULL )
pthread_mutex_lock(lock);
ff_post_error(_("Could not send request"),_("Could not send request to \"%s\"."), host );
close( soc );
free( databuf );
free( host ); free( filename );
free( host ); free( filename );
if ( lock!=NULL )
pthread_mutex_unlock(lock);
return( NULL );
}
if ( lock==NULL )
ChangeLine2_8(_("Downloading font..."));
if ( lock!=NULL )
pthread_mutex_lock(lock);
ret = tmpfile();
if ( lock!=NULL )
pthread_mutex_unlock(lock);
first = 1;
code = 404;
while ((len = read(soc,databuf,datalen))>0 ) {
if ( first ) {
databuf[len] = '\0';
sscanf(databuf,"HTTP/%*f %d", &code );
first = 0;
/* check for redirects */
if ( code>=300 && code<399 && (pt=strstr(databuf,"Location: "))!=NULL ) {
char *newurl = pt + strlen("Location: ");
pt = strchr(newurl,'\r');
if ( *pt )
*pt = '\0';
close( soc );
if ( lock!=NULL )
pthread_mutex_lock(lock);
fclose(ret);
free(host); free( filename );
free(databuf);
if ( lock!=NULL )
pthread_mutex_unlock(lock);
ret = URLToTempFile(newurl,lock);
return( ret );
}
pt = strstr(databuf,"Content-Length: ");
if ( lock==NULL && pt!=NULL ) {
pt += strlen( "Content-Length: ");
ff_progress_change_total(strtol(pt,NULL,10));
}
pt = strstr(databuf,"\r\n\r\n");
if ( pt!=NULL ) {
pt += strlen("\r\n\r\n");
fwrite(pt,1,len-(pt-databuf),ret);
if ( lock==NULL )
ff_progress_increment(len-(pt-databuf));
}
} else {
fwrite(databuf,1,len,ret);
if ( lock==NULL )
ff_progress_increment(len);
}
}
if ( lock==NULL )
ff_progress_end_indicator();
close( soc );
free( databuf );
if ( lock!=NULL )
pthread_mutex_lock(lock);
free( host ); free( filename );
if ( len==-1 ) {
ff_post_error(_("Could not download data"),_("Could not download data.") );
fclose(ret);
ret = NULL;
} else if ( code<200 || code>299 ) {
ff_post_error(_("Could not download data"),_("HTTP return code: %d."), code );
fclose(ret);
ret = NULL;
} else
rewind(ret);
if ( lock!=NULL )
pthread_mutex_unlock(lock);
return( ret );
}
/* Perform an HTTP GET, and return the results in the supplied buffer */
int HttpGetBuf(char *url, char *databuf, int *datalen, void *_lock) {
pthread_mutex_t *lock = _lock;
struct sockaddr_in addr;
char *pt, *host, *filename, *username, *password;
int port;
char buffer[300];
int first, code;
int soc;
int len, sofar;
snprintf(buffer,sizeof(buffer),_("Downloading from %s"), url);
if ( strncasecmp(url,"http://",7)!=0 ) {
if ( lock!=NULL )
pthread_mutex_lock(lock);
ff_post_error(_("Could not parse URL"),_("Got something else when expecting an http URL"));
if ( lock!=NULL )
pthread_mutex_unlock(lock);
return( -1 );
}
if ( lock!=NULL )
pthread_mutex_lock(lock);
filename = decomposeURL(url, &host, &port, &username, &password);
/* I don't support username/passwords for http */
free( username ); free( password );
if ( lock!=NULL )
pthread_mutex_unlock(lock);
if ( lock==NULL ) {
ff_progress_start_indicator(0,_("Font Download..."),buffer,
_("Resolving host"),1,1);
ff_progress_enable_stop(false);
ff_progress_allow_events();
ff_progress_allow_events();
}
/* This routine contains it's own lock */
if ( !findHTTPhost(&addr, host, port) ) {
if ( lock==NULL )
ff_progress_end_indicator();
else
pthread_mutex_lock(lock);
ff_post_error(_("Could not find host"),_("Could not find \"%s\"\nAre you connected to the internet?"), host );
free( host ); free( filename );
if ( lock!=NULL )
pthread_mutex_unlock(lock);
return( -1 );
}
soc = makeConnection(&addr);
if ( soc==-1 ) {
if ( lock==NULL )
ff_progress_end_indicator();
else
pthread_mutex_lock(lock);
ff_post_error(_("Could not connect to host"),_("Could not connect to \"%s\"."), host );
free( host ); free( filename );
if ( lock!=NULL )
pthread_mutex_unlock(lock);
return( -1 );
}
if ( lock==NULL )
ChangeLine2_8(_("Requesting file..."));
sprintf( databuf,"GET %s HTTP/1.1\r\n"
"Host: %s\r\n"
"User-Agent: FontForge\r\n"
"Connection: close\r\n\r\n", filename, host );
if ( write(soc,databuf,strlen(databuf))==-1 ) {
if ( lock==NULL )
ff_progress_end_indicator();
if ( lock!=NULL )
pthread_mutex_lock(lock);
ff_post_error(_("Could not send request"),_("Could not send request to \"%s\"."), host );
free( host ); free( filename );
if ( lock!=NULL )
pthread_mutex_unlock(lock);
close( soc );
return( -1 );
}
if ( lock==NULL )
ChangeLine2_8(_("Downloading file..."));
first = 1;
code = 404;
sofar = 0;
while ( *datalen>sofar+1 && (len = read(soc,databuf+sofar,*datalen-1-sofar))>0 ) {
if ( first ) {
databuf[len] = '\0';
sscanf(databuf,"HTTP/%*f %d", &code );
first = 0;
/* check for redirects */
if ( code>=300 && code<399 && (pt=strstr(databuf,"Location: "))!=NULL ) {
char *newurl = pt + strlen("Location: ");
pt = strchr(newurl,'\r');
if ( *pt )
*pt = '\0';
close( soc );
if ( lock!=NULL )
pthread_mutex_lock(lock);
free(host); free( filename );
if ( lock!=NULL )
pthread_mutex_unlock(lock);
sofar = HttpGetBuf(newurl, databuf, datalen,lock);
return( sofar );
}
pt = strstr(databuf,"Content-Length: ");
if ( pt!=NULL ) {
int tot;
pt += strlen( "Content-Length: ");
tot = strtol(pt,NULL,10);
if ( lock==NULL )
ff_progress_change_total(tot);
if ( tot+1>*datalen ) {
if ( lock!=NULL )
pthread_mutex_lock(lock);
databuf = grealloc(databuf,*datalen = tot+10);
if ( lock!=NULL )
pthread_mutex_unlock(lock);
}
}
pt = strstr(databuf,"\r\n\r\n");
if ( pt!=NULL ) {
pt += strlen("\r\n\r\n");
memcpy(databuf,pt,len-(pt-databuf));
sofar = len-(pt-databuf);
if ( lock==NULL )
ff_progress_increment(len-(pt-databuf));
}
} else {
sofar += len;
if ( lock==NULL && !ff_progress_increment(len)) {
ff_progress_end_indicator();
close( soc );
free( host ); free( filename );
return( -2 ); /* Stopped by user */
}
}
}
databuf[sofar] = '\0';
if ( lock==NULL )
ff_progress_end_indicator();
close( soc );
if ( lock!=NULL )
pthread_mutex_lock(lock);
free( host ); free( filename );
if ( len==-1 ) {
ff_post_error(_("Could not download data"),_("Could not download data.") );
sofar = -1;
} else if ( code<200 || code>299 ) {
ff_post_error(_("Could not download data"),_("HTTP return code: %d."), code );
sofar = -1;
}
if ( lock!=NULL )
pthread_mutex_unlock(lock);
return( sofar );
}
static int FtpURLAndTempFile(char *url,FILE **to,FILE *from) {
struct sockaddr_in addr, data_addr;
char *host, *filename, *username, *password;
int port;
FILE *ret;
char buffer[300];
int soc, data;
int datalen, len;
char *databuf, *cmd;
if ( from==NULL ) {
snprintf(buffer,sizeof(buffer),_("Downloading from %s"), url);
*to = NULL;
} else
snprintf(buffer,sizeof(buffer),_("Uploading to %s"), url);
if ( strncasecmp(url,"ftp://",6)!=0 ) {
ff_post_error(_("Could not parse URL"),_("Got something else when expecting an ftp URL"));
return( false );
}
filename = decomposeURL(url, &host, &port, &username, &password);
ff_progress_start_indicator(0,_("Font Download..."),buffer,
_("Resolving host"),1,1);
ff_progress_enable_stop(false);
ff_progress_allow_events();
ff_progress_allow_events();
if ( !findFTPhost(&addr, host, port)) {
ff_progress_end_indicator();
ff_post_error(_("Could not find host"),_("Could not find \"%s\"\nAre you connected to the internet?"), host );
free( host ); free( filename );
return( false );
}
soc = makeConnection(&addr);
if ( soc==-1 ) {
ff_progress_end_indicator();
ff_post_error(_("Could not connect to host"),_("Could not connect to \"%s\"."), host );
free( host ); free( filename );
return( false );
}
datalen = 8*8*1024;
databuf = galloc(datalen+1);
cmd = databuf;
ChangeLine2_8(_("Logging in..."));
if ( getresponse(soc,databuf,datalen) == -1 ) { /* ftp servers say "Hi" when then connect */
ff_progress_end_indicator();
ff_post_error(_("Could not connect to host"),_("Could not connect to \"%s\"."), host );
free( host ); free( filename ); free(username); free(password);
close( soc );
return( false );
}
free( host );
if ( username==NULL ) {
username=copy("anonymous");
if ( password==NULL )
password=copy("FontForge");
} else if ( password==NULL )
password = copy("");
sprintf(cmd,"USER %s\r\n", username);
if ( ftpsendr(soc,cmd,databuf,datalen)== -1 ) {
ff_progress_end_indicator();
close( soc ); free(filename); free(databuf); free(username); free(password);
return( false );
}
sprintf(cmd,"PASS %s\r\n", password);
free(username); free(password);
if ( ftpsendr(soc,cmd,databuf,datalen)<=0 ) {
ff_progress_end_indicator();
LogError(_("Bad Username/Password\n"));
close( soc ); free(filename); free(databuf);
return( false );
}
if ( ftpsendr(soc,"TYPE I\r\n",databuf,datalen)==-1 ) { /* Binary */
ff_progress_end_indicator();
close( soc ); free(filename); free(databuf);
return( false );
}
if ( from==NULL )
ChangeLine2_8(_("Requesting font..."));
else
ChangeLine2_8(_("Transmitting font..."));
if ( ftpsendpassive(soc,&data_addr,databuf,datalen)<= 0 ) {
ff_progress_end_indicator();
close( soc ); free(filename); free(databuf);
return( false );
}
if (( data = socket(PF_INET,SOCK_STREAM,0))==-1 ||
connect(data,(struct sockaddr *) &data_addr,sizeof(data_addr))== -1 ) {
ff_progress_end_indicator();
if ( data!=-1 )
close(data);
close( soc ); free(filename); free(databuf);
LogError(_("FTP passive Data Connect failed\n"));
return( 0 );
}
if ( from==NULL ) {
sprintf(cmd,"RETR %s\r\n", filename);
if ( ftpsendr(soc,cmd, databuf, datalen)<=0 ) {
ff_progress_end_indicator();
ff_post_error(_("Could not download data"),_("Could not find file.") );
close(data);
close( soc ); free(filename); free(databuf);
return( false );
}
ChangeLine2_8(_("Downloading font..."));
ret = tmpfile();
while ((len = read(data,databuf,datalen))>0 ) {
fwrite(databuf,1,len,ret);
}
*to = ret;
rewind(ret);
} else {
sprintf(cmd,"STOR %s\r\n", filename);
if ( ftpsendr(soc,cmd, databuf, datalen)<=0 ) {
ff_progress_end_indicator();
ff_post_error(_("Could not download data"),_("Could not find file.") );
close(data);
close( soc ); free(filename); free(databuf);
return( false );
}
ChangeLine2_8(_("Uploading font..."));
rewind(from);
while ((len = fread(databuf,1,datalen,from))>0 ) {
if ( (len = write(data,databuf,len))<0 )
break;
}
ret = NULL;
}
ff_progress_end_indicator();
close( soc ); close( data );
free( databuf );
free( filename );
if ( len==-1 ) {
ff_post_error(_("Could not transmit data"),_("Could not transmit data.") );
if ( ret!=NULL ) fclose(ret);
return( false );
}
return( true );
}
FILE *URLToTempFile(char *url,void *_lock) {
FILE *ret;
if ( strncasecmp(url,"http://",7)==0 )
return( HttpURLToTempFile(url,_lock));
else if ( strncasecmp(url,"ftp://",6)==0 ) {
if ( FtpURLAndTempFile(url,&ret,NULL))
return( ret );
return( NULL );
} else {
ff_post_error(_("Could not parse URL"),_("FontForge only handles ftp and http URLs at the moment"));
return( NULL );
}
}
int URLFromFile(char *url,FILE *from) {
if ( strncasecmp(url,"ftp://",6)==0 ) {
return( FtpURLAndTempFile(url,NULL,from));
} else {
ff_post_error(_("Could not parse URL"),_("FontForge can only upload to ftp URLs at the moment"));
return( false );
}
}
#endif /* !__MINGW32__ */
|