-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathskeleton_item_pages.py
218 lines (179 loc) · 7.24 KB
/
skeleton_item_pages.py
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
#!/usr/bin/python
# -*- coding: utf-8 -*-
import urllib2
import time
import os
import sys
import wikitools
import steam
from skeleton_config import config
print('Fetching schema...')
steam.api.key.set(config['steam_api_key'])
schema = steam.items.schema('440', 'en_US')
wiki = wikitools.wiki.Wiki(config['wikiApi'])
wiki.login(config['wikiUsername'], config['wikiPassword'])
def save_current_schema_ids():
_ids = get_schema_ids()
with open('schema_state.txt', 'wb') as f:
for _id in _ids:
f.write('{0}\n'.format(_id))
def get_schema_ids():
return [item.schema_id for item in schema]
def get_current_schema_state():
_ids = []
with open('schema_state.txt', 'rb') as f:
for line in f:
try:
_ids.append(int(line.strip()))
except:
pass
return _ids
def get_new_item_ids():
previous_ids = get_current_schema_state()
current_ids = get_schema_ids()
return [_id for _id in current_ids if _id not in previous_ids]
def get_item_type(item):
slots = {'cosmetic': ['head', 'misc'],
'weapon': ['melee', 'primary', 'pda2', 'secondary', 'building', 'pda'],
'action': ['action']
}
item_slot = item.slot_name
for slot in slots:
if item_slot in slots[slot]:
return slot
def cosmetic_template():
return """{{{{ra}}}}
{{{{stub}}}}
{{{{Item infobox
| type = cosmetic
| image = {item_name}.png
| team-colors =
| used-by = {class_links}
| released = {patch_string}
| availability =
| trade = yes
| gift = yes
| paint =
| rename = yes
| numbered =
| loadout = yes
| quality = unique
| level = Level {min_level}-{max_level} {level_type}
| item-description = {item_description}
}}}}
The '''{proper_item_name}''' is a [[Cosmetic items|Cosmetic item]] for the {class_links}.
== Update history ==
'''{patch_string}'''
* The {proper_item_name} was added to the game.
{{{{HatNav}}}}
{class_navs}"""
def weapon_template():
return """{{{{ra}}}}
{{{{stub}}}}
{{{{Item infobox
| type = weapon
| image = {item_name}.png
| hide-kill-icon =
| used-by = {class_links}
| slot = {slot}
| released = {patch_string}
| availability =
| medieval =
| show-ammo =
| reload =
| trade = yes
| gift =
| rename = yes
| numbered =
| loadout = yes
| loadout-prefix = none
| level = Level {level} {level_type}
| item-description = {item_description}
}}}}
The '''{proper_item_name}''' is a [[weapon]] for the {class_links}.
== Update history ==
'''{patch_string}'''
* The {proper_item_name} was added to the game.
{{{{Allweapons Nav}}}}
{class_navs}"""
def create_page(page_title, template):
page = wikitools.page.Page(wiki, page_title)
if page.exists:
print('Skipping, page already exists')
else:
page.edit(template, summary='Creating skeleton page for new item', minor=True, bot=False, skipmd5=True, timeout=60)
def upload_backpack_image(item_name, image_url, item_type):
page = wikitools.page.Page(wiki, 'File:Backpack {0}.png'.format(item_name))
if page.exists:
print('Skipping, page already exists')
return
with open(item_name + '.png', 'wb') as tmp:
tmp.write(urllib2.urlopen(image_url).read())
backpack_image = wikitools.wikifile.File(wiki, 'File:Backpack {0}.png'.format(item_name))
backpack_image.upload(fileobj=open(item_name + '.png', 'rb'), ignorewarnings=True, comment='')
os.remove(item_name + '.png')
page_content = """== Licensing ==
{{{{ExtractTF2}}}}
[[Category:Backpack images]]
[[Category:{type} images]]"""
if item_type == 'cosmetic':
page_content = page_content.format(type='Cosmetic')
elif item_type == 'weapon':
page_content = page_content.format(type='Weapon')
elif item_type == 'action':
page_content = page_content.format(type='Tool')
backpack_page = wikitools.page.Page(wiki, 'File:Backpack {0}.png'.format(item_name))
backpack_page.edit(page_content, summary='', minor=True, bot=False, skipmd5=True, timeout=60)
def generate_pages(new_ids):
for _id in new_ids:
item = schema.__getitem__(_id)
print("Processing '{0}'".format(item.name))
if item.equipable_classes != []:
class_links = ", ".join(['[[{0}]]'.format(_class.capitalize()) for _class in item.equipable_classes])
class_navs = "\n".join(['{{{{{0} Nav}}}}'.format(_class.capitalize()) for _class in item.equipable_classes])
else:
class_links = "[[Classes|All classes]]"
class_navs = ""
item_type = get_item_type(item)
template = None
if item_type == 'cosmetic':
template = cosmetic_template().format(item_name = item.name.replace(' ', '_'),
proper_item_name = item.name,
class_links = class_links,
patch_string = time.strftime("{{Patch name|%m|%d|%Y}}", time.localtime(time.time() - (6*60*60))).replace('|0', '|'),
item_description = item.description if item.description else "",
min_level = item.min_level,
max_level = item.max_level,
level_type = item.type,
class_navs = class_navs
)
elif item_type == 'weapon':
template = weapon_template().format(item_name = item.name.replace(' ', '_'),
proper_item_name = item.name,
class_links = class_links,
patch_string = time.strftime("{{Patch name|%m|%d|%Y}}", time.localtime(time.time() - (6*60*60))).replace('|0', '|'),
slot = item.slot_name,
item_description = item.description if item.description else "",
level = item.min_level,
level_type = item.type,
class_navs = class_navs
)
elif item_type == 'action':
pass
if template:
create_page(item.name, template)
try:
upload_backpack_image(item.name, item.image, item_type)
except:
pass
# Save new current schema state
save_current_schema_ids()
if __name__ == '__main__':
print('Fetching list of new item ids...')
new_ids = get_new_item_ids()
if len(new_ids) == 0:
print('No new item ids')
sys.exit()
print('{0} new items'.format(len(new_ids)))
print('Creating pages...')
generate_pages(new_ids)