-
Notifications
You must be signed in to change notification settings - Fork 0
/
add-length.js
42 lines (38 loc) · 1.09 KB
/
add-length.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
javascript: (function() {
var api = new mw.Api();
api.get({
'action': 'wbgetclaims',
'format': 'json',
'entity': mw.config.get('wgTitle'),
'property': 'P25'
}).then(function(data) {
if (data['claims']['P25'] !== undefined) {
mw.notify('已存在資料');
return;
}
var minutes = prompt('長度', '24');
if (!minutes) {
mw.notify('已取消');
return;
}
api.postWithEditToken({
'action': 'wbcreateclaim',
'format': 'json',
'entity': mw.config.get('wgTitle'),
'snaktype': 'value',
'property': 'P25',
'value': JSON.stringify({
'amount': '+' + minutes,
'unit': 'https://xiplus.ddns.net/entity/Q54'
}),
}).then(function() {
mw.notify('成功新增');
location.reload();
}, function(e) {
mw.notify('未知錯誤:' + e);
});
}, function(e) {
mw.notify('未知錯誤:' + e);
});
}
)();