2011-08-24 22:16:44 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ownCloud - bookmarks plugin
|
|
|
|
*
|
|
|
|
* @author Arthur Schiwon
|
|
|
|
* @copyright 2011 Arthur Schiwon blizzz@arthur-schiwon.de
|
2012-06-20 20:03:25 +02:00
|
|
|
*
|
2011-08-24 22:16:44 +02:00
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
|
2012-06-20 20:03:25 +02:00
|
|
|
* License as published by the Free Software Foundation; either
|
2011-08-24 22:16:44 +02:00
|
|
|
* version 3 of the License, or any later version.
|
2012-06-20 20:03:25 +02:00
|
|
|
*
|
2011-08-24 22:16:44 +02:00
|
|
|
* 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.
|
2012-06-20 20:03:25 +02:00
|
|
|
*
|
2014-05-21 22:31:33 +02:00
|
|
|
* You should have received a copy of the GNU Affero General Public
|
2011-08-24 22:16:44 +02:00
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
2012-06-20 20:03:25 +02:00
|
|
|
*
|
2011-08-24 22:16:44 +02:00
|
|
|
*/
|
|
|
|
|
2012-04-17 19:31:29 +02:00
|
|
|
|
2011-08-24 22:16:44 +02:00
|
|
|
|
|
|
|
// Check if we are a user
|
2012-05-01 22:59:38 +02:00
|
|
|
OCP\User::checkLoggedIn();
|
2012-05-02 19:08:37 +02:00
|
|
|
OCP\App::checkAppEnabled('bookmarks');
|
2011-08-24 22:16:44 +02:00
|
|
|
|
2012-06-29 14:12:29 +02:00
|
|
|
// Prep screen if we come from the bookmarklet
|
|
|
|
$url ='';
|
2012-10-10 21:29:08 +02:00
|
|
|
if(isset($_GET['url'])) {
|
|
|
|
$url = $_GET['url'];
|
2012-06-29 14:12:29 +02:00
|
|
|
}
|
2012-06-27 10:15:20 +02:00
|
|
|
if(!isset($_GET['title']) || trim($_GET['title']) == '') {
|
2012-12-18 22:31:11 +01:00
|
|
|
$datas = OC_Bookmarks_Bookmarks::getURLMetadata($url);
|
2012-06-27 10:15:20 +02:00
|
|
|
$title = isset($datas['title']) ? $datas['title'] : '';
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
$title = $_GET['title'];
|
|
|
|
}
|
2012-06-27 00:09:55 +02:00
|
|
|
|
2012-06-29 14:12:29 +02:00
|
|
|
|
2012-10-10 21:17:40 +02:00
|
|
|
OCP\Util::addscript('bookmarks/3rdparty', 'tag-it');
|
2012-10-10 21:05:34 +02:00
|
|
|
OCP\Util::addscript('bookmarks', 'addBm');
|
2012-06-29 14:12:29 +02:00
|
|
|
OCP\Util::addStyle('bookmarks', 'bookmarks');
|
2012-10-10 21:17:40 +02:00
|
|
|
OCP\Util::addStyle('bookmarks/3rdparty', 'jquery.tagit');
|
2012-06-29 14:12:29 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
2012-06-27 10:15:20 +02:00
|
|
|
$bm = array('title'=> $title,
|
2012-06-29 11:33:13 +02:00
|
|
|
'url'=> $url,
|
2012-06-27 00:09:55 +02:00
|
|
|
'tags'=> array(),
|
|
|
|
'desc'=>'',
|
2012-06-27 11:20:51 +02:00
|
|
|
'is_public'=>0,
|
2012-06-26 17:43:03 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
//Find All Tags
|
2012-11-08 22:39:39 +01:00
|
|
|
$qtags = OC_Bookmarks_Bookmarks::findTags(array(), 0, 400);
|
2012-06-26 17:43:03 +02:00
|
|
|
$tags = array();
|
|
|
|
foreach($qtags as $tag) {
|
|
|
|
$tags[] = $tag['tag'];
|
|
|
|
}
|
|
|
|
|
2012-09-01 11:06:36 +02:00
|
|
|
$tmpl = new OCP\Template( 'bookmarks', 'addBm', 'base' );
|
2012-08-07 22:22:52 +02:00
|
|
|
$tmpl->assign('requesttoken', OC_Util::callRegister());
|
2012-06-26 17:43:03 +02:00
|
|
|
$tmpl->assign('bookmark', $bm);
|
2013-02-28 19:14:53 +01:00
|
|
|
$tmpl->assign('tags', json_encode($tags));
|
2012-06-26 17:43:03 +02:00
|
|
|
$tmpl->printPage();
|