Skip to content
Snippets Groups Projects
ocsclient.php 5.82 KiB
Newer Older
  • Learn to ignore specific revisions
  • <?php
    /**
     * ownCloud
     *
     * @author Frank Karlitschek
     * @author Jakob Sack
    
    Frank Karlitschek's avatar
    Frank Karlitschek committed
     * @copyright 2012 Frank Karlitschek frank@owncloud.org
    
     *
     * 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.
     *
     * This library is distributed in the hope that it will be useful,
     * 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.
     *
     * 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/>.
     *
     */
    
    /**
     * This class provides an easy way for apps to store config values in the
     * database.
     */
    
    
    Jakob Sack's avatar
    Jakob Sack committed
    class OC_OCSClient{
    
    Bart Visscher's avatar
    Bart Visscher committed
    	 * @brief Get the url of the OCS AppStore server.
    
    	 * 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
    
    	private static function getAppStoreURL() {
    
    		$url = OC_Config::getValue('appstoreurl', 'http://api.apps.owncloud.com/v1');
    
    	/**
    	 * @brief Get the content of an OCS url call.
    	 * @returns string of the response
    	 * This function calls an OCS server and returns the response. It also sets a sane timeout
    	*/
    	private static function getOCSresponse($url) {
    
    		$data = \OC_Util::getUrlContent($url);
    
    Bart Visscher's avatar
    Bart Visscher committed
    	/**
    
    	 * @brief Get all the categories from the OCS server
    	 * @returns array with category ids
    
    	 * @note returns NULL if config value appstoreenabled is set to false
    
    	 * This function returns a list of all the application categories on the OCS server
    	 */
    
    	public static function getCategories() {
    		if(OC_Config::getValue('appstoreenabled', true)==false) {
    
    Felix Moeller's avatar
    Felix Moeller committed
    			return null;
    
    		$url=OC_OCSClient::getAppStoreURL().'/content/categories';
    
    		if($xml==false) {
    
    Felix Moeller's avatar
    Felix Moeller committed
    			return null;
    
    		$data=simplexml_load_string($xml);
    
    		$tmp=$data->data;
    
    Frank Karlitschek's avatar
    Frank Karlitschek committed
    		$cats=array();
    
    Robin Appelman's avatar
    Robin Appelman committed
    		foreach($tmp->category as $value) {
    
    
    			$id= (int) $value->id;
    			$name= (string) $value->name;
    			$cats[$id]=$name;
    
    
    	}
    
    	/**
    	 * @brief Get all the applications from the OCS server
    	 * @returns array with application data
    	 *
    	 * This function returns a list of all the applications on the OCS server
    	 */
    
    Felix Moeller's avatar
    Felix Moeller committed
    	public static function getApplications($categories, $page, $filter) {
    
    		if(OC_Config::getValue('appstoreenabled', true)==false) {
    
    		if(is_array($categories)) {
    
    Felix Moeller's avatar
    Felix Moeller committed
    			$categoriesstring=implode('x', $categories);
    
    Frank Karlitschek's avatar
    Frank Karlitschek committed
    		}else{
    			$categoriesstring=$categories;
    		}
    
    Felix Moeller's avatar
    Felix Moeller committed
    		$version='&version='.implode('x', \OC_Util::getVersion());
    
    		$url=OC_OCSClient::getAppStoreURL().'/content/data?categories='.urlencode($categoriesstring)
    			.'&sortmode=new&page='.urlencode($page).'&pagesize=100'.$filterurl.$version;
    
    		if($xml==false) {
    			return null;
    
    		$data=simplexml_load_string($xml);
    
    		$tmp=$data->data->content;
    		for($i = 0; $i < count($tmp); $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['changed']=strtotime($tmp[$i]->changed);
    
    			$app['description']=(string)$tmp[$i]->description;
    
    	/**
    	 * @brief Get an the applications from the OCS server
    	 * @returns array with application data
    	 *
    	 * This function returns an  applications from the OCS server
    	 */
    
    	public static function getApplication($id) {
    		if(OC_Config::getValue('appstoreenabled', true)==false) {
    
    Felix Moeller's avatar
    Felix Moeller committed
    			return null;
    
    		$url=OC_OCSClient::getAppStoreURL().'/content/data/'.urlencode($id);
    
    Felix Moeller's avatar
    Felix Moeller committed
    		if($xml==false) {
    
    			OC_Log::write('core', 'Unable to parse OCS content', OC_Log::FATAL);
    
    Felix Moeller's avatar
    Felix Moeller committed
    			return null;
    
    		}
    		$data=simplexml_load_string($xml);
    
    		$tmp=$data->data->content;
    		$app=array();
    		$app['id']=$tmp->id;
    		$app['name']=$tmp->name;
    
    		$app['version']=$tmp->version;
    
    		$app['type']=$tmp->typeid;
    
    		$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;
    
    	/**
    		* @brief Get the download url for an application from the OCS server
    		* @returns array with application data
    		*
    		* This function returns an download url for an applications from the OCS server
    		*/
    
    Felix Moeller's avatar
    Felix Moeller committed
    	public static function getApplicationDownload($id, $item) {
    
    		if(OC_Config::getValue('appstoreenabled', true)==false) {
    
    Felix Moeller's avatar
    Felix Moeller committed
    			return null;
    
    		}
    		$url=OC_OCSClient::getAppStoreURL().'/content/download/'.urlencode($id).'/'.urlencode($item);
    
    Felix Moeller's avatar
    Felix Moeller committed
    		if($xml==false) {
    
    			OC_Log::write('core', 'Unable to parse OCS content', OC_Log::FATAL);
    
    Felix Moeller's avatar
    Felix Moeller committed
    			return null;
    
    		}
    		$data=simplexml_load_string($xml);
    
    		$tmp=$data->data->content;
    		$app=array();
    
    Bart Visscher's avatar
    Bart Visscher committed
    		if(isset($tmp->downloadlink)) {
    
    			$app['downloadlink']=$tmp->downloadlink;
    
    Bart Visscher's avatar
    Bart Visscher committed
    			$app['downloadlink']='';