Browse Source

Create backend achievement indexing script

Frans Bergman 7 years ago
parent
commit
fef5f57ea9
5 changed files with 59 additions and 0 deletions
  1. 3 0
      server/.gitignore
  2. 4 0
      server/config/example.toml
  3. 3 0
      server/requirements.txt
  4. 21 0
      server/wac/api.py
  5. 28 0
      server/wac/sync.py

+ 3 - 0
server/.gitignore

@@ -0,0 +1,3 @@
+config/default.toml
+__pycache__
+data/*

+ 4 - 0
server/config/example.toml

@@ -0,0 +1,4 @@
+[api]
+key = "your_key_here"
+url = "https://us.api.battle.net/"
+locale = "en_US"

+ 3 - 0
server/requirements.txt

@@ -0,0 +1,3 @@
+toml==0.9.2
+requests==2.18.1
+whoosh==2.7.4

+ 21 - 0
server/wac/api.py

@@ -0,0 +1,21 @@
+#!/usr/bin/python3
+
+import toml
+import requests
+
+try:
+    config = toml.load("config/default.toml")
+except IOError as e:
+    print(
+        "No config file found. Please copy config/example.toml to "
+        "config/default.toml and add your Blizzard API key. If you "
+        "don't have one yet, you can register for one here: "
+        "https://dev.battle.net/"
+    )
+    raise e
+
+def get_json(method):
+    params = dict(config['api'])
+    params['method'] = method
+    r = requests.get("{url}{method}?locale={locale}&apiKey={key}".format(**params))
+    return r.json()

+ 28 - 0
server/wac/sync.py

@@ -0,0 +1,28 @@
+#!/usr/bin/python3
+
+import os
+
+from whoosh import index
+from whoosh.fields import TEXT, NUMERIC, ID, Schema
+
+from . import api
+
+# Init whoosh
+schema = Schema(title=TEXT(stored=True), id=NUMERIC(stored=True), icon=ID(stored=True), description=TEXT)
+if not os.path.exists("data"):
+    os.mkdir("data")
+ix = index.create_in("data", schema)
+writer = ix.writer()
+# Get achievements
+categories = api.get_json("/wow/data/character/achievements")['achievements']
+def find_achievements(categories):
+    for category in categories:
+        if 'categories' in category:
+            find_achievements(category['categories'])
+        for achievement in category['achievements']:
+            achi_data = {k: v for k, v in achievement.items() if k in ('description', 'icon', 'id', 'title')}
+            writer.add_document(**achi_data)
+
+find_achievements(categories)
+
+writer.commit()