-
Notifications
You must be signed in to change notification settings - Fork 7
/
arweave.js
1401 lines (1338 loc) · 35.3 KB
/
arweave.js
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
/* eslint-disable no-async-promise-executor */
import Arweave from 'arweave'
import Axios from 'axios'
import { decryptBuffer } from '@/util/encrypt'
import decode from '../util/decode'
import stringUtil from '../util/string'
import placeHolder from '@/assets/image/cover_placeholder.png'
// const arweaveHost = 'https://arweave.arcucy.io/'
const arweaveHost = 'https://arweave.arcucy.io/'
const ar = Arweave.init({
host: 'arweave.arcucy.io',
port: 443,
protocol: 'https',
timeout: 20000,
logging: false
})
// const ar = Arweave.init({
// host: 'arweave.net',
// port: 443,
// protocol: 'https',
// timeout: 20000,
// logging: false
// })
// Configuration
/**
* Single 单曲信息的标记均为 single-info,
* Album 专辑信息的标记均为 album-info,
* Podcast 播客的标记均为 podcast-info,
* SoundEffect 音效的标记均为 soundeffect-info.
*/
const AUDIO_TYPE = {
single: 'single-info',
album: 'album-info',
podcast: 'podcast-info',
soundEffect: 'soundeffect-info',
playlist: 'playlist-info'
}
const AUDIO_ICON = {
'single-info': 'mdi-music-circle',
'album-info': 'mdi-album',
'podcast-info': 'mdi-podcast',
'soundeffect-info': 'mdi-waveform'
}
const REVERSED_AUDIO_TYPE = {
'single-info': 'Single',
'album-info': 'Album',
'podcast-info': 'Podcast',
'soundeffect-info': 'Sound Effect',
'playlist-info': 'Playlist'
}
const APP_NAME = 'arclight-app'
const arweave = {
breakOnCall: false,
timerInterval: undefined,
/**
* Get user address based on key file content input
* 根据密钥文件内容获取用户地址
* @param {String} key - 使用 keyFileContent,不是原始文件
*/
getAddress (key) {
return new Promise((resolve, reject) => {
ar.wallets.jwkToAddress(key).then((address) => {
resolve(address)
}).catch(err => {
reject(err)
})
})
},
/**
* 转换 AR 为 Winston
* @param {} ar - AR 币值
*/
getWinstonFromAr (arprice) {
return ar.ar.arToWinston(arprice)
},
/**
* 转换 Winston 为 AR
* @param {*} winston
*/
getArFromWinston (winston) {
return ar.ar.winstonToAr(winston)
},
/**
* Get transaction detail entirely based on given txid
* 根据给定的 txid (交易ID) 获取完整的交易明细
* @param {String} txid - 交易编号
*/
getTransactionDetail (txid) {
return new Promise((resolve, reject) => {
ar.transactions.get(txid).then(detail => {
resolve(detail)
}).catch(err => {
reject(err)
})
})
},
/**
* Get the decoded data and buffer to string from the given transaction id
* 根据给定的 txid (交易ID) 获取解码的数据并缓冲为字符串
* @param {String} txid - 交易编号
*/
getTransactionDataDecodedString (txid) {
return new Promise((resolve, reject) => {
ar.transactions.getData(txid, { decode: true, string: true }).then(data => {
resolve(data)
}).catch(err => {
reject(err)
})
})
},
/**
* 提取给定的交易对象中的所有标签
* @param {Object} transaction
*/
getTagsByTransaction (transaction) {
const tags = transaction.get('tags')
const ret = {}
for (let i = 0; i < tags.length; i++) {
const key = tags[i].get('name', { decode: true, string: true })
const value = tags[i].get('value', { decode: true, string: true })
ret[key] = value
}
return ret
},
/**
* Get user's Arweave Id based on the input wallet address
* 根据输入的钱包地址获取用户的 Arweave ID
* @param {String} address - 用户的钱包地址
*/
getIdFromAddress (address) {
return new Promise((resolve, reject) => {
/**
* Use ArQL language to search the user's Arweave ID database
* 使用 ArQL 语言搜索用户的 Arweave ID 数据库
*/
ar.arql({
op: 'and',
expr1: {
op: 'equals',
expr1: 'from',
expr2: address // User address 用户钱包地址
},
expr2: {
op: 'and',
expr1: {
op: 'equals',
expr1: 'App-Name',
expr2: 'arweave-id' // Specified the App-Name as arweave-id 将应用程序名称指定为arweave-id
},
expr2: {
op: 'equals',
expr1: 'Type',
expr2: 'name'
}
}
}).then(ids => {
// Init a object to be resolved later
// 初始化要稍后返回的对象
const res = {
type: 'User',
data: ''
}
// Sepecify the user to be a guest if ids is empty
// 如果 id 为空,则指定用户为访客 Guest
if (ids.length === 0) {
res.type = 'guest'
res.data = 'Guest'
// resolve data on finish
return resolve(res)
}
const id = ids[0]
// Get transaction detial
// 获取交易明细
this.getTransactionDetail(id).then(transaction => {
// Go through for each id to find the tag
// 遍历每个id来找到标签
transaction.get('tags').forEach(tag => {
const key = tag.get('name', { decode: true, string: true })
const value = tag.get('value', { decode: true, string: true })
if (key === 'Type') {
res.type = value
}
})
// Get the encoded data from transaction
// 从交易中获取编码数据
this.getTransactionDataDecodedString(id).then(data => {
res.data = data
// resolve data on finish
// 完成时返回数据
resolve(res)
}).catch(err => reject(err))
}).catch(() => reject(new Error('Account has errored transactions, check your balance')))
}).catch(err => reject(err))
})
},
/**
* Get user's Arweave Avatar based on the input wallet address
* 根据输入的钱包地址获取用户的 Arweave 头像
* @param {String} address - 用户的钱包地址
*/
getAvatarFromAddress (address) {
return new Promise((resolve, reject) => {
ar.arql({
op: 'and',
expr1: {
op: 'equals',
expr1: 'from',
expr2: address
},
expr2: {
op: 'or',
expr1: {
op: 'equals',
expr1: 'App-Name',
expr2: 'arweave-avatar'
},
expr2: {
op: 'equals',
expr1: 'Type',
expr2: 'avatar'
}
}
}).then(async ids => {
if (ids.length === 0) {
resolve(false)
return
}
ar.transactions.getData(ids[0], { decode: true, string: true }).then(data => {
resolve(data)
})
})
})
},
/**
* Get All Audio Release List
* 获取所有音频发行列表
* @param {String} type 音频类型(single, album, podcast, soundEffect)
* @param {String} style 【可选】筛选歌曲风格(需要注意的是部分音频类型下没有区分歌曲风格)
*/
getAllAudioList (type, style) {
return new Promise((resolve, reject) => {
// 筛选音频类型
const typeString = AUDIO_TYPE[type]
if (!typeString) throw new Error(`${type} is the wrong type`)
// 筛选歌曲风格
const ordinary = {
op: 'equals',
expr1: 'Type',
expr2: typeString
}
const hasTypedSearch = style ? {
op: 'and', // 使用相等运算符
expr1: ordinary,
expr2: {
op: 'equals',
expr1: 'Genre',
expr2: style
}
} : ordinary
ar.arql({
op: 'and', // 使用 AND 运算符
expr1: {
op: 'equals', // 使用 相等 运算符
expr1: 'App-Name', // 特指 App-Name 标签
expr2: APP_NAME // 特指值为 arclight-test (测试网)
},
expr2: hasTypedSearch
}).then(ids => {
if (ids.length === 0) {
resolve([])
} else {
resolve(stringUtil.getBlockedArray(ids, type))
}
})
})
},
/**
* Get User Audio Release List
* 获取用户发行的音频列表
* @param {String} address - 用户的钱包地址
* @param {String} type - 音频类型(single, album, podcast, soundEffect)
* @param {String} style -【可选】筛选歌曲风格(需要注意的是部分音频类型下没有区分歌曲风格)
*/
getUserAudioList (address, type, style) {
return new Promise((resolve, reject) => {
// 筛选音频类型
const typeString = AUDIO_TYPE[type]
if (!typeString) throw new Error(`${type} is the wrong type`)
// 筛选歌曲风格
const ordinary = {
op: 'and',
expr1: {
op: 'equals',
expr1: 'Author-Address',
expr2: address
},
expr2: {
op: 'equals',
expr1: 'Type',
expr2: typeString
}
}
const hasTypedSearch = style ? {
op: 'and', // 使用相等运算符
expr1: ordinary,
expr2: {
op: 'equals',
expr1: 'Genre',
expr2: style
}
} : ordinary
ar.arql({
op: 'and', // 使用 AND 运算符
expr1: {
op: 'equals', // 使用 相等 运算符
expr1: 'App-Name', // 特指 App-Name 标签
expr2: APP_NAME // 特指值为 arclight-test (测试网)
},
expr2: hasTypedSearch
}).then(ids => {
if (ids.length === 0) {
resolve([])
} else {
resolve(stringUtil.getBlockedArray(ids, type))
}
})
})
},
/**
* 根据给定的交易 ID 列表获取歌曲信息列表
* @param {Number} txids 交易 ID 列表
* @param {Function} callback (item, index) 如果需要实时的逐条获取列表,请使用这个回调,如果需要在所有的查询完成后获取,则直接接收返回值。
*/
async getAudioInfoByTxids (txids, callback) {
const infoList = []
for (let i = 0; i < txids.length; i++) {
let transaction
try {
transaction = await this.getTransactionDetail(txids[i])
} catch (e) {
console.error(txids[i], e)
}
let audioInfo = null
if (transaction) {
const tags = this.getTagsByTransaction(transaction)
const audioData = JSON.parse(decode.uint8ArrayToString(transaction.data))
audioInfo = {
txid: txids[i],
authorAddress: tags['Author-Address'],
authorUsername: tags['Author-Username'],
type: tags.Type,
unixTime: Number(tags['Unix-Time']),
title: audioData.title,
desp: audioData.desp,
price: audioData.price,
duration: audioData.duration,
coverTxid: audioData.cover,
musicTxid: audioData.music
}
}
infoList.push(audioInfo)
if (callback) callback(audioInfo, i)
}
return infoList
},
/**
* Get cover image based on given txid (transaction id)
* 根据输入的 txid (交易 ID)获取封面
* @param {String} txid(TransactionId) - 图片的交易地址
*/
getCover (txid) {
let failedTimes = 0
return new Promise(async (resolve, reject) => {
let data
while (failedTimes < 3) {
try {
data = await ar.transactions.getData(txid, { decode: true, string: true })
if (data) {
break
}
} catch (e) {
failedTimes++
}
}
if (data) resolve(data)
else resolve(placeHolder)
})
},
/**
* Get audio data based on given txid (transaction id)
* @param {String} txid(TransactionId) - 音频的交易地址
*/
getMusicUrl (txid) {
return arweaveHost + txid
},
/**
* Get audio data based on given txid (transaction id)
* @param {String} txid(TransactionId) - 音频的交易地址
* @param {any} cancelToken - 取消标记(用来取消下载)
* @param {Function} callback - 如果需要获取加载进度,请使用这个回调方法
*/
getMusic (txid, cancelToken, callback) {
return new Promise((resolve, reject) => {
// 加载进度回调
let onDownloadProgress
if (callback) {
onDownloadProgress = progressEvent => {
const percentCompleted = Math.round((progressEvent.loaded * 100) / progressEvent.total)
callback(percentCompleted)
}
}
// get
Axios.get(arweaveHost + txid, {
responseType: 'arraybuffer',
cancelToken,
onDownloadProgress
}).then(res => {
const data = decryptBuffer(Buffer.from(res.data))
resolve({ data: data, type: res.headers['content-type'] })
})
})
},
/**
* 获取已购买的音频
* @param {String} address 用户的钱包地址
* @param {String} type 音频类型
*/
getPurchasedItems (address, type) {
const typeString = AUDIO_TYPE[type]
return new Promise((resolve, reject) => {
ar.arql({
op: 'and',
expr1: {
op: 'equals',
expr1: 'App-Name',
expr2: APP_NAME
},
expr2: {
op: 'and',
expr1: {
op: 'and',
expr1: {
op: 'equals',
expr1: 'Source',
expr2: address
},
expr2: {
op: 'equals',
expr1: 'Type',
expr2: 'Purchase'
}
},
expr2: {
op: 'equals',
expr1: 'Purchase-Type',
expr2: typeString
}
}
}).then(async ids => {
if (ids.length === 0) {
resolve([])
return
}
resolve(ids)
})
})
},
/**
* 获取用户购买物品的状态
* @param {*} address - 用户钱包地址
* @param {*} item - 购买物品地址
*/
getItemPurchaseStatus (address, item) {
return new Promise((resolve, reject) => {
ar.arql({
op: 'and',
expr1: {
op: 'equals',
expr1: 'App-Name',
expr2: APP_NAME
},
expr2: {
op: 'and',
expr1: {
op: 'and',
expr1: {
op: 'equals',
expr1: 'Source',
expr2: address
},
expr2: {
op: 'equals',
expr1: 'Type',
expr2: 'Purchase'
}
},
expr2: {
op: 'equals',
expr1: 'Item',
expr2: item
}
}
}).then(async ids => {
if (ids.length === 0) {
resolve(false)
return
}
resolve(ids[0])
})
})
},
/**
* 获取用户购买完整专辑的状态
* @param {*} address - 用户钱包地址
* @param {*} item - 购买物品地址
*/
getAlbumPurchaseStatus (address, item) {
return new Promise((resolve, reject) => {
ar.arql({
op: 'and',
expr1: {
op: 'equals',
expr1: 'App-Name',
expr2: APP_NAME
},
expr2: {
op: 'and',
expr1: {
op: 'and',
expr1: {
op: 'equals',
expr1: 'Source',
expr2: address
},
expr2: {
op: 'equals',
expr1: 'Type',
expr2: 'Purchase'
}
},
expr2: {
op: 'and',
expr1: {
op: 'equals',
expr1: 'Album-Type',
expr2: 'full'
},
expr2: {
op: 'equals',
expr1: 'Item',
expr2: item
}
}
}
}).then(async ids => {
if (ids.length === 0) {
resolve(false)
return
}
resolve(ids[0])
})
})
},
/**
* 获取用户购买物品的状态
* @param {*} address - 用户钱包地址
* @param {*} item - 购买物品地址
*/
getAlbumItemPurchaseStatus (address, item, trackNumber) {
return new Promise((resolve, reject) => {
ar.arql({
op: 'and',
expr1: {
op: 'equals',
expr1: 'App-Name',
expr2: APP_NAME
},
expr2: {
op: 'and',
expr1: {
op: 'and',
expr1: {
op: 'equals',
expr1: 'Source',
expr2: address
},
expr2: {
op: 'equals',
expr1: 'Type',
expr2: 'Purchase'
}
},
expr2: {
op: 'and',
expr1: {
op: 'equals',
expr1: 'Item',
expr2: item
},
expr2: {
op: 'equals',
expr1: 'Track-Number',
expr2: trackNumber + ''
}
}
}
}).then(async ids => {
if (ids.length === 0) {
resolve(false)
return
}
resolve(ids[0])
})
})
},
querySearch (val, callback) {
return new Promise(async (resolve, reject) => {
this.breakOnCall = false
const res = []
const singleData = await ar.arql({
op: 'and',
expr1: {
op: 'and',
expr1: {
op: 'equals',
expr1: 'App-Name',
expr2: APP_NAME
},
expr2: {
op: 'equals',
expr1: 'Type',
expr2: AUDIO_TYPE.single
}
},
expr2: {
op: 'or',
expr1: {
op: 'equals',
expr1: 'Title',
expr2: val
},
expr2: {
op: 'equals',
expr1: 'Author-Username',
expr2: val
}
}
})
const albumData = await ar.arql({
op: 'and',
expr1: {
op: 'and',
expr1: {
op: 'equals',
expr1: 'App-Name',
expr2: APP_NAME
},
expr2: {
op: 'equals',
expr1: 'Type',
expr2: AUDIO_TYPE.album
}
},
expr2: {
op: 'or',
expr1: {
op: 'equals',
expr1: 'Title',
expr2: val
},
expr2: {
op: 'equals',
expr1: 'Author-Username',
expr2: val
}
}
})
const podcastData = await ar.arql({
op: 'and',
expr1: {
op: 'and',
expr1: {
op: 'equals',
expr1: 'App-Name',
expr2: APP_NAME
},
expr2: {
op: 'equals',
expr1: 'Type',
expr2: AUDIO_TYPE.podcast
}
},
expr2: {
op: 'or',
expr1: {
op: 'equals',
expr1: 'Title',
expr2: val
},
expr2: {
op: 'equals',
expr1: 'Author-Username',
expr2: val
}
}
})
const soundeffectData = await ar.arql({
op: 'and',
expr1: {
op: 'and',
expr1: {
op: 'equals',
expr1: 'App-Name',
expr2: APP_NAME
},
expr2: {
op: 'equals',
expr1: 'Type',
expr2: AUDIO_TYPE.soundEffect
}
},
expr2: {
op: 'or',
expr1: {
op: 'equals',
expr1: 'Title',
expr2: val
},
expr2: {
op: 'equals',
expr1: 'Author-Username',
expr2: val
}
}
})
let data = []
data = data.concat(singleData).concat(albumData).concat(podcastData).concat(soundeffectData)
for (let i = 0; i < data.length; i++) {
if (this.breakOnCall) {
break
}
const tx = await this.getTransactionDetail(data[i])
const tags = await this.getTagsByTransaction(tx)
const type = REVERSED_AUDIO_TYPE[tags.Type]
const icon = AUDIO_ICON[tags.Type]
const id = data[i]
const title = tags.Title
const artist = tags['Author-Username']
const final = { searchType: 'Music', id: id, title: title, artist: artist, type: type, icon: icon }
if (icon !== undefined) callback(final)
else continue
}
resolve(res)
})
},
getAllInfo (arr, type, icon) {
return new Promise(async (resolve, reject) => {
const res = []
for (let i = 0; i < arr.length; i++) {
const tx = await this.getTransactionDetail(arr[i].id)
const tags = await this.getTagsByTransaction(tx)
res.push({ id: arr[i].id, title: tags.Title, artist: tags['Author-Username'] })
}
})
},
/**
* Get user's location settings from given address
* @param {String} address - 用户的钱包地址
*/
getLocationFromAddress (address) {
return new Promise((resolve, reject) => {
ar.arql({
op: 'and',
expr1: {
op: 'equals',
expr1: 'from',
expr2: address
},
expr2: {
op: 'and',
expr1: {
op: 'equals',
expr1: 'App-Name',
expr2: APP_NAME
},
expr2: {
op: 'equals',
expr1: 'Type',
expr2: 'profile-location'
}
}
}).then(async ids => {
if (ids.length === 0) {
resolve(false)
return
}
ar.transactions.getData(ids[0], { decode: true, string: true }).then(data => {
resolve(data)
})
})
})
},
/**
* Get user's website settings from given address
* @param {String} address - 用户的钱包地址
*/
getWebsiteFromAddress (address) {
return new Promise((resolve, reject) => {
ar.arql({
op: 'and',
expr1: {
op: 'equals',
expr1: 'from',
expr2: address
},
expr2: {
op: 'and',
expr1: {
op: 'equals',
expr1: 'App-Name',
expr2: APP_NAME
},
expr2: {
op: 'equals',
expr1: 'Type',
expr2: 'profile-website'
}
}
}).then(async ids => {
if (ids.length === 0) {
resolve(false)
return
}
ar.transactions.getData(ids[0], { decode: true, string: true }).then(data => {
resolve(data)
})
})
})
},
/**
* Get user's introduction settings from given address
* @param {String} address - 用户的钱包地址
*/
getIntroFromAddress (address) {
return new Promise((resolve, reject) => {
ar.arql({
op: 'and',
expr1: {
op: 'equals',
expr1: 'from',
expr2: address
},
expr2: {
op: 'and',
expr1: {
op: 'equals',
expr1: 'App-Name',
expr2: APP_NAME
},
expr2: {
op: 'equals',
expr1: 'Type',
expr2: 'profile-introduction'
}
}
}).then(async ids => {
if (ids.length === 0) {
resolve(false)
return
}
ar.transactions.getData(ids[0], { decode: true, string: true }).then(data => {
resolve(data)
})
})
})
},
/**
* Get user's netease id settings from given address
* @param {String} address - 用户的钱包地址
*/
getNeteaseIdFromAddress (address) {
return new Promise((resolve, reject) => {
ar.arql({
op: 'and',
expr1: {
op: 'equals',
expr1: 'from',
expr2: address
},
expr2: {
op: 'and',
expr1: {
op: 'equals',
expr1: 'App-Name',
expr2: APP_NAME
},
expr2: {
op: 'equals',
expr1: 'Type',
expr2: 'profile-neteaseid'
}
}
}).then(async ids => {
if (ids.length === 0) {
resolve(false)
return
}
ar.transactions.getData(ids[0], { decode: true, string: true }).then(data => {
resolve(data)
})
})
})
},
/**
* Get user's soundcloud id settings from given address
* @param {String} address - 用户的钱包地址
*/
getSoundCloudIdFromAddress (address) {
return new Promise((resolve, reject) => {
ar.arql({
op: 'and',
expr1: {
op: 'equals',
expr1: 'from',
expr2: address
},
expr2: {
op: 'and',
expr1: {
op: 'equals',
expr1: 'App-Name',
expr2: APP_NAME
},
expr2: {
op: 'equals',
expr1: 'Type',
expr2: 'profile-soundcloudid'
}
}
}).then(async ids => {
if (ids.length === 0) {
resolve(false)
return
}
ar.transactions.getData(ids[0], { decode: true, string: true }).then(data => {
resolve(data)
})
})
})
},
/**
* 获取与提供的类型标签最相似的用户类型(一种类型符合目标的一级类型)。