-
Notifications
You must be signed in to change notification settings - Fork 4
/
tCup.hsp
956 lines (741 loc) · 23.7 KB
/
tCup.hsp
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
//======================================================================
// TsubuyakiSoup
//----------------------------------------------------------------------
// HSPからTwitterを操作するモジュール。
// OAuthに対応。API1.1へ対応。
//----------------------------------------------------------------------
// Version : 2.0
// Author : Takaya
// CreateDate : 10/07/29
// LastUpdate : 13/04/01
//======================================================================
/* [HDL module infomation]
%dll
TsubuyakiSoup
%ver
2.0
%date
2010/11/14
%note
TsubuyakiSoup.asをインクルードすること。
%port
Win
%*/
#include "encode.as"
#undef sjis2utf8n(%1, %2)
#define global sjis2utf8n(%1, %2) _FromSJIS@mod_encode %2, CODEPAGE_S_JIS, %1, CODEPAGE_UTF_8
#undef utf8n2sjis(%1)
#define global ctype utf8n2sjis(%1) _ToSJIS@mod_encode(%1, CODEPAGE_UTF_8, CODEPAGE_S_JIS)
#module tCup
#uselib "advapi32.dll"
#cfunc _CryptAcquireContext "CryptAcquireContextA" var, sptr, sptr, int, int
#cfunc _CryptCreateHash "CryptCreateHash" sptr, int, int, int, var
#cfunc _CryptHashData "CryptHashData" sptr, sptr, int, int
#cfunc _CryptSetHashParam "CryptSetHashParam" sptr, int, var, int
#cfunc _CryptGetHashParam "CryptGetHashParam" sptr, int, sptr, var, int
#cfunc _CryptImportKey "CryptImportKey" sptr, var, int, int, int, var
#func _CryptDestroyKey "CryptDestroyKey" int
#func _CryptDestroyHash "CryptDestroyHash" int
#func _CryptReleaseContext "CryptReleaseContext" int, int
#cfunc _CryptDeriveKey "CryptDeriveKey" int, int, int, int, var
#cfunc _CryptEncrypt "CryptEncrypt" int, int, int, int, int, var, int
#cfunc _CryptDecrypt "CryptDecrypt" int, int, int, int, var, var
//---------------
// wininet.dll
//---------------
#uselib "wininet.dll"
#cfunc _InternetOpen "InternetOpenA" sptr, int, sptr, sptr, int
#cfunc _InternetOpenUrl "InternetOpenUrlA" int, str, sptr, int, int, int
#func _InternetReadFile "InternetReadFile" int, var, int, var
#func _InternetCloseHandle "InternetCloseHandle" int
#cfunc _InternetConnect "InternetConnectA" int, str, int, sptr, sptr, int, int, int
#cfunc _HttpOpenRequest "HttpOpenRequestA" int, sptr, str, sptr, sptr, sptr, int, int
#cfunc _HttpSendRequest "HttpSendRequestA" int, sptr, int, sptr, int
#cfunc _HttpQueryInfo "HttpQueryInfoA" int, int, var, var, int
#func _InternetQueryDataAvailable "InternetQueryDataAvailable" int, var, int, int
#func _InternetSetOption "InternetSetOptionA" int, int, int, int
//---------------
// crtdll.dll
//---------------
#uselib "crtdll.dll"
#func _time "time" var
#define HP_HMAC_INFO 0x0005
#define PLAINTEXTKEYBLOB 0x8
#define CUR_BLOB_VERSION 2
#define PROV_RSA_FULL 1
#define CRYPT_IPSEC_HMAC_KEY 0x00000100
#define HP_HASHVAL 0x0002
#define ALG_CLASS_HASH (4 << 13)
#define ALG_TYPE_ANY (0)
#define ALG_SID_SHA1 4
#define ALG_SID_HMAC 9
#define ALG_CLASS_DATA_ENCRYPT (3 << 13) // 0x6000
#define ALG_TYPE_BLOCK (3 << 9) // 0x0600
#define ALG_SID_RC2 2 // 0x0002
#define CALG_SHA1 (ALG_CLASS_HASH | ALG_TYPE_ANY | ALG_SID_SHA1)
#define CALG_HMAC (ALG_CLASS_HASH | ALG_TYPE_ANY | ALG_SID_HMAC)
#define CALG_RC2 (ALG_CLASS_DATA_ENCRYPT|ALG_TYPE_BLOCK|ALG_SID_RC2)
//
#define INTERNET_OPEN_TYPE_DIRECT 1
#define INTERNET_OPTION_CONNECT_TIMEOUT 2
#define INTERNET_OPTION_HTTP_DECODING 65
#define INTERNET_DEFAULT_HTTPS_PORT 443
#define INTERNET_SERVICE_HTTP 3
#define HTTP_QUERY_STATUS_CODE 19
#define HTTP_QUERY_RAW_HEADERS_CRLF 22
#define INTERNET_FLAG_RELOAD 0x80000000
#define INTERNET_FLAG_SECURE 0x00800000
#define INTERNET_FLAG_NO_CACHE_WRITE 0x04000000
#define INTERNET_FLAG_DONT_CACHE INTERNET_FLAG_NO_CACHE_WRITE
#define INTERNET_FLAG_IGNORE_CERT_DATE_INVALID 0x00002000
#define INTERNET_FLAG_IGNORE_CERT_CN_INVALID 0x00001000
//------------------------------
// 定数
//------------------------------
//HTTPメソッド
#define global METHOD_GET 0
#define global METHOD_POST 1
#define global METHOD_DELETE 2
#define global METHOD_PUT 3
#define global FORMAT_JSON 0
#define global FORMAT_XML 1
//============================================================
/* [HDL symbol infomation]
%index
tCupInit
TsubuyakiSoupの初期化
%prm
p1, p2, p3
p1 = 文字列 : ユーザエージェント
p2 = 文字列 : Consumer Key
p3 = 文字列 : Consumer Secret
p4 = 0~(30) : タイムアウトの時間(秒)
%inst
TsubyakiSoupモジュールの初期化をします。Twitter操作命令の使用前に呼び出す必要があります。
p1にユーザエージェントを指定します。ユーザエージェントを指定していないとSearchAPIなどで厳しいAPI制限を受けることがあります。
p2にConsumer Keyを、p3にConsumer Secretを指定してください。Consumer KeyとConsumer Secretは、Twitterから取得する必要があります。詳しくは、リファレンスをご覧ください。
p4にはTwitterと通信する際のタイムアウトの時間を秒単位で指定してください。
%href
TS_End
%group
TwitterAPI操作命令
%*/
//------------------------------------------------------------
#deffunc _tCupInit str p1, str p2, str p3, int p4
//各種変数の初期化
; rateLimit(0) = -1 // 15分間にAPIを実行できる回数
; rateLimit(1) = -1 // APIを実行できる残り回数
; rateLimit(2) = -1 // リセットする時間
accessToken = "" // AccessToken
accessSecret = "" // AccessTokenSecret
requestToken = "" // RequestToken
rquestSecret = "" // RequestTokenSecret
consumerKey = p2 // ConsumerKey
consumerSecret = p3 // ConsumerSecret
screenName = ""
userId = ""
formatType = "json"
responseHeader = ""
responseBody = ""
timeOutTime = p4*1000
gzipFlag = 1 // true
//インターネットオープン
hInet = _InternetOpen( p1, INTERNET_OPEN_TYPE_DIRECT, 0, 0, 0)
_InternetSetOption hInet, INTERNET_OPTION_CONNECT_TIMEOUT, varptr(timeOutTime), 4
_InternetSetOption hInet, INTERNET_OPTION_HTTP_DECODING, varptr(gzipFlag), 4
return
#define global tCupInit(%1,%2,%3,%4=30) _tCupInit %1, %2, %3, %4
//============================================================
//============================================================
/* [HDL symbol infomation]
%index
tCupWash
TsubuyakiSoupの終了処理
%inst
TsubyakiSoupモジュールの終了処理を行ないます。
プログラム終了時に自動的に呼び出されるので明示的に呼び出す必要はありません。
%href
TS_Init
%group
TwitterAPI操作命令
%*/
//------------------------------------------------------------
#deffunc tCupWash onexit
//ハンドルの破棄
if (hRequest) : _InternetCloseHandle hRequest
if (hConnect) : _InternetCloseHandle hConnect
if (hInet) : _InternetCloseHandle hInet
return
//============================================================
//============================================================
/* [HDL symbol infomation]
%index
getHmacSha1
HMAC-SHA1で署名を生成
%prm
(p1, p2)
p1 = 文字列 : 署名化する文字列
p2 = 文字列 : 鍵とする文字列
%inst
SHA-1ハッシュ関数を使用したハッシュメッセージ認証コード(HMAC)を返します。
p1に署名化する文字列を指定します。
署名化するための鍵(キー)は、p2で文字列で指定します。
%href
sigEncode
%group
TsubuyakiSoup補助関数
%*/
//------------------------------------------------------------
#defcfunc getHmacSha1 str _p1, str _p2
ghc_p1 = _p1
ghc_p2 = _p2
hProv = 0
hKey = 0
hHash = 0
ghc_dataLength = 0
sdim hmacInfo,14
lpoke hmacInfo, 0, CALG_SHA1
ghc_p2Length = strlen(ghc_p2)
dim keyBlob, 3+(ghc_p2Length/4)+1
poke keyBlob, 0, PLAINTEXTKEYBLOB
poke keyBlob, 1, CUR_BLOB_VERSION
wpoke keyBlob, 2, 0
lpoke keyBlob, 4, CALG_RC2
lpoke keyBlob, 8, ghc_p2Length
memcpy keyBlob, ghc_p2, ghc_p2Length, 12, 0
//コンテキストの取得
if ( 1!_CryptAcquireContext(hProv, 0, 0, PROV_RSA_FULL, 0) ) {
return 0
}
//キーのインポート
if ( 1!_CryptImportKey(hProv, keyBlob, (12+ghc_p2Length), 0, CRYPT_IPSEC_HMAC_KEY, hKey) ) {
return 0
}
//ハッシュ初期化
if ( 1!_CryptCreateHash(hProv, CALG_HMAC, hKey, 0, hHash) ) {
return 0
}
//ハッシュパラメータの設定
if ( 1!_CryptSetHashParam(hHash, HP_HMAC_INFO, hmacInfo, 0) ) {
return 0
}
//ハッシュに書き込み
if ( 1!_CryptHashData(hHash, ghc_p1, strlen(ghc_p1), 0) ) {
return 0
}
//ハッシュ取得
if ( 1!_CryptGetHashParam(hHash, HP_HASHVAL, 0, ghc_dataLength, 0) ) {
return 0
}
sdim ghc_dest, ghc_dataLength
if ( _CryptGetHashParam(hHash, HP_HASHVAL, varptr(ghc_dest), ghc_dataLength, 0) ) {
}
//ハッシュハンドルの破棄
_CryptDestroyHash hHash
//キーハンドルの破棄
_CryptDestroyKey hKey
//ハンドルの破棄
_CryptReleaseContext hProv, 0
return ghc_dest
//============================================================
//============================================================
/* [HDL symbol infomation]
%index
sigEncode
OAuth/xAuth用シグネチャを生成
%prm
(p1, p2)
p1 = 文字列 : 署名化する文字列
p2 = 文字列 : 鍵とする文字列
%inst
OAuth/xAuth用の署名を返します。
p1に署名化する文字列を指定します。
署名化するための鍵(キー)は、p2で文字列で指定します。
Twitterのシグネチャ生成の仕様より、
文字コードUTF-8でURLエンコードした文字列(p1)を、同じくURLエンコードした文字列(p2)をキーとしてHAMAC-SHA1方式で生成した署名を、BASE64エンコードしたうえURLエンコードしています。
%href
HMAC_SHA1
%group
TsubuyakiSoup補助関数
%*/
//------------------------------------------------------------
#defcfunc sigEncode str se_p1, str se_p2
//utf-8へ変換
sjis2utf8n SigTmp, se_p1
sjis2utf8n SecretTmp, se_p2
//URLエンコード
SigEnc = form_encode(SigTmp, 0)
SecretEnc = form_encode(SecretTmp, 0)
return form_encode(base64encode( getHmacSha1(SigEnc, SecretEnc) ), 0)
//============================================================
// str p1 API
// array p2 argument
// int p3 http method
#deffunc execRestApi str era_p1, array era_p2, int era_p3
api = era_p1
arrayCopy era_p2, arguments
argumentLength = length(arguments)
methodType = era_p3
switch methodType
case METHOD_GET
method = "GET"
swbreak
case METHOD_POST
method = "POST"
swbreak
case METHOD_PUT
method = "PUT"
swbreak
case METHOD_DELETE
method = "DELETE"
swbreak
default
return 0
swbreak
swend
sigArrayLength = 6+argumentLength
sdim sigArray, 500, sigArrayLength
hConnect = 0 // InternetConnectのハンドル
hRequest = 0 // HttpOpenRequestのハンドル
statcode = 0 // リクエストの結果コード
dataLength = 0 // データ長
rsize = 1024 // バッファ初期値
hsize = 0 // 取得したバイト数が代入される変数
apiVersion = "1.1" // TwitterAPIのバージョン
apiUrl = apiVersion +"/"+ api
transStr = method +" https://api.twitter.com/"+ apiVersion +"/"+ api +" "
if (strmid(api,0,5) = "oauth") {
apiUrl = api
transStr = method +" https://api.twitter.com/"+ api +" "
}
usePort = 443
requestFlag = INTERNET_FLAG_RELOAD
requestFlag |= INTERNET_FLAG_SECURE
requestFlag |= INTERNET_FLAG_DONT_CACHE
requestFlag |= INTERNET_FLAG_IGNORE_CERT_DATE_INVALID
requestFlag |= INTERNET_FLAG_IGNORE_CERT_CN_INVALID
tokenStr = accessToken
sigKey = consumerSecret+" "+accessSecret
logmes "sigkey="+sigKey
if (api = "oauth/access_token") {
tokenStr = requestToken
sigKey = consumerSecret+" "+requestSecret
}
// シグネチャ生成
sigNonce = getRandomString(8, 32)
_time sigTime
sigArray(0) = "oauth_consumer_key=" + consumerKey
sigArray(1) = "oauth_nonce=" + sigNonce
sigArray(2) = "oauth_signature_method=HMAC-SHA1"
sigArray(3) = "oauth_timestamp=" + sigTime
sigArray(4) = "oauth_token="+ tokenStr
sigArray(5) = "oauth_version=1.0"
repeat argumentLength
sigArray(6+cnt) = arguments(cnt)
loop
logmes "--------------------------"
repeat length(sigArray)
logmes "sigArray("+cnt+") = "+sigArray(cnt)
loop
logmes "--------------------------"
_sortStrArray sigArray, 0, sigArrayLength-1
repeat sigArrayLength
if sigArray(cnt) = "" : continue
transStr += sigArray(cnt) +"&"
loop
transStr = strmid(transStr, 0, strlen(transStr)-1)
signature = sigEncode(transStr, sigKey)
if (methodType = METHOD_POST) {
postStr = ""
repeat sigArrayLength
postStr += sigArray(cnt) +"&"
loop
postStr += "oauth_signature=" +signature
postStrLength = strlen(postStr)
logmes "POST"
logmes "poststr = "+poststr
logmes "postlength = "+poststrlength
}
if (methodType = METHOD_GET) {
postStr = 0
postStrLength = 0
apiUrl += "?"
repeat sigArrayLength
apiUrl += sigArray(cnt) +"&"
loop
apiUrl += "oauth_signature=" +signature
}
//サーバへ接続
hConnect = _InternetConnect(hInet, "api.twitter.com", INTERNET_DEFAULT_HTTPS_PORT, 0, 0, INTERNET_SERVICE_HTTP, 0, 0)
if (hConnect = 0) {
//Connectハンドルを取得できなかった場合
return -4
}
//リクエストの初期化
hRequest = _HttpOpenRequest(hConnect, method, apiUrl, "HTTP/1.1", 0, 0, requestFlag, 0)
if (hRequest = 0) {
//Requestハンドルを取得できなかった場合
_InternetCloseHandle hConnect
return -3
}
//サーバへリクエスト送信
if ( _HttpSendRequest(hRequest, "Accept-Encoding: gzip, deflate;\nContent-Type: application/x-www-form-urlencoded", -1, postStr, postStrLength)) {
//ヘッダを取得する変数の初期化
responseHeaderSize = 3000
sdim responseHeader, responseHeaderSize
//ヘッダの取得
if ( _HttpQueryInfo(hRequest, HTTP_QUERY_RAW_HEADERS_CRLF, responseHeader, responseHeaderSize, 0) ) {
//ヘッダの解析
notesel responseHeader
repeat notemax
noteget headerLine, cnt
headerTokenPos = instr(headerLine, 0, "status: ") //ステータスコード
if (headerTokenPos != -1) : statcode = int(strmid(headerLine, headerTokenPos+8, 3))
headerTokenPos = instr(headerLine, 0, "content-length: ") //長さ
if (headerTokenPos != -1) : responseBodyLength = int(strmid(headerLine, -1, strlen(headerLine)-headerTokenPos+16))
; API_buf = instr(API_BufStr, 0, "X-RateLimit-Limit: ") //60分間にAPIを実行できる回数
; if (API_Buf != -1) : TS_RateLimit(0) = int(strmid(API_BufStr, -1, strlen(API_BufStr)-(API_buf+19)))
; API_buf = instr(API_BufStr, 0, "X-RateLimit-Remaining: ") //APIを実行できる残り回数
; if (API_Buf != -1) : TS_RateLimit(1) = int(strmid(API_BufStr, -1, strlen(API_BufStr)-(API_buf+23)))
; API_buf = instr(API_BufStr, 0, "X-RateLimit-Reset: ") //リセットする時間
; if (API_Buf != -1) : TS_RateLimit(2) = int(strmid(API_BufStr, -1, strlen(API_BufStr)-(API_buf+19)))
loop
noteunsel
logmes ""+responseBodyLength
//入手可能なデータ量を取得
_InternetQueryDataAvailable hRequest, rsize, 0, 0
//バッファの初期化
logmes "srize : "+ rsize
sdim responseBuffer, rsize+1
sdim responseBody, 10240
repeat
_InternetReadFile hRequest, responseBuffer, rsize, hsize
if (hsize = 0) : break
responseBody += strmid(responseBuffer, 0, hsize)
await 0
loop
} else {
//ヘッダの取得ができなかった場合
return -1
}
//Requestハンドルの破棄
_InternetCloseHandle hRequest
} else {
//サーバへリクエスト送信できなかった場合
return -2
}
return statcode
#defcfunc getResponseHeader
return responseHeader
#defcfunc getResponseBody
return responseBody
//============================================================
/* [HDL symbol infomation]
%index
setFormatType
取得フォーマットの設定
%prm
p1
p1 = 0~1(0) : フラグ
%inst
TwitterAPI操作命令系で取得するデータのフォーマットを設定します。
p1には以下のフラグが設定できます。
0 : JSON形式で取得
1 : XML形式で取得
%group
TwitterAPI操作命令
%*/
//------------------------------------------------------------
#deffunc _setFormatType int sft_p1
formatType = "json"
if sft_p1 = FORMAT_XML : formatType = "xml"
return
#define global setFormatType(%1=0) _setFormatType %1
//============================================================
//============================================================
/* [HDL symbol infomation]
%index
SetAccessToken
AccessTokenとSecretを設定
%prm
p1, p2
p1 = 文字列 : Access Token
p2 = 文字列 : Access Secret
%inst
TsubuyakiSoupにAccess TokenとAccess Secretを設定します。
p1にAccess Tokenを、p2にAccess Secretを指定します。
このAccess TokenとAccess Secretは、GetAccessToken命令かGetxAuthToken命令で取得することができます。詳しくは、リファレンスをご覧ください。
%href
GetAccessToken
GetxAuthToken
%group
TwitterAPI操作命令
%*/
//------------------------------------------------------------
#deffunc setAccessToken str sat_p1, str sat_p2
accessToken = sat_p1
accessSecret = sat_p2
return
//============================================================
//============================================================
/* [HDL symbol infomation]
%index
setRequestToken
RequestTokenとSecretを設定
%prm
p1, p2
p1 = 文字列 : Request Token
p2 = 文字列 : Request Secret
%inst
TsubuyakiSoupにRequest TokenとRequest Secretを設定します。
p1にRequest Tokenを、p2にRequest Secretを指定します。
%href
setAccessToken
%group
TwitterAPI操作命令
%*/
//------------------------------------------------------------
#deffunc setRequestToken str srt_p1, str srt_p2
requestToken = srt_p1
requestSecret = srt_p2
return
//============================================================
//============================================================
/* [HDL symbol infomation]
%index
getRequestToken
RequestTokenとSecretを設定
%prm
()
%inst
%href
setAccessToken
%group
TwitterAPI操作命令
%*/
//------------------------------------------------------------
#defcfunc getRequestToken
return requestToken
//============================================================
//============================================================
/* [HDL symbol infomation]
%index
getRequestSecret
RequestTokenとSecretを設定
%prm
()
%inst
%href
setAccessToken
%group
TwitterAPI操作命令
%*/
//------------------------------------------------------------
#defcfunc getRequestSecret
return requestSecret
//============================================================
//============================================================
/* [HDL symbol infomation]
%index
setConsumerToken
AccessTokenとSecretを設定
%prm
p1, p2
p1 = 文字列 : Consumer Token
p2 = 文字列 : Consumer Secret
%inst
TsubuyakiSoupにConsumer TokenとConsumer Secretを設定します。
p1にConsumer Tokenを、p2にConsumer Secretを指定します。
%href
tCupInit
%group
TwitterAPI操作命令
%*/
//------------------------------------------------------------
#deffunc setConsumerToken str sct_p1, str sct_p2
consumerToken = sct_p1
consumerSecret = sct_p2
return
//============================================================
//============================================================
/* [HDL symbol infomation]
%index
setUserInfo
ユーザ情報を設定
%prm
p1, p2
p1 = 文字列 : ユーザ名(スクリーン名)
p2 = 文字列 : ユーザID
%inst
TsubuyakiSoupにユーザ名(スクリーン名)とユーザIDを設定します。
p1にユーザ名(スクリーン名)を、p2にユーザIDを指定します。
TsubuyakiSoup2からユーザIDも文字列で処理しています。
%href
GetAccessToken
GetxAuthToken
%group
TwitterAPI操作命令
%*/
//------------------------------------------------------------
#deffunc setUserInfo str sui_p1, str sui_p2
screenName = sui_p1
userId = sui_p2
return
//============================================================
#global
#module
#uselib "kernel32.dll"
#cfunc _MultiByteToWideChar "MultiByteToWideChar" int, int, sptr, int, int, int
/*------------------------------------------------------------*/
//1バイト・2バイト判定
//
// isByte(p1)
// p1...判別文字コード
// [0:1byte/1:2byte]
//
#defcfunc isByte int p1
return (p1>=129 and p1<=159) or (p1>=224 and p1<=252)
/*------------------------------------------------------------*/
// quick sort
// http://ja.wikipedia.org/wiki/%E3%82%AF%E3%82%A4%E3%83%83%E3%82%AF%E3%82%BD%E3%83%BC%E3%83%88
#deffunc _sortStrArray array p1, int p2, int p3
p = p1((p2+p3)/2)
i = p2
j = p3
repeat
// i
repeat
if strcmp(p1(i), p) >= 0 : break
i++
loop
// j
repeat
if strcmp(p1(j), p) <= 0 : break
j--
loop
// 入れ替え
if (i < j) {
tmp = p1(i)
p1(i) = p1(j)
p1(j) = tmp
} else {
break
}
i++
j--
loop
if ( i-p2 > 1 ) : _sortStrArray p1, p2, i-1
if ( p3-j > 1 ) : _sortStrArray p1, j+1, p3
return
#defcfunc strcmp str _p1, str _p2
p1n = _p1
p2n = _p2
p1v = peek(p1n, 0)
p2v = peek(p2n, 0)
n = 0
while (p1v = p2v)
if (p1v = 0 or p2v = 0) : _break
n++
p1v = peek(p1n, n)
p2v = peek(p2n, n)
wend
return p1v - p2v
#deffunc arrayCopy array ary1, array ary2
dimtype ary2, vartype(ary1), length(ary1)
foreach ary1
ary2(cnt) = ary1(cnt)
loop
return
/*------------------------------------------------------------*/
//半角・全角含めた文字数を取り出す
//
// mb_strmid(p1, p2, p3)
// p1...取り出すもとの文字列が格納されている変数名
// p2...取り出し始めのインデックス
// p3...取り出す文字数
//
#defcfunc mb_strmid var p1, int p2, int p3
if vartype != 2 : return ""
s_size = strlen(p1)
trim_start = 0
trim_num = 0
repeat p2
if (Is_Byte(peek(p1,trim_start))) : trim_start++
trim_start++
loop
repeat p3
if (Is_Byte(peek(p1,trim_start+trim_num))) : trim_num++
trim_num++
loop
return strmid(p1,trim_start,trim_num)
//p2 半角スペースの処理 0 : '&' 1 : '%20'
#defcfunc form_encode str p1, int p2
/*
09 az AZ - . _ ~
はそのまま出力
*/
fe_str = p1
fe_p1Long = strlen(p1)
sdim fe_val, fe_p1Long*3
repeat fe_p1Long
fe_flag = 0
fe_tmp = peek(fe_str, cnt)
if (('0' <= fe_tmp)&('9' >= fe_tmp)) | (('A' <= fe_tmp)&('Z' >= fe_tmp)) | (('a' <= fe_tmp)&('z' >= fe_tmp)) | (fe_tmp = '-') | (fe_tmp = '.') | (fe_tmp = '_') | (fe_tmp = '~') :{
poke fe_val, strlen(fe_val), fe_tmp
} else {
if fe_tmp = ' ' {
if p2 = 0 : fe_val += "&"
if p2 = 1 : fe_val += "%20" //空白処理
} else {
fe_val += "%" + strf("%02X",fe_tmp)
}
}
loop
return fe_val
//ランダムな文字列を発生させる
//p1からp2文字まで
#defcfunc getRandomString int p1, int p2
;randomize
RS_Strlen = rnd(p2-p1+1) + p1
sdim RS_val, RS_Strlen
repeat RS_Strlen
RS_rnd = rnd(3)
if RS_rnd = 0 : RS_s = 48 + rnd(10)
if RS_rnd = 1 : RS_s = 65 + rnd(26)
if RS_rnd = 2 : RS_s = 97 + rnd(26)
poke RS_val, cnt, RS_s
loop
return RS_val
//BASE64へ変換
#defcfunc Base64Encode str p1
buf = p1
bufSize = strlen(buf)
val = ""
B64Table = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"
cc = 0
frac = bufSize\3
repeat bufSize/3
repeat 3
b(cnt) = peek(buf, cc*3+cnt)
loop
val += strmid(B64Table, (b(0) >> 2), 1)
val += strmid(B64Table, ((b(0) & 3) << 4) + (b(1) >> 4), 1)
val += strmid(B64Table, ((b(1) & 15) << 2) + (b(2) >> 6), 1)
val += strmid(B64Table, (b(2) & 63), 1)
cc++
loop
//端数分
if (frac) {
memexpand buf, bufSize+3
repeat 3
b(cnt) = peek(buf, cc*3+cnt)
loop
val += strmid(B64Table, b(0) >> 2, 1)
if (frac >= 1) : val += strmid( B64Table, ((b(0) & %00000011) << 4) + (b(1) >> 4), 1)
if (frac >= 2) : val += strmid( B64Table, ((b(1) & %00001111) << 2) + (b(2) >> 6), 1)
}
repeat (4-(strlen(val)\4))\4
val += "="
loop
return val
#global