OSDN Git Service

スコアサーバのOSDN移設に伴うサーバアドレス・URLの変更
[hengband/hengband.git] / src / report.c
1 /*!
2  * @file report.c
3  * @brief スコアサーバ転送機能の実装
4  * @date 2014/07/14
5  * @author Hengband Team
6  */
7
8 #define _GNU_SOURCE /*!< 未使用*/
9 #include "angband.h"
10
11 #ifdef WORLD_SCORE
12
13 #include <stdio.h>
14 #include <stdarg.h>
15 #include <ctype.h>
16 #include <string.h>
17
18 #if defined(WINDOWS)
19 #include <winsock.h>
20 #elif defined(MACINTOSH)
21 #include <OpenTransport.h>
22 #include <OpenTptInternet.h>
23 #else
24 #include <sys/types.h>
25 #include <sys/socket.h>
26 #include <netinet/in.h>
27 #include <netdb.h>
28 #include <sys/time.h>
29
30 #include <setjmp.h>
31 #include <signal.h>
32 #endif
33
34 /*
35  * internet resource value
36  */
37 #define HTTP_PROXY ""                   /*!< デフォルトのプロキシURL / Default proxy url */
38 #define HTTP_PROXY_PORT 0               /*!< デフォルトのプロキシポート / Default proxy port */
39 #define HTTP_TIMEOUT    20              /*!< デフォルトのタイムアウト時間(秒) / Timeout length (second) */
40 #define SCORE_SERVER "hengband.osdn.jp" /*!< デフォルトのスコアサーバURL / Default score server url */
41 #define SCORE_PORT 80                   /*!< デフォルトのスコアサーバポート / Default score server port */
42
43 #ifdef JP
44 #define SCORE_PATH "http://hengband.osdn.jp/score/register_score.php" /*!< スコア開示URL */
45 #else
46 #define SCORE_PATH "http://moon.kmc.gr.jp/hengband/hengscore-en/score.cgi" /*!< スコア開示URL */
47 #endif
48
49 /* for debug */
50 #if 0
51 #define SCORE_PATH "http://moon.kmc.gr.jp/hengband/scoretest/score.cgi" /*!< スコア開示URL */
52 #endif
53
54 /*
55  * simple buffer library
56  */
57 typedef struct {
58         size_t max_size;
59         size_t size;
60         char *data;
61 } BUF;
62
63 #define BUFSIZE (65536) /*!< スコアサーバ転送バッファサイズ */
64
65 /*!
66  * @brief 転送用バッファの確保
67  * @return 確保したバッファの参照ポインタ
68  */
69 static BUF* buf_new(void)
70 {
71         BUF *p;
72
73         if ((p = malloc(sizeof(BUF))) == NULL)
74                 return NULL;
75
76         p->size = 0;
77         p->max_size = BUFSIZE;
78         if ((p->data = malloc(BUFSIZE)) == NULL)
79         {
80                 free(p);
81                 return NULL;
82         }
83         return p;
84 }
85
86 /*!
87  * @brief 転送用バッファの解放
88  * @param b 解放するバッファの参照ポインタ
89  */
90 static void buf_delete(BUF *b)
91 {
92         free(b->data);
93         free(b);
94 }
95
96 /*!
97  * @brief 転送用バッファにデータを追加する
98  * @param buf 追加先バッファの参照ポインタ
99  * @param data 追加元データ
100  * @param size 追加サイズ
101  * @return 追加後のバッファ容量
102  */
103 static int buf_append(BUF *buf, const char *data, size_t size)
104 {
105         while (buf->size + size > buf->max_size)
106         {
107                 char *tmp;
108                 if ((tmp = malloc(buf->max_size * 2)) == NULL) return -1;
109
110                 memcpy(tmp, buf->data, buf->max_size);
111                 free(buf->data);
112
113                 buf->data = tmp;
114
115                 buf->max_size *= 2;
116         }
117         memcpy(buf->data + buf->size, data, size);
118         buf->size += size;
119
120         return buf->size;
121 }
122
123 /*!
124  * @brief 転送用バッファにフォーマット指定した文字列データを追加する
125  * @param buf 追加先バッファの参照ポインタ
126  * @param fmt 文字列フォーマット
127  * @return 追加後のバッファ容量
128  */
129 static int buf_sprintf(BUF *buf, const char *fmt, ...)
130 {
131         int             ret;
132         char    tmpbuf[8192];
133         va_list ap;
134
135         va_start(ap, fmt);
136 #if defined(HAVE_VSNPRINTF)
137         ret = vsnprintf(tmpbuf, sizeof(tmpbuf), fmt, ap);
138 #else
139         ret = vsprintf(tmpbuf, fmt, ap);
140 #endif
141         va_end(ap);
142
143         if (ret < 0) return -1;
144
145 #if ('\r' == 0x0a && '\n' == 0x0d)
146         {
147                 /*
148                  * Originally '\r'= CR (= 0x0d) and '\n'= LF (= 0x0a)
149                  * But for MPW (Macintosh Programers Workbench), these
150                  * are reversed so that '\r'=LF and '\n'=CR unless the
151                  * -noMapCR option is not defined.
152                  *
153                  * We need to swap back these here since the score
154                  * dump text should be written using LF as the end of
155                  * line.
156                  */
157                 char *ptr;
158                 for (ptr = tmpbuf; *ptr; ptr++)
159                 {
160                         if (0x0d == *ptr) *ptr = 0x0a;
161                 }
162         }
163 #endif
164
165         ret = buf_append(buf, tmpbuf, strlen(tmpbuf));
166
167         return ret;
168 }
169
170 #if 0
171 static int buf_read(BUF *buf, int fd)
172 {
173         int len;
174 #ifndef MACINTOSH
175         char tmp[BUFSIZE];
176 #else
177         char *tmp;
178         
179         tmp = calloc( BUFSIZE , sizeof(char) );
180 #endif
181
182         while ((len = read(fd, tmp, BUFSIZE)) > 0)
183                 buf_append(buf, tmp, len);
184
185         return buf->size;
186 }
187 #endif
188
189 #if 0
190 static int buf_write(BUF *buf, int fd)
191 {
192         write(fd, buf->data, buf->size);
193
194         return buf->size;
195 }
196
197 static int buf_search(BUF *buf, const char *str)
198 {
199         char *ret;
200
201         ret = my_strstr(buf->data, str);
202
203         if (!ret) return -1;
204
205         return ret - buf->data;
206 }
207
208 static BUF * buf_subbuf(BUF *buf, int pos1, size_t sz)
209 {
210         BUF *ret;
211
212         if (pos1 < 0) return NULL;
213
214         ret = buf_new();
215
216         if (sz <= 0) sz = buf->size - pos1;
217
218         buf_append(ret, buf->data + pos1, sz);
219
220         return ret;
221 }
222 #endif
223
224 /*!
225  * @brief HTTPによるダンプ内容伝送
226  * @param sd ソケットID
227  * @param url 伝送先URL
228  * @param buf 伝送内容バッファ
229  * @return なし
230  */
231 static bool http_post(int sd, cptr url, BUF *buf)
232 {
233         BUF *output;
234         char response_buf[1024] = "";
235         const char *HTTP_RESPONSE_CODE_OK = "HTTP/1.1 200 OK";
236
237         output = buf_new();
238         buf_sprintf(output, "POST %s HTTP/1.0\r\n", url);
239         buf_sprintf(output, "User-Agent: Hengband %d.%d.%d\r\n",
240                     FAKE_VER_MAJOR-10, FAKE_VER_MINOR, FAKE_VER_PATCH);
241
242         buf_sprintf(output, "Content-Length: %d\r\n", buf->size);
243         buf_sprintf(output, "Content-Encoding: binary\r\n");
244 #ifdef JP
245 #ifdef SJIS
246         buf_sprintf(output, "Content-Type: text/plain; charset=SHIFT_JIS\r\n");
247 #endif
248 #ifdef EUC
249         buf_sprintf(output, "Content-Type: text/plain; charset=EUC-JP\r\n");
250 #endif
251 #else
252         buf_sprintf(output, "Content-Type: text/plain; charset=ASCII\r\n");
253 #endif
254         buf_sprintf(output, "\r\n");
255         buf_append(output, buf->data, buf->size);
256
257         soc_write(sd, output->data, output->size);
258
259         soc_read(sd, response_buf, sizeof(response_buf));
260
261         return strncmp(response_buf, HTTP_RESPONSE_CODE_OK, strlen(HTTP_RESPONSE_CODE_OK)) == 0;
262 }
263
264 /*!
265  * @brief キャラクタダンプを作って BUFに保存
266  * @param dumpbuf 伝送内容バッファ
267  * @return エラーコード
268  */
269 static errr make_dump(BUF* dumpbuf)
270 {
271         char            buf[1024];
272         FILE *fff;
273         char file_name[1024];
274
275         /* Open a new file */
276         fff = my_fopen_temp(file_name, 1024);
277         if (!fff)
278         {
279 #ifdef JP
280                 msg_format("一時ファイル %s を作成できませんでした。", file_name);
281 #else
282                 msg_format("Failed to create temporary file %s.", file_name);
283 #endif
284                 msg_print(NULL);
285                 return 1;
286         }
287
288         /* 一旦一時ファイルを作る。通常のダンプ出力と共通化するため。 */
289         (void)make_character_dump(fff);
290
291         /* Close the file */
292         my_fclose(fff);
293
294         /* Open for read */
295         fff = my_fopen(file_name, "r");
296
297         while (fgets(buf, 1024, fff))
298         {
299                 (void)buf_sprintf(dumpbuf, "%s", buf);
300         }
301
302         /* Close the file */
303         my_fclose(fff);
304
305         /* Remove the file */
306         fd_kill(file_name);
307
308         /* Success */
309         return (0);
310 }
311
312 /*!
313  * @brief スクリーンダンプを作成する/ Make screen dump to buffer
314  * @return 作成したスクリーンダンプの参照ポインタ
315  */
316 cptr make_screen_dump(void)
317 {
318         BUF *screen_buf;
319         int y, x, i;
320         cptr ret;
321
322         byte a = 0, old_a = 0;
323         char c = ' ';
324
325         static cptr html_head[] = {
326                 "<html>\n<body text=\"#ffffff\" bgcolor=\"#000000\">\n",
327                 "<pre>",
328                 0,
329         };
330         static cptr html_foot[] = {
331                 "</pre>\n",
332                 "</body>\n</html>\n",
333                 0,
334         };
335
336         bool old_use_graphics = use_graphics;
337
338         int wid, hgt;
339
340         Term_get_size(&wid, &hgt);
341
342         /* Alloc buffer */
343         screen_buf = buf_new();
344         if (screen_buf == NULL) return (NULL);
345
346         if (old_use_graphics)
347         {
348                 /* Clear -more- prompt first */
349                 msg_print(NULL);
350
351                 use_graphics = FALSE;
352                 reset_visuals();
353
354                 /* Redraw everything */
355                 p_ptr->redraw |= (PR_WIPE | PR_BASIC | PR_EXTRA | PR_MAP | PR_EQUIPPY);
356
357                 /* Hack -- update */
358                 handle_stuff();
359         }
360
361         for (i = 0; html_head[i]; i++)
362                 buf_sprintf(screen_buf, html_head[i]);
363
364         /* Dump the screen */
365         for (y = 0; y < hgt; y++)
366         {
367                 /* Start the row */
368                 if (y != 0)
369                         buf_sprintf(screen_buf, "\n");
370
371                 /* Dump each row */
372                 for (x = 0; x < wid - 1; x++)
373                 {
374                         int rv, gv, bv;
375                         cptr cc = NULL;
376                         /* Get the attr/char */
377                         (void)(Term_what(x, y, &a, &c));
378
379                         switch (c)
380                         {
381                         case '&': cc = "&amp;"; break;
382                         case '<': cc = "&lt;"; break;
383                         case '>': cc = "&gt;"; break;
384 #ifdef WINDOWS
385                         case 0x1f: c = '.'; break;
386                         case 0x7f: c = (a == 0x09) ? '%' : '#'; break;
387 #endif
388                         }
389
390                         a = a & 0x0F;
391                         if ((y == 0 && x == 0) || a != old_a) {
392                                 rv = angband_color_table[a][1];
393                                 gv = angband_color_table[a][2];
394                                 bv = angband_color_table[a][3];
395                                 buf_sprintf(screen_buf, "%s<font color=\"#%02x%02x%02x\">", 
396                                             ((y == 0 && x == 0) ? "" : "</font>"), rv, gv, bv);
397                                 old_a = a;
398                         }
399                         if (cc)
400                                 buf_sprintf(screen_buf, "%s", cc);
401                         else
402                                 buf_sprintf(screen_buf, "%c", c);
403                 }
404         }
405         buf_sprintf(screen_buf, "</font>");
406
407         for (i = 0; html_foot[i]; i++)
408                 buf_sprintf(screen_buf, html_foot[i]);
409
410         /* Screen dump size is too big ? */
411         if (screen_buf->size + 1> SCREEN_BUF_SIZE)
412         {
413                 ret = NULL;
414         }
415         else
416         {
417                 /* Terminate string */
418                 buf_append(screen_buf, "", 1);
419
420                 ret = string_make(screen_buf->data);
421         }
422
423         /* Free buffer */
424         buf_delete(screen_buf);
425
426         if (old_use_graphics)
427         {
428                 use_graphics = TRUE;
429                 reset_visuals();
430
431                 /* Redraw everything */
432                 p_ptr->redraw |= (PR_WIPE | PR_BASIC | PR_EXTRA | PR_MAP | PR_EQUIPPY);
433
434                 /* Hack -- update */
435                 handle_stuff();
436         }
437
438         return ret;
439 }
440
441 /*!
442  * @brief スコア転送処理のメインルーチン
443  * @return エラーコード
444  */
445 errr report_score(void)
446 {
447 #ifdef MACINTOSH
448         OSStatus err;
449 #else
450         errr err = 0;
451 #endif
452
453 #ifdef WINDOWS
454         WSADATA wsaData;
455         WORD wVersionRequested =(WORD) (( 1) |  ( 1 << 8));
456 #endif
457
458         BUF *score;
459         int sd;
460         char seikakutmp[128];
461
462         score = buf_new();
463
464 #ifdef JP
465         sprintf(seikakutmp, "%s%s", ap_ptr->title, (ap_ptr->no ? "の" : ""));
466 #else
467         sprintf(seikakutmp, "%s ", ap_ptr->title);
468 #endif
469
470         buf_sprintf(score, "name: %s\n", p_ptr->name);
471 #ifdef JP
472         buf_sprintf(score, "version: 変愚蛮怒 %d.%d.%d\n",
473                     FAKE_VER_MAJOR-10, FAKE_VER_MINOR, FAKE_VER_PATCH);
474 #else
475         buf_sprintf(score, "version: Hengband %d.%d.%d\n",
476                     FAKE_VER_MAJOR-10, FAKE_VER_MINOR, FAKE_VER_PATCH);
477 #endif
478         buf_sprintf(score, "score: %d\n", total_points());
479         buf_sprintf(score, "level: %d\n", p_ptr->lev);
480         buf_sprintf(score, "depth: %d\n", dun_level);
481         buf_sprintf(score, "maxlv: %d\n", p_ptr->max_plv);
482         buf_sprintf(score, "maxdp: %d\n", max_dlv[DUNGEON_ANGBAND]);
483         buf_sprintf(score, "au: %d\n", p_ptr->au);
484         buf_sprintf(score, "turns: %d\n", turn_real(turn));
485         buf_sprintf(score, "sex: %d\n", p_ptr->psex);
486         buf_sprintf(score, "race: %s\n", rp_ptr->title);
487         buf_sprintf(score, "class: %s\n", cp_ptr->title);
488         buf_sprintf(score, "seikaku: %s\n", seikakutmp);
489         buf_sprintf(score, "realm1: %s\n", realm_names[p_ptr->realm1]);
490         buf_sprintf(score, "realm2: %s\n", realm_names[p_ptr->realm2]);
491         buf_sprintf(score, "killer: %s\n", p_ptr->died_from);
492         buf_sprintf(score, "-----charcter dump-----\n");
493
494         make_dump(score);
495
496         if (screen_dump)
497         {
498                 buf_sprintf(score, "-----screen shot-----\n");
499                 buf_append(score, screen_dump, strlen(screen_dump));
500         }
501         
502 #ifdef WINDOWS
503         if (WSAStartup(wVersionRequested, &wsaData))
504         {
505                 msg_print("Report: WSAStartup failed.");
506                 goto report_end;
507         }
508 #endif
509
510 #ifdef MACINTOSH
511 #if TARGET_API_MAC_CARBON
512         err = InitOpenTransportInContext(kInitOTForApplicationMask, NULL);
513 #else
514         err = InitOpenTransport();
515 #endif
516         if (err != noErr)
517         {
518                 msg_print("Report: OpenTransport failed.");
519                 return 1;
520         }
521 #endif
522
523         Term_clear();
524
525         while (1)
526         {
527                 char buff[160];
528 #ifdef JP
529                 prt("接続中...", 0, 0);
530 #else
531                 prt("connecting...", 0, 0);
532 #endif
533                 Term_fresh();
534                 
535                 /* プロキシを設定する */
536                 set_proxy(HTTP_PROXY, HTTP_PROXY_PORT);
537
538                 /* Connect to the score server */
539                 sd = connect_server(HTTP_TIMEOUT, SCORE_SERVER, SCORE_PORT);
540
541
542                 if (sd < 0) {
543 #ifdef JP
544                         sprintf(buff, "スコア・サーバへの接続に失敗しました。(%s)", soc_err());
545 #else
546                         sprintf(buff, "Failed to connect to the score server.(%s)", soc_err());
547 #endif
548                         prt(buff, 0, 0);
549                         (void)inkey();
550
551 #ifdef JP
552                         if (!get_check_strict("もう一度接続を試みますか? ", CHECK_NO_HISTORY))
553 #else
554                         if (!get_check_strict("Try again? ", CHECK_NO_HISTORY))
555 #endif
556                         {
557                                 err = 1;
558                                 goto report_end;
559                         }
560
561                         continue;
562                 }
563
564 #ifdef JP
565                 prt("スコア送信中...", 0, 0);
566 #else
567                 prt("Sending the score...", 0, 0);
568 #endif
569                 Term_fresh();
570
571                 if (!http_post(sd, SCORE_PATH, score)) {
572                         disconnect_server(sd);
573 #ifdef JP
574                         sprintf(buff, "スコア・サーバへの送信に失敗しました。");
575 #else
576                         sprintf(buff, "Failed to send to the score server.");
577 #endif
578                         prt(buff, 0, 0);
579                         (void)inkey();
580
581 #ifdef JP
582                         if (!get_check_strict("もう一度接続を試みますか? ", CHECK_NO_HISTORY))
583 #else
584                         if (!get_check_strict("Try again? ", CHECK_NO_HISTORY))
585 #endif
586                         {
587                                 err = 1;
588                                 goto report_end;
589                         }
590
591                         continue;
592                 }
593
594                 disconnect_server(sd);
595                 break;
596         }
597
598  report_end:
599 #ifdef WINDOWS
600         WSACleanup();
601 #endif
602
603 #ifdef MACINTOSH
604 #if TARGET_API_MAC_CARBON
605         CloseOpenTransportInContext(NULL);
606 #else
607         CloseOpenTransport();
608 #endif
609 #endif
610
611         return err;
612 }
613
614 #endif /* WORLD_SCORE */