2012-11-17 16:29:06 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
import json
|
|
|
|
from urllib import urlopen, urlretrieve
|
2013-02-10 21:04:15 +01:00
|
|
|
from yunohost import YunoHostError, YunoHostLDAP, win_msg
|
2012-11-17 16:29:06 +01:00
|
|
|
|
2012-11-29 14:48:58 +01:00
|
|
|
def app_updatelist(url=None):
|
2012-11-17 16:29:06 +01:00
|
|
|
"""
|
|
|
|
Fetch application list
|
|
|
|
|
|
|
|
Keyword arguments:
|
2012-11-29 14:48:58 +01:00
|
|
|
url -- Custom list URL
|
2012-11-17 16:29:06 +01:00
|
|
|
|
|
|
|
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)
|
|
|
|
|
2013-02-10 21:04:15 +01:00
|
|
|
if not url: url = 'http://fapp.yunohost.org/app/list/raw'
|
2012-11-17 16:29:06 +01:00
|
|
|
|
|
|
|
# Get list
|
2013-02-10 21:04:15 +01:00
|
|
|
try: fetch = urlopen(url)
|
|
|
|
except IOError: fetch = False
|
2012-11-17 16:29:06 +01:00
|
|
|
finally:
|
2013-02-10 21:04:15 +01:00
|
|
|
if fetch and (fetch.code == 200): urlretrieve(url, app_path + 'list.json')
|
2012-11-17 16:29:06 +01:00
|
|
|
else: raise YunoHostError(1, _("List server connection failed"))
|
|
|
|
|
2013-02-10 21:04:15 +01:00
|
|
|
win_msg(_("List updated successfully"))
|
2012-11-17 16:29:06 +01:00
|
|
|
|
|
|
|
|
2013-02-10 22:34:14 +01:00
|
|
|
def app_list(offset=None, limit=None):
|
|
|
|
"""
|
|
|
|
List available applications
|
|
|
|
|
|
|
|
Keyword arguments:
|
|
|
|
offset -- App to begin with
|
|
|
|
limit -- Number of apps to list
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
Dict of apps
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
# TODO: List installed applications
|
|
|
|
# TODO: Implement fields to fetch
|
|
|
|
|
|
|
|
if offset: offset = int(offset)
|
|
|
|
else: offset = 0
|
|
|
|
if limit: limit = int(limit)
|
|
|
|
else: limit = 1000
|
2013-02-10 21:04:15 +01:00
|
|
|
with open('/var/cache/yunohost/apps/list.json') as json_list:
|
|
|
|
app_dict = json.loads(str(json_list.read()))
|
|
|
|
|
|
|
|
list_dict = {}
|
|
|
|
|
2013-02-10 22:34:14 +01:00
|
|
|
if len(app_dict) > (0 + offset) and limit > 0:
|
|
|
|
i = 0 + offset
|
|
|
|
sorted_app_dict = {}
|
|
|
|
for sorted_keys in sorted(app_dict.keys())[i:]:
|
|
|
|
if i <= limit:
|
|
|
|
sorted_app_dict[sorted_keys] = app_dict[sorted_keys]
|
|
|
|
i += 1
|
|
|
|
for app_id, app_info in sorted_app_dict.items():
|
|
|
|
list_dict[app_id] = {
|
|
|
|
'Name': app_info['manifest']['name'],
|
|
|
|
'Version': app_info['manifest']['version'],
|
|
|
|
'Description': app_info['manifest']['description']
|
|
|
|
}
|
2013-02-10 21:04:15 +01:00
|
|
|
|
|
|
|
return list_dict
|