2011-06-02 04:45:35 +04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ownCloud - ajax frontend
|
|
|
|
*
|
|
|
|
* @author Robin Appelman
|
|
|
|
* @copyright 2010 Robin Appelman icewind1991@gmail.com
|
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
// Init owncloud
|
|
|
|
require_once('../../lib/base.php');
|
|
|
|
require_once( 'lib_public.php' );
|
|
|
|
|
|
|
|
|
|
|
|
// Check if we are a user
|
2011-07-29 23:36:03 +04:00
|
|
|
if( !OC_User::isLoggedIn()){
|
|
|
|
header( "Location: ".OC_Helper::linkTo( "index.php" ));
|
2011-06-02 04:45:35 +04:00
|
|
|
exit();
|
|
|
|
}
|
|
|
|
|
2011-07-29 23:36:03 +04:00
|
|
|
OC_App::setActiveNavigationEntry( "files_publiclink_administration" );
|
2011-06-02 04:45:35 +04:00
|
|
|
|
2011-07-29 23:36:03 +04:00
|
|
|
OC_Util::addScript( 'files_publiclink', 'admin' );
|
2011-06-02 04:45:35 +04:00
|
|
|
|
|
|
|
if(isset($_SERVER['HTTPS'])) {
|
2011-07-29 23:36:03 +04:00
|
|
|
$baseUrl= "https://". $_SERVER['SERVER_NAME'] . OC_Helper::linkTo('files_publiclink','get.php');
|
2011-06-02 04:45:35 +04:00
|
|
|
}else{
|
2011-07-29 23:36:03 +04:00
|
|
|
$baseUrl= "http://". $_SERVER['SERVER_NAME'] . OC_Helper::linkTo('files_publiclink','get.php');
|
2011-06-02 04:45:35 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// return template
|
2011-07-31 00:22:41 +04:00
|
|
|
$tmpl = new OC_Template( "files_publiclink", "admin", "user" );
|
2011-06-02 04:45:35 +04:00
|
|
|
$tmpl->assign( 'links', OC_PublicLink::getLinks());
|
|
|
|
$tmpl->assign('baseUrl',$baseUrl);
|
|
|
|
$tmpl->printPage();
|
|
|
|
|
|
|
|
?>
|