mirror of
https://github.com/keymanapp/keyman.git
synced 2026-09-04 06:37:41 +00:00
188 lines
5.2 KiB
Python
Executable file
188 lines
5.2 KiB
Python
Executable file
#!/usr/bin/python3
|
|
|
|
import sys
|
|
import datetime
|
|
import time
|
|
import json
|
|
import logging
|
|
import requests
|
|
import requests_cache
|
|
import os
|
|
from pathlib import Path
|
|
|
|
def get_package_download_data(packageID, weekCache=False):
|
|
"""
|
|
Get package download data from keyboards download api.
|
|
|
|
Args:
|
|
packageID (str): package ID
|
|
weekCache (bool) : cache data for 1 week, default is 1 day
|
|
Returns:
|
|
dict: Keyboard data
|
|
"""
|
|
logging.info("Getting download data for package %s", packageID)
|
|
api_url = "https://downloads.keyman.com/api/keyboard/1.0/" + packageID
|
|
logging.debug("At URL %s", api_url)
|
|
home = str(Path.home())
|
|
cache_dir = keyman_cache_dir()
|
|
current_dir = os.getcwd()
|
|
if weekCache:
|
|
expire_after = datetime.timedelta(days=7)
|
|
else:
|
|
expire_after = datetime.timedelta(days=1)
|
|
os.chdir(cache_dir)
|
|
requests_cache.install_cache(cache_name='keyman_cache', backend='sqlite', expire_after=expire_after)
|
|
now = time.ctime(int(time.time()))
|
|
response = requests.get(api_url)
|
|
logging.debug("Time: {0} / Used Cache: {1}".format(now, response.from_cache))
|
|
os.chdir(current_dir)
|
|
requests_cache.core.uninstall_cache()
|
|
if response.status_code == 200:
|
|
return response.json()
|
|
else:
|
|
return None
|
|
|
|
|
|
def get_keyboard_data(keyboardID, weekCache=False):
|
|
"""
|
|
Get Keyboard or package data from web api.
|
|
|
|
Args:
|
|
keyboardID (str): Keyboard or package ID
|
|
weekCache (bool) : cache data for 1 week, default is 1 day
|
|
Returns:
|
|
dict: Keyboard data
|
|
"""
|
|
logging.info("Getting data for keyboard %s", keyboardID)
|
|
api_url = "https://api.keyman.com/keyboard/" + keyboardID
|
|
logging.debug("At URL %s", api_url)
|
|
home = str(Path.home())
|
|
cache_dir = keyman_cache_dir()
|
|
current_dir = os.getcwd()
|
|
if weekCache:
|
|
expire_after = datetime.timedelta(days=7)
|
|
else:
|
|
expire_after = datetime.timedelta(days=1)
|
|
os.chdir(cache_dir)
|
|
requests_cache.install_cache(cache_name='keyman_cache', backend='sqlite', expire_after=expire_after)
|
|
now = time.ctime(int(time.time()))
|
|
response = requests.get(api_url)
|
|
logging.debug("Time: {0} / Used Cache: {1}".format(now, response.from_cache))
|
|
os.chdir(current_dir)
|
|
requests_cache.core.uninstall_cache()
|
|
if response.status_code == 200:
|
|
return response.json()
|
|
else:
|
|
return None
|
|
|
|
def get_download_folder():
|
|
"""
|
|
Folder where downloaded files will be saved.
|
|
|
|
Returns:
|
|
str: path where downloaded files will be saved
|
|
"""
|
|
return keyman_cache_dir()
|
|
|
|
def keyman_cache_dir():
|
|
"""
|
|
User keyman cache folder
|
|
It will be created if it doesn't already exist
|
|
|
|
Returns:
|
|
str: path of user keyman cache folder
|
|
"""
|
|
home = os.path.expanduser("~")
|
|
cachebase = os.environ.get("XDG_CACHE_HOME", os.path.join(home, ".cache"))
|
|
km_cache=os.path.join(cachebase, "keyman")
|
|
if not os.path.isdir(km_cache):
|
|
os.mkdir(km_cache)
|
|
return km_cache
|
|
|
|
def user_keyman_dir():
|
|
home = os.path.expanduser("~")
|
|
datahome = os.environ.get("XDG_DATA_HOME", os.path.join(home, ".local", "share"))
|
|
return os.path.join(datahome, "keyman")
|
|
|
|
def user_keyman_font_dir():
|
|
home = os.path.expanduser("~")
|
|
datahome = os.environ.get("XDG_DATA_HOME", os.path.join(home, ".local", "share"))
|
|
return os.path.join(datahome, "fonts", "keyman")
|
|
|
|
|
|
def user_keyboard_dir(keyboardid):
|
|
return os.path.join(user_keyman_dir(), keyboardid)
|
|
|
|
|
|
def get_kmp_file(downloaddata, cache=False):
|
|
"""
|
|
Get info from keyboard data to download kmp then download it.
|
|
|
|
Args:
|
|
downloaddata (dict): Package download data
|
|
cache (bool): Whether to cache the kmp file web request
|
|
Returns:
|
|
str: path where kmp file has been downloaded
|
|
"""
|
|
if 'kmp' not in downloaddata:
|
|
logging.info("get_kmp.py: Package does not have a kmp file available")
|
|
return None
|
|
|
|
downloadfile = os.path.join(get_download_folder(), os.path.basename(downloaddata['kmp']))
|
|
return download_kmp_file(downloaddata['kmp'], downloadfile, cache)
|
|
|
|
def download_kmp_file(url, kmpfile, cache=False):
|
|
"""
|
|
Download kmp file.
|
|
|
|
Args:
|
|
url (str): URL to download the kmp file from.
|
|
kmpfile (str): Where to save the kmp file.
|
|
currently it does no checks on this location
|
|
assumes that is in users keyman cache dir
|
|
cache(bool): Whether to cache the kmp file web request for a week
|
|
Returns:
|
|
str: path where kmp file has been downloaded
|
|
"""
|
|
logging.info("Download URL: %s", url)
|
|
downloadfile = None
|
|
|
|
if cache:
|
|
cache_dir = keyman_cache_dir()
|
|
current_dir = os.getcwd()
|
|
expire_after = datetime.timedelta(days=7)
|
|
if not os.path.isdir(cache_dir):
|
|
os.makedirs(cache_dir)
|
|
os.chdir(cache_dir)
|
|
requests_cache.install_cache(cache_name='keyman_kmp_cache', backend='sqlite', expire_after=expire_after)
|
|
now = time.ctime(int(time.time()))
|
|
|
|
response = requests.get(url) #, stream=True)
|
|
|
|
if cache:
|
|
logging.debug("Time: {0} / Used Cache: {1}".format(now, response.from_cache))
|
|
os.chdir(current_dir)
|
|
requests_cache.core.uninstall_cache()
|
|
|
|
if response.status_code == 200:
|
|
with open(kmpfile, 'wb') as f:
|
|
f.write(response.content)
|
|
downloadfile = kmpfile
|
|
return downloadfile
|
|
|
|
def get_kmp(packageID):
|
|
"""
|
|
Download a kmp file given a package id.
|
|
|
|
Args:
|
|
packageID (str): package ID
|
|
Returns:
|
|
str: path where kmp file has been downloaded
|
|
"""
|
|
downloaddata = get_package_download_data(packageID)
|
|
if (downloaddata):
|
|
return get_kmp_file(downloaddata)
|
|
else:
|
|
logging.warning("get_kmp.py: Could not get download information about keyboard package.")
|
|
return None
|
|
return
|