]> source.dussan.org Git - nextcloud-server.git/commitdiff
work in new app management
authorRobin Appelman <icewind1991@gmail.com>
Wed, 10 Aug 2011 10:20:43 +0000 (12:20 +0200)
committerRobin Appelman <icewind1991@gmail.com>
Wed, 10 Aug 2011 12:03:54 +0000 (14:03 +0200)
admin/apps.php
admin/css/apps.css
admin/js/apps.js
admin/templates/app.php [deleted file]
admin/templates/app_noconn.php [deleted file]
admin/templates/apps.php
admin/templates/appsinst.php [deleted file]
apps/files_textviewer/appinfo/info.xml
core/css/styles.css
lib/app.php
lib/base.php

index de11dccc3d56989e266040af6d32636d9bf5c3ae..83a48b65245ecbed45b3af6446a21d6723a901eb 100644 (file)
@@ -31,76 +31,21 @@ if( !OC_User::isLoggedIn() || !OC_Group::inGroup( OC_User::getUser(), 'admin' ))
 OC_Util::addStyle( "admin", "apps" );
 OC_Util::addScript( "admin", "apps" );
 
+$registeredApps=OC_App::getAllApps();
+$apps=array();
+foreach($registeredApps as $app){
+       $info=OC_App::getAppInfo($app);
+       $active=(OC_Appconfig::getValue($app,'enabled','no')=='yes')?true:false;
+       $info['active']=$active;
+       $apps[]=$info;
+}
 
-if(isset($_GET['id']))  $id=$_GET['id']; else $id=0;
-if(isset($_GET['cat'])) $cat=$_GET['cat']; else $cat=0;
-if(isset($_GET['installed'])) $installed=true; else $installed=false;
-
-if($installed){
-       global $SERVERROOT;
-       OC_Installer::installShippedApps(false);
-       $apps = OC_Appconfig::getApps();
-       $records = array();
-
-       OC_App::setActiveNavigationEntry( "core_apps" );
-       foreach($apps as $app){
-               $info=OC_App::getAppInfo("$SERVERROOT/apps/$app/appinfo/info.xml");
-               $record = array( 'id' => $app,
-                                'name' => $info['name'],
-                                'version' => $info['version'],
-                                'author' => $info['author'],
-                                'enabled' => OC_App::isEnabled( $app ));
-               $records[]=$record;
-       }
-
-       $tmpl = new OC_Template( "admin", "appsinst", "user" );
-       $tmpl->assign( "apps", $records );
-       $tmpl->printPage();
-       unset($tmpl);
-       exit();
-}else{
-       $categories=OC_OCSClient::getCategories();
-       if($categories==NULL){
-               OC_App::setActiveNavigationEntry( "core_apps" );
-
-               $tmpl = new OC_Template( "admin", "app_noconn", "user" );
-               $tmpl->printPage();
-               unset($tmpl);
-               exit();
-       }
-
-
-       if($id==0) {
-               OC_App::setActiveNavigationEntry( "core_apps_get" );
-
-               if($cat==0){
-                       $numcats=array();
-                       foreach($categories as $key=>$value) $numcats[]=$key;
-                       $apps=OC_OCSClient::getApplications($numcats);
-               }else{
-                       $apps=OC_OCSClient::getApplications($cat);
-               }
-
-               // return template
-               $tmpl = new OC_Template( "admin", "apps", "user" );
-
-               $tmpl->assign( "categories", $categories );
-               $tmpl->assign( "apps", $apps );
-               $tmpl->printPage();
-               unset($tmpl);
-
-       }else{
-               OC_App::setActiveNavigationEntry( "core_apps" );
-
-               $app=OC_OCSClient::getApplication($id);
+$categories=OC_OCSClient::getCategories();
+// print_r($categories);
 
-               $tmpl = new OC_Template( "admin", "app", "user" );
-               $tmpl->assign( "categories", $categories );
-               $tmpl->assign( "app", $app );
-               $tmpl->printPage();
-               unset($tmpl);
+$tmpl = new OC_Template( "admin", "apps", "user" );
+$tmpl->assign('apps',$apps);
 
-       }
-}
+$tmpl->printPage();
 
 ?>
index 92ab64df55232c1c7f3781c807de5b0d6271adc6..6106ff3f7ec5e40aaed6118ced267ef3d876ce94 100644 (file)
@@ -1,14 +1,3 @@
-/* APPS TABLE */
-table td.date { width:5em; padding:.5em 1em; text-align:left; }
-table td.version, table td.enabled, table td.disabled { padding:.5em 1em; text-align:left; }
-.preview  { padding:3px; text-align:left; }
-table td.date { width:11em; color:#555; }
-table td.selection, table th.selection, table td.fileaction { width:2em; text-align:left; }
-table td.name a { padding:6px; text-decoration:none; color:#555; }
-.type  { text-decoration:none; color:#888; font-size:.8em; }
-.description  { text-decoration:none; color:#666; font-size:.9em; }
-
-#content ul#apps { width:40em; list-style:none; }
-#content ul#apps li { display:block; padding:.2em; clear:right; }
-#content ul#apps em { color:#555; }
-#content ul#apps input { float:right; }
+li{color:#888}
+li.active{color:#000}
+span.version{margin-left:3em;color:#ddd}
index 4def5ed5553aae28f111e8f77a788fa69efb2213..069681e1cd17558e053512c5f25c710946f7110d 100644 (file)
@@ -1,17 +1,38 @@
-$("input[x-use='appenablebutton']").live( "click", function(){
-       appid = $(this).parent().data("uid");
-
-       //alert("dsfsdfsdf");
-       if($(this).val() == "enabled"){
-               $(this).attr("value","disabled");
-               $(this).removeClass( "enabled" );
-               $(this).addClass( "disabled" );
-               $.post( "ajax/disableapp.php", 'appid='+appid);
-       }
-       else if($(this).val() == "disabled"){
-               $(this).attr("value","enabled");
-               $(this).removeClass( "disabled" );
-               $(this).addClass( "enabled" );
-               $.post( "ajax/enableapp.php", 'appid='+appid);
-       }
-});
\ No newline at end of file
+$(document).ready(function(){
+       $('#leftcontent li').each(function(index,li){
+               var app=$.parseJSON($(this).children('span').text());
+               $(li).data('app',app);
+       });
+       $('#leftcontent li').click(function(){
+               var app=$(this).data('app');
+               $('#rightcontent p').show();
+               $('#rightcontent span.name').text(app.name);
+               $('#rightcontent span.version').text(app.version);
+               $('#rightcontent p.description').text(app.description);
+               $('#rightcontent span.author').text(app.author);
+               $('#rightcontent span.licence').text(app.licence);
+               
+               $('#rightcontent input.enable').show();
+               $('#rightcontent input.enable').val((app.active)?t('admin','Disable'):t('admin','Enable'));
+               $('#rightcontent input.enable').data('appid',app.id);
+               $('#rightcontent input.enable').data('active',app.active);
+       });
+       $('#rightcontent input.enable').click(function(){
+               var app=$(this).data('appid');
+               var active=$(this).data('active');
+               if(app){
+                       if(active){
+                               $.post(OC.filePath('admin','ajax','disableapp.php'),{appid:app});
+                               $('#leftcontent li[data-id="'+app+'"]').removeClass('active');
+                       }else{
+                               $.post(OC.filePath('admin','ajax','enableapp.php'),{appid:app});
+                               $('#leftcontent li[data-id="'+app+'"]').addClass('active');
+                       }
+                       active=!active;
+                       $(this).data('active',active);
+                       $(this).val((active)?t('admin','Disable'):t('admin','Enable'));
+                       var appData=$('#leftcontent li[data-id="'+app+'"]');
+                       appData.active=active;
+               }
+       });
+});
diff --git a/admin/templates/app.php b/admin/templates/app.php
deleted file mode 100644 (file)
index 0689612..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-<?php $app=$_['app']; ?>
-<h1><?php echo $app["name"]; ?></h1>
-<?php  echo('<span class="type">'.$app['typename'].'</span>'); ?><br />
-<span class="date"><?php echo $l->l('datetime', $app["changed"]); ?></span><br />
-
-
-<table cellspacing="6" border="0" width="100%">
-       <tr>
-               <td width="1" valign="top">
-                       <?php if($app["preview1"]<>"") { echo('<img class="preview" border="0" src="'.$app["preview1"].'" /><br />'); } ?> 
-                       <?php if($app["preview2"]<>"") { echo('<img class="preview" border="0" src="'.$app["preview2"].'" /><br />'); } ?> 
-                       <?php if($app["preview3"]<>"") { echo('<img class="preview" border="0" src="'.$app["preview3"].'" /><br />'); } ?> 
-               </td>
-               <td class="description" valign="top">
-               <?php echo $app["description"]; ?>
-               <br />
-               <?php  echo('<a class="description" target="_blank" href="'.$app["detailpage"].'">'.$l->t( 'read more' ).'</a><br />');  ?>
-               </td>
-               <td width="1" valign="top"><a class="prettybutton" href=""><?php echo $l->t( 'Install' ); ?></a></td>
-       </tr>
-</table>
-
diff --git a/admin/templates/app_noconn.php b/admin/templates/app_noconn.php
deleted file mode 100644 (file)
index f22d365..0000000
+++ /dev/null
@@ -1 +0,0 @@
-<h2><?php echo $l->t( 'Cannot connect to apps repository' ); ?></h2>
index 732326f659aae231654d307b6014543796683361..a7f0a4a79ed76449860120b6b68f45a5862e1a8d 100644 (file)
@@ -1,19 +1,17 @@
-<table cellspacing="0">
-       <thead>
-               <tr>
-                       <th></th>
-                       <th><?php echo $l->t( 'Name' ); ?></th>
-                       <th><?php echo $l->t( 'Modified' ); ?></th>
-               </tr>
-       </thead>
-       <tbody>
-               <?php foreach($_["apps"] as $app): ?>
-                       <tr>
-                               <td width="1"><?php if($app["preview"] <> "") { echo('<a href="'.OC_Helper::linkTo( "admin", "apps.php" ).'?id='.$app['id'].'"><img class="preview" border="0" src="'.$app["preview"].'" /></a>'); } ?> </a></td>
-                               <td class="name"><a href="<?php echo(OC_Helper::linkTo( "admin", "apps.php" ).'?id='.$app['id']); ?>" title=""><?php echo $app["name"]; ?></a><br /><?php  echo('<span class="type">'.$app['typename'].'</span>'); ?></td>
-                               <td class="date"><?php echo $l->l('datetime', $app["changed"]); ?></td>
-                       </tr>
-               <?php endforeach; ?>
-       </tbody>
-</table>
-
+<ul id="leftcontent">
+       <?php foreach($_['apps'] as $app):?>
+               <li <?php if($app['active']) echo 'class="active"'?> data-id="<?php echo $app['id'] ?>">
+                       <?php  echo $app['name'] ?>
+                       <span class="hidden">
+                               <?php echo json_encode($app) ?>
+                       </span>
+               </li>
+       <?php endforeach;?>
+</ul>
+<div id="rightcontent">
+       <h3><span class="name"><?php echo $l->t('Select an App');?></span><span class="version"></span></h3>
+       <p class="description"></p>
+       <p class="hidden"><?php echo $l->t('By: ');?><span class="author"></span></p>
+       <p class="hidden"><?php echo $l->t('Licence: ');?><span class="licence"></span></p>
+       <input class="enable hidden" type="submit"></input>
+</div>
diff --git a/admin/templates/appsinst.php b/admin/templates/appsinst.php
deleted file mode 100644 (file)
index 035a75c..0000000
+++ /dev/null
@@ -1,7 +0,0 @@
-<ul id="apps">
-<?php foreach($_["apps"] as $app): ?>
-       <li data-uid="<?php echo($app['id']); ?>"><strong><?php echo($app['name']); ?></strong> <?php echo($app['version']); ?> <em>by <?php echo($app['author']); ?></em>
-       <input x-use="appenablebutton" type="submit" value="<?php echo $l->t( $app['enabled'] ? 'enabled' : 'disabled' ); ?>" class="appbutton <?php echo( $app['enabled'] ? 'enabled' : 'disabled' ); ?>" />
-       </li>
-<?php endforeach; ?>
-</ul>
index 112a416c3579400edec4268445ac0bc76887cf27..209b414034639a609d82b535a9cd26bf6ab3a73b 100644 (file)
@@ -4,6 +4,6 @@
        <name>Text viewer</name>
        <version>0.3</version>
        <licence>AGPL</licence>
-       <author>Icewind</author>
+       <author>Robin Appelman</author>
        <require>2</require>
 </info>
index da64adbd14e4ea5c26a61f5d26cece40710011d8..2b94dbe5e23cd708dfbac31bae39bdb172b479dd 100644 (file)
@@ -104,3 +104,4 @@ legend { padding:.2em; font-size:1.2em; }
 #quota_indicator div { background-color:#76A9EA; border-radius:10px; -webkit-border-radius:10px; -moz-border-radius:10px; }
 
 li.error { list-style:none; width:640px; margin:4em auto; padding:1em 1em 1em 4em; background-color:#fee; background-image:url('../img/task-attention.png'); background-position:0.8em 0.8em; background-repeat:no-repeat; border:1px solid #ccc; -moz-border-radius:10px; -webkit-border-radius:10px; border-radius:10px; }
+.hidden{display:none}
\ No newline at end of file
index 411c08cbe5b42db68a99599370d57c1026081920..9c7b7e75dcd55abc2baf314a9f6d39cdea872667 100644 (file)
@@ -136,7 +136,6 @@ class OC_App{
         * This function returns all data it got via register().
         */
        public static function get(){
-               // TODO: write function
                return OC_App::$apps;
        }
 
@@ -242,7 +241,7 @@ class OC_App{
                if(is_file($appid)){
                        $file=$appid;
                }else{
-                       $file='apps/'.$appid.'/appinfo/info.xml';
+                       $file=OC::$SERVERROOT.'/apps/'.$appid.'/appinfo/info.xml';
                        if(!is_file($file)){
                                return array();
                        }
@@ -332,4 +331,18 @@ class OC_App{
        public static function registerPersonal($app,$page){
                self::$personalForms[]='apps/'.$app.'/'.$page.'.php';
        }
+       
+       /**
+        * get a list of all apps in the apps folder
+        */
+       public static function getAllApps(){
+               $apps=array();
+               $dh=opendir(OC::$SERVERROOT.'/apps');
+               while($file=readdir($dh)){
+                       if(is_file(OC::$SERVERROOT.'/apps/'.$file.'/appinfo/app.php')){
+                               $apps[]=$file;
+                       }
+               }
+               return $apps;
+       }
 }
index f59e375e76364e59d2a106a4e7d5a13bc942f3c9..93b8e0b584d4a231bb7da955ef0e3dd1b3ffed33 100644 (file)
@@ -90,7 +90,8 @@ if(substr($scriptName,-1)=='/'){
 }
 $WEBROOT=substr($scriptName,0,strlen($scriptName)-strlen($SUBURI));
 
-
+OC::$SERVERROOT=$SERVERROOT;
+OC::$WEBROOT=$WEBROOT;
 
 if($WEBROOT!='' and $WEBROOT[0]!=='/'){
        $WEBROOT='/'.$WEBROOT;