2011-04-16 16:36:32 +04:00
|
|
|
|
<?php
|
|
|
|
|
/**
|
2015-02-26 13:37:37 +03:00
|
|
|
|
* ownCloud
|
2011-04-16 16:36:32 +04:00
|
|
|
|
*
|
2015-02-26 13:37:37 +03:00
|
|
|
|
* @author Frank Karlitschek
|
|
|
|
|
* @author Jakob Sack
|
|
|
|
|
* @copyright 2012 Frank Karlitschek frank@owncloud.org
|
2011-04-16 16:36:32 +04:00
|
|
|
|
*
|
2015-02-26 13:37:37 +03: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
|
|
|
|
*
|
2015-02-26 13:37:37 +03: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
|
2015-02-26 13:37:37 +03:00
|
|
|
|
* 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
|
|
|
|
*
|
2015-02-26 13:37:37 +03: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
|
|
|
|
*
|
|
|
|
|
*/
|
2015-02-10 00:48:27 +03: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
|
|
|
|
|
2014-08-26 12:20:51 +04:00
|
|
|
|
/**
|
|
|
|
|
* Returns whether the AppStore is enabled (i.e. because the AppStore is disabled for EE)
|
2015-02-10 00:48:27 +03:00
|
|
|
|
*
|
2014-08-26 12:20:51 +04:00
|
|
|
|
* @return bool
|
|
|
|
|
*/
|
2015-02-10 00:48:27 +03:00
|
|
|
|
public static function isAppStoreEnabled() {
|
2015-02-19 01:51:18 +03:00
|
|
|
|
if (\OC::$server->getConfig()->getSystemValue('appstoreenabled', true) === false ) {
|
2014-08-26 12:20:51 +04:00
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2012-03-23 18:52:41 +04:00
|
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
|
* Get the url of the OCS AppStore server.
|
2015-02-10 00:48:27 +03:00
|
|
|
|
*
|
2014-05-11 21:05:28 +04:00
|
|
|
|
* @return string of the AppStore server
|
2012-03-23 18:52:41 +04:00
|
|
|
|
*
|
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-03-23 18:52:41 +04:00
|
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
|
private static function getAppStoreURL() {
|
2015-02-10 00:48:27 +03:00
|
|
|
|
return \OC::$server->getConfig()->getSystemValue('appstoreurl', 'https://api.owncloud.com/v1');
|
2012-10-08 17:58:50 +04:00
|
|
|
|
}
|
|
|
|
|
|
2013-01-14 23:30:28 +04:00
|
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
|
* Get all the categories from the OCS server
|
2015-02-10 00:48:27 +03:00
|
|
|
|
*
|
2014-08-01 15:42:35 +04:00
|
|
|
|
* @return array|null an array of category ids or null
|
2012-09-18 19:51:55 +04:00
|
|
|
|
* @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() {
|
2015-02-10 00:48:27 +03:00
|
|
|
|
if (!self::isAppStoreEnabled()) {
|
2012-10-23 10:01:09 +04:00
|
|
|
|
return null;
|
2012-06-22 18:06:46 +04:00
|
|
|
|
}
|
2015-02-10 00:48:27 +03:00
|
|
|
|
$url = self::getAppStoreURL() . '/content/categories';
|
|
|
|
|
$xml = \OC::$server->getHTTPHelper()->getUrlContent($url);
|
|
|
|
|
if ($xml == false) {
|
2012-10-23 10:01:09 +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);
|
2015-02-10 00:48:27 +03:00
|
|
|
|
$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
|
|
|
|
|
2015-02-10 00:48:27 +03:00
|
|
|
|
$tmp = $data->data;
|
|
|
|
|
$cats = array();
|
2011-04-17 18:04:46 +04:00
|
|
|
|
|
2015-02-10 00:48:27 +03:00
|
|
|
|
foreach ($tmp->category as $value) {
|
2011-04-17 18:04:46 +04:00
|
|
|
|
|
2015-02-10 00:48:27 +03:00
|
|
|
|
$id = (int)$value->id;
|
|
|
|
|
$name = (string)$value->name;
|
|
|
|
|
$cats[$id] = $name;
|
2011-04-17 18:04:46 +04:00
|
|
|
|
|
2011-04-16 21:42:58 +04:00
|
|
|
|
}
|
2011-04-17 18:04:46 +04:00
|
|
|
|
|
2011-04-16 21:42:58 +04:00
|
|
|
|
return $cats;
|
2011-04-16 16:36:32 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
|
* Get all the applications from the OCS server
|
2015-02-10 00:48:27 +03:00
|
|
|
|
*
|
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
|
2014-05-12 00:51:30 +04:00
|
|
|
|
* @param array|string $categories
|
2014-04-21 17:44:54 +04:00
|
|
|
|
* @param int $page
|
2014-02-06 19:30:58 +04:00
|
|
|
|
* @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) {
|
2015-02-10 00:48:27 +03:00
|
|
|
|
if (!self::isAppStoreEnabled()) {
|
|
|
|
|
return (array());
|
2012-03-23 18:52:41 +04:00
|
|
|
|
}
|
|
|
|
|
|
2015-02-10 00:48:27 +03:00
|
|
|
|
if (is_array($categories)) {
|
|
|
|
|
$categoriesString = implode('x', $categories);
|
|
|
|
|
} else {
|
|
|
|
|
$categoriesString = $categories;
|
2011-04-17 01:07:18 +04:00
|
|
|
|
}
|
2012-08-31 22:22:03 +04:00
|
|
|
|
|
2015-02-10 00:48:27 +03: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);
|
2012-10-08 14:00:29 +04:00
|
|
|
|
|
2015-02-10 00:48:27 +03:00
|
|
|
|
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
|
|
|
|
|
2014-10-24 01:27:15 +04:00
|
|
|
|
$tmp = $data->data->content;
|
|
|
|
|
$tmpCount = count($tmp);
|
2015-02-10 00:48:27 +03:00
|
|
|
|
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;
|
2015-01-09 20:31:39 +03:00
|
|
|
|
$app['downloads'] = (int)$tmp[$i]->downloads;
|
2012-08-29 10:38:33 +04:00
|
|
|
|
|
2015-02-10 00:48:27 +03:00
|
|
|
|
$apps[] = $app;
|
2012-08-29 10:38:33 +04:00
|
|
|
|
}
|
2011-04-16 21:42:58 +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
|
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
|
* Get an the applications from the OCS server
|
2015-02-10 00:48:27 +03:00
|
|
|
|
*
|
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) {
|
2015-02-10 00:48:27 +03:00
|
|
|
|
if (!self::isAppStoreEnabled()) {
|
2012-10-23 10:01:09 +04:00
|
|
|
|
return null;
|
2012-06-22 18:06:46 +04:00
|
|
|
|
}
|
2015-02-10 00:48:27 +03:00
|
|
|
|
$url = self::getAppStoreURL() . '/content/data/' . urlencode($id);
|
|
|
|
|
$xml = \OC::$server->getHTTPHelper()->getUrlContent($url);
|
2011-06-19 00:02:45 +04:00
|
|
|
|
|
2015-02-10 00:48:27 +03:00
|
|
|
|
if ($xml == false) {
|
|
|
|
|
\OC_Log::write('core', 'Unable to parse OCS content for app ' . $id, \OC_Log::FATAL);
|
2012-10-23 10:01:09 +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
|
|
|
|
|
2015-02-10 00:48:27 +03:00
|
|
|
|
$tmp = $data->data->content;
|
2014-08-01 11:54:32 +04:00
|
|
|
|
if (is_null($tmp)) {
|
2015-02-10 00:48:27 +03:00
|
|
|
|
\OC_Log::write('core', 'Invalid OCS content returned for app ' . $id, \OC_Log::FATAL);
|
2014-08-01 11:54:32 +04:00
|
|
|
|
return null;
|
|
|
|
|
}
|
2015-02-10 00:48:27 +03:00
|
|
|
|
$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;
|
|
|
|
|
}
|
|
|
|
|
|
2012-06-22 18:06:46 +04:00
|
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
|
* Get the download url for an application from the OCS server
|
2015-02-10 00:48:27 +03:00
|
|
|
|
*
|
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) {
|
2015-02-10 00:48:27 +03:00
|
|
|
|
if (!self::isAppStoreEnabled()) {
|
2012-10-23 10:01:09 +04:00
|
|
|
|
return null;
|
2012-06-22 18:06:46 +04:00
|
|
|
|
}
|
2015-02-10 00:48:27 +03:00
|
|
|
|
$url = self::getAppStoreURL() . '/content/download/' . urlencode($id) . '/' . urlencode($item);
|
|
|
|
|
$xml = \OC::$server->getHTTPHelper()->getUrlContent($url);
|
2012-10-08 14:00:29 +04:00
|
|
|
|
|
2015-02-10 00:48:27 +03:00
|
|
|
|
if ($xml == false) {
|
|
|
|
|
\OC_Log::write('core', 'Unable to parse OCS content', \OC_Log::FATAL);
|
2012-10-23 10:01:09 +04:00
|
|
|
|
return null;
|
2012-06-22 18:06:46 +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);
|
2012-06-22 18:06:46 +04:00
|
|
|
|
|
2015-02-10 00:48:27 +03:00
|
|
|
|
$tmp = $data->data->content;
|
|
|
|
|
$app = array();
|
|
|
|
|
if (isset($tmp->downloadlink)) {
|
|
|
|
|
$app['downloadlink'] = $tmp->downloadlink;
|
|
|
|
|
} else {
|
|
|
|
|
$app['downloadlink'] = '';
|
2012-01-06 22:08:35 +04:00
|
|
|
|
}
|
2012-06-22 18:06:46 +04:00
|
|
|
|
return $app;
|
|
|
|
|
}
|
2012-01-06 22:08:35 +04:00
|
|
|
|
|
2011-04-16 16:36:32 +04:00
|
|
|
|
}
|