nextcloud/lib/private/ocsclient.php

236 lines
6.8 KiB
PHP
Raw Normal View History

2011-04-16 16:36:32 +04:00
<?php
/**
* ownCloud
2011-04-16 16:36:32 +04:00
*
* @author Frank Karlitschek
* @author Jakob Sack
* @copyright 2012 Frank Karlitschek frank@owncloud.org
2011-04-16 16:36:32 +04:00
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
* License as published by the Free Software Foundation; either
* version 3 of the License, or any later version.
2011-04-16 16:36:32 +04:00
*
* This library is distributed in the hope that it will be useful,
2011-04-16 16:36:32 +04:00
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU AFFERO GENERAL PUBLIC LICENSE for more details.
2011-04-16 16:36:32 +04:00
*
* You should have received a copy of the GNU Affero General Public
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
2011-04-16 16:36:32 +04:00
*
*/
namespace OC;
/**
* This class provides an easy way for apps to store config values in the
* database.
*/
class OCSClient {
2011-04-16 16:36:32 +04:00
/**
* Returns whether the AppStore is enabled (i.e. because the AppStore is disabled for EE)
*
* @return bool
*/
public static function isAppStoreEnabled() {
2015-02-19 01:51:18 +03:00
if (\OC::$server->getConfig()->getSystemValue('appstoreenabled', true) === false ) {
return false;
}
return true;
}
/**
* Get the url of the OCS AppStore server.
*
2014-05-11 21:05:28 +04:00
* @return string of the AppStore server
*
2013-02-11 20:44:02 +04:00
* This function returns the url of the OCS AppStore server. It´s possible
* to set it in the config file or it will fallback to the default
*/
2012-09-07 17:22:01 +04:00
private static function getAppStoreURL() {
return \OC::$server->getConfig()->getSystemValue('appstoreurl', 'https://api.owncloud.com/v1');
}
2013-01-14 23:30:28 +04:00
/**
* Get all the categories from the OCS server
*
2014-08-01 15:42:35 +04:00
* @return array|null an array of category ids or null
* @note returns NULL if config value appstoreenabled is set to false
2011-04-16 16:36:32 +04:00
* This function returns a list of all the application categories on the OCS server
*/
2012-09-07 17:22:01 +04:00
public static function getCategories() {
if (!self::isAppStoreEnabled()) {
return null;
}
$url = self::getAppStoreURL() . '/content/categories';
$xml = \OC::$server->getHTTPHelper()->getUrlContent($url);
if ($xml == false) {
return null;
2011-06-19 00:02:45 +04:00
}
2014-03-10 20:49:47 +04:00
$loadEntities = libxml_disable_entity_loader(true);
$data = simplexml_load_string($xml);
2014-03-10 20:49:47 +04:00
libxml_disable_entity_loader($loadEntities);
2012-08-29 10:38:33 +04:00
$tmp = $data->data;
$cats = array();
2011-04-17 18:04:46 +04:00
foreach ($tmp->category as $value) {
2011-04-17 18:04:46 +04:00
$id = (int)$value->id;
$name = (string)$value->name;
$cats[$id] = $name;
2011-04-17 18:04:46 +04:00
}
2011-04-17 18:04:46 +04:00
return $cats;
2011-04-16 16:36:32 +04:00
}
/**
* Get all the applications from the OCS server
*
2014-08-01 15:42:35 +04:00
* @return array|null an array of application data or null
2011-04-16 16:36:32 +04:00
*
* This function returns a list of all the applications on the OCS server
* @param array|string $categories
2014-04-21 17:44:54 +04:00
* @param int $page
* @param string $filter
2011-04-16 16:36:32 +04:00
*/
2012-11-02 22:53:02 +04:00
public static function getApplications($categories, $page, $filter) {
if (!self::isAppStoreEnabled()) {
return (array());
}
if (is_array($categories)) {
$categoriesString = implode('x', $categories);
} else {
$categoriesString = $categories;
2011-04-17 01:07:18 +04:00
}
$version = '&version=' . implode('x', \OC_Util::getVersion());
$filterUrl = '&filter=' . urlencode($filter);
$url = self::getAppStoreURL() . '/content/data?categories=' . urlencode($categoriesString)
. '&sortmode=new&page=' . urlencode($page) . '&pagesize=100' . $filterUrl . $version;
$apps = array();
$xml = \OC::$server->getHTTPHelper()->getUrlContent($url);
if ($xml == false) {
2012-10-23 10:20:17 +04:00
return null;
2011-06-19 00:02:45 +04:00
}
2014-03-10 20:49:47 +04:00
$loadEntities = libxml_disable_entity_loader(true);
$data = simplexml_load_string($xml);
libxml_disable_entity_loader($loadEntities);
2011-06-19 00:02:45 +04:00
$tmp = $data->data->content;
$tmpCount = count($tmp);
for ($i = 0; $i < $tmpCount; $i++) {
$app = array();
$app['id'] = (string)$tmp[$i]->id;
$app['name'] = (string)$tmp[$i]->name;
$app['label'] = (string)$tmp[$i]->label;
$app['version'] = (string)$tmp[$i]->version;
$app['type'] = (string)$tmp[$i]->typeid;
$app['typename'] = (string)$tmp[$i]->typename;
$app['personid'] = (string)$tmp[$i]->personid;
$app['license'] = (string)$tmp[$i]->license;
$app['detailpage'] = (string)$tmp[$i]->detailpage;
$app['preview'] = (string)$tmp[$i]->smallpreviewpic1;
$app['preview-full'] = (string)$tmp[$i]->previewpic1;
$app['changed'] = strtotime($tmp[$i]->changed);
$app['description'] = (string)$tmp[$i]->description;
$app['score'] = (string)$tmp[$i]->score;
$app['downloads'] = (int)$tmp[$i]->downloads;
2012-08-29 10:38:33 +04:00
$apps[] = $app;
2012-08-29 10:38:33 +04:00
}
return $apps;
2011-04-16 16:36:32 +04:00
}
2011-04-17 01:07:18 +04:00
2011-06-19 00:02:45 +04:00
/**
* Get an the applications from the OCS server
*
2014-04-21 17:44:54 +04:00
* @param string $id
2014-08-01 15:42:35 +04:00
* @return array|null an array of application data or null
2011-06-19 00:02:45 +04:00
*
2014-08-01 15:42:35 +04:00
* This function returns an applications from the OCS server
2011-06-19 00:02:45 +04:00
*/
2012-09-07 17:22:01 +04:00
public static function getApplication($id) {
if (!self::isAppStoreEnabled()) {
return null;
}
$url = self::getAppStoreURL() . '/content/data/' . urlencode($id);
$xml = \OC::$server->getHTTPHelper()->getUrlContent($url);
2011-06-19 00:02:45 +04:00
if ($xml == false) {
\OC_Log::write('core', 'Unable to parse OCS content for app ' . $id, \OC_Log::FATAL);
return null;
2011-06-19 00:02:45 +04:00
}
2014-03-10 20:49:47 +04:00
$loadEntities = libxml_disable_entity_loader(true);
$data = simplexml_load_string($xml);
libxml_disable_entity_loader($loadEntities);
2011-06-19 00:02:45 +04:00
$tmp = $data->data->content;
2014-08-01 11:54:32 +04:00
if (is_null($tmp)) {
\OC_Log::write('core', 'Invalid OCS content returned for app ' . $id, \OC_Log::FATAL);
2014-08-01 11:54:32 +04:00
return null;
}
$app = array();
$app['id'] = $tmp->id;
$app['name'] = $tmp->name;
$app['version'] = $tmp->version;
$app['type'] = $tmp->typeid;
$app['label'] = $tmp->label;
$app['typename'] = $tmp->typename;
$app['personid'] = $tmp->personid;
$app['detailpage'] = $tmp->detailpage;
$app['preview1'] = $tmp->smallpreviewpic1;
$app['preview2'] = $tmp->smallpreviewpic2;
$app['preview3'] = $tmp->smallpreviewpic3;
$app['changed'] = strtotime($tmp->changed);
$app['description'] = $tmp->description;
$app['detailpage'] = $tmp->detailpage;
$app['score'] = $tmp->score;
2011-06-19 00:02:45 +04:00
return $app;
}
/**
* Get the download url for an application from the OCS server
*
2014-08-01 15:42:35 +04:00
* @return array|null an array of application data or null
2014-04-21 17:44:54 +04:00
*
* This function returns an download url for an applications from the OCS server
* @param string $id
* @param integer $item
*/
2012-11-02 22:53:02 +04:00
public static function getApplicationDownload($id, $item) {
if (!self::isAppStoreEnabled()) {
return null;
}
$url = self::getAppStoreURL() . '/content/download/' . urlencode($id) . '/' . urlencode($item);
$xml = \OC::$server->getHTTPHelper()->getUrlContent($url);
if ($xml == false) {
\OC_Log::write('core', 'Unable to parse OCS content', \OC_Log::FATAL);
return null;
}
2014-03-10 20:49:47 +04:00
$loadEntities = libxml_disable_entity_loader(true);
$data = simplexml_load_string($xml);
libxml_disable_entity_loader($loadEntities);
$tmp = $data->data->content;
$app = array();
if (isset($tmp->downloadlink)) {
$app['downloadlink'] = $tmp->downloadlink;
} else {
$app['downloadlink'] = '';
}
return $app;
}
2011-04-16 16:36:32 +04:00
}