mirror of
https://github.com/YunoHost/moulinette.git
synced 2024-09-03 20:06:31 +02:00
update_list() function
This commit is contained in:
parent
003cc1f543
commit
77d3e24ddc
1 changed files with 60 additions and 0 deletions
60
yunohost_app.py
Normal file
60
yunohost_app.py
Normal file
|
@ -0,0 +1,60 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
|
||||
import os
|
||||
import sys
|
||||
import json
|
||||
from urllib import urlopen, urlretrieve
|
||||
from yunohost import YunoHostError, YunoHostLDAP
|
||||
|
||||
def app_updatelist(args):
|
||||
"""
|
||||
Fetch application list
|
||||
|
||||
Keyword arguments:
|
||||
args['url'] -- Custom list URL
|
||||
|
||||
Returns:
|
||||
True | YunoHostError
|
||||
|
||||
"""
|
||||
app_path = '/var/cache/yunohost/apps/'
|
||||
|
||||
# Create app path if not exists
|
||||
try: os.listdir(app_path)
|
||||
except OSError: os.makedirs(app_path)
|
||||
|
||||
if args['url']: list_url = args['url']
|
||||
else: list_url = 'http://fapp.yunohost.org/app/list/raw'
|
||||
|
||||
# Get list
|
||||
try: info_fetch = urlopen(list_url)
|
||||
except IOError: info_fetch = False
|
||||
finally:
|
||||
if info_fetch and (info_fetch.code == 200): info_dict = json.loads(str(info_fetch.read()))
|
||||
else: raise YunoHostError(1, _("List server connection failed"))
|
||||
|
||||
# Fetch manifests and icons
|
||||
for appid, infos in info_dict.items():
|
||||
if appid not in os.listdir(app_path):
|
||||
os.mkdir(app_path + appid)
|
||||
if str(infos['lastUpdate']) not in os.listdir(app_path + appid):
|
||||
os.rmdir(app_path + appid)
|
||||
os.mkdir(app_path + appid)
|
||||
|
||||
try: manifest_fetch = urlopen(infos['manifest'])
|
||||
except IOError: manifest_fetch = False
|
||||
finally:
|
||||
if manifest_fetch and (manifest_fetch.code == 200): urlretrieve(infos['manifest'], app_path + appid + '/' + str(infos['lastUpdate']))
|
||||
else: raise YunoHostError(1, appid + _(" manifest download failed"))
|
||||
|
||||
try: icon_fetch = urlopen(infos['icon'])
|
||||
except IOError: icon_fetch = False
|
||||
finally:
|
||||
if icon_fetch and (icon_fetch.code == 200): urlretrieve(infos['icon'], app_path + appid + '/icon.png')
|
||||
else: raise YunoHostError(1, appid + _(" icon download failed"))
|
||||
|
||||
return True
|
||||
|
||||
|
||||
def app_list(args):
|
||||
pass
|
Loading…
Reference in a new issue