@ -20,6 +20,7 @@
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
*
*/
OC_Util::checkAppEnabled('admin_export');
if (isset($_POST['admin_export'])) {
$root = OC::$SERVERROOT . "/";
$zip = new ZipArchive();
@ -91,4 +92,4 @@ function zipAddDir($dir, $zip, $recursive=true, $internalDir='') {
} else {
error_log("Was not able to open directory: " . $dir);
}
@ -25,6 +25,7 @@ require_once('../../lib/base.php');
// Check if we are a user
OC_Util::checkLoggedIn();
OC_Util::checkAppEnabled('bookmarks');
require_once('bookmarksHelper.php');
@ -28,6 +28,7 @@ require_once('../../../lib/base.php');
OC_JSON::checkLoggedIn();
OC_JSON::checkAppEnabled('bookmarks');
$CONFIG_DBTYPE = OC_Config::getValue( "dbtype", "sqlite" );
if( $CONFIG_DBTYPE == 'sqlite' or $CONFIG_DBTYPE == 'sqlite3' ){
$params=array(
htmlspecialchars_decode($_GET["url"]),
// $metadata = array();
$query = OC_DB::prepare("
UPDATE *PREFIX*bookmarks
$params=array(OC_User::getUser());
$CONFIG_DBTYPE = OC_Config::getValue( 'dbtype', 'sqlite' );
OC_App::setActiveNavigationEntry( 'bookmarks_index' );
@ -10,6 +10,7 @@ require_once ("../../../lib/base.php");
if(!OC_USER::isLoggedIn()) {
die("<script type=\"text/javascript\">document.location = oc_webroot;</script>");
OC_JSON::checkAppEnabled('calendar');
$calendarid = $_POST['calendarid'];
OC_Calendar_Calendar::setCalendarActive($calendarid, $_POST['active']);
$cal = OC_Calendar_Calendar::findCalendar($calendarid);
$currentview = $_GET["v"];
OC_Preferences::setValue(OC_USER::getUser(), "calendar", "currentview", $currentview);
?>
@ -11,6 +11,7 @@ $l10n = new OC_L10N('calendar');
$output = new OC_TEMPLATE("calendar", "part.choosecalendar");
$output -> printpage();
@ -12,6 +12,7 @@ $l10n = new OC_L10N('calendar');
$userid = OC_User::getUser();
$calendarid = OC_Calendar_Calendar::addCalendar($userid, $_POST['name'], $_POST['description'], 'VEVENT,VTODO,VJOURNAL', null, 0, $_POST['color']);
die('<script type="text/javascript">document.location = oc_webroot;</script>');
$cal = $_POST["calendarid"];
$calendar = OC_Calendar_Calendar::findCalendar($cal);
$id = $_POST['id'];
$data = OC_Calendar_Object::find($id);
$calendar = OC_Calendar_Calendar::findCalendar($_GET['calendarid']);
$tmpl = new OC_Template("calendar", "part.editcalendar");
$tmpl->assign('new', false);
@ -13,6 +13,7 @@ $l10n = new OC_L10N('calendar');
$errarr = OC_Calendar_Object::validateRequest($_POST);
if($errarr){
$calendar_options = OC_Calendar_Calendar::allCalendars(OC_User::getUser());
$category_options = OC_Calendar_Object::getCategoryOptions($l10n);
$calendars = OC_Calendar_Calendar::allCalendars(OC_User::getUser(), 1);
$events = array();
$calendar = array(
'id' => 'new',
'displayname' => 'Test',
@ -13,6 +13,7 @@ $l=new OC_L10N('calendar');
// Get data
if( isset( $_POST['timezone'] ) ){
$calendarid = $_POST['id'];
OC_Calendar_Calendar::editCalendar($calendarid, $_POST['name'], $_POST['description'], null, null, null, $_POST['color']);
@ -10,6 +10,7 @@
$RUNTIME_NOSETUPFS = true;
require_once('../../lib/base.php');
OC_Util::checkAppEnabled('calendar');
// Backends
$authBackend = new OC_Connector_Sabre_Auth();
@ -8,6 +8,7 @@
require_once ("../../lib/base.php");
$cal = $_GET["calid"];
if($calendar["userid"] != OC_User::getUser()){
require_once ('../../lib/base.php');
// Create default calendar ...
$calendars = OC_Calendar_Calendar::allCalendars(OC_User::getUser());
if( count($calendars) == 0){
@ -28,6 +28,7 @@ $l10n = new OC_L10N('contacts');
OC_JSON::checkAppEnabled('contacts');
$addressbook = OC_Contacts_Addressbook::find( $aid );
if( $addressbook === false || $addressbook['userid'] != OC_USER::getUser()){
$card = OC_Contacts_VCard::find( $id );
if( $card === false ){
@ -29,6 +29,7 @@ $l10n = new OC_L10N('contacts');
$addressbook = OC_Contacts_Addressbook::find( $id );
@ -31,6 +31,7 @@ $l10n = new OC_L10N('contacts');
@ -27,6 +27,7 @@ $l10n = new OC_L10N('contacts');
$addressbooks = OC_Contacts_Addressbook::all(OC_USER::getUser());
$tmpl = new OC_Template('contacts','part.addcardform');
@ -24,6 +24,7 @@
OC_Util::checkAppEnabled('contacts');
@ -29,6 +29,7 @@ require_once('../../lib/base.php');
// Check if the user has an addressbook
$addressbooks = OC_Contacts_Addressbook::all(OC_User::getUser());
@ -22,6 +22,7 @@
// Init owncloud
$id = $_GET['id'];
@ -2,6 +2,7 @@
$RUNTIME_NOAPPS = true;
require_once('../../../lib/base.php');
OC_JSON::checkAppEnabled('files_sharing');
require_once('../lib_share.php');
$userDirectory = "/".OC_User::getUser()."/files";
$source = "/".OC_User::getUser()."/files".$_GET['source'];
@ -9,4 +10,4 @@ $uid_shared_with = $_GET['uid_shared_with'];
$permissions = $_GET['permissions'];
OC_Share::setPermissions($source, $uid_shared_with, $permissions);
@ -26,4 +27,4 @@ foreach ($sources as $source) {
@ -2,10 +2,11 @@
$uid_shared_with = $_GET['uid_shared_with'];
OC_Share::unshare($source, $uid_shared_with);
@ -4,6 +4,7 @@ $RUNTIME_NOAPPS = true;
$users = array();
$ocusers = OC_User::getUsers();
@ -3,6 +3,7 @@ $RUNTIME_NOAPPS=true; //no need to load the apps
$RUNTIME_NOSETUPFS=true; //don't setup the fs yet
require_once '../../lib/base.php';
require_once 'lib_share.php';
//get the path of the shared file
@ -24,6 +24,7 @@ require_once('../../lib/base.php');
require_once('lib_share.php');
OC_Util::checkAppEnabled('files_sharing');
OC_App::setActiveNavigationEntry("files_sharing_list");
@ -27,6 +27,7 @@ header('Content-type: text/html; charset=UTF-8') ;
$RUNTIME_NOAPPS=true;
OC_JSON::checkAppEnabled('media');
require_once('../lib_collection.php');
require_once('../lib_scanner.php');
@ -28,6 +28,7 @@ $RUNTIME_NOAPPS=true;
$RUNTIME_NOSETUPFS=true;
if(defined("DEBUG") && DEBUG) {error_log($_GET['autoupdate']);}
$autoUpdate=(isset($_GET['autoupdate']) and $_GET['autoupdate']=='true');
@ -26,6 +26,7 @@ require_once('../../lib/base.php');
OC_Util::checkAppEnabled('media');
require_once('lib_collection.php');
require_once('lib_scanner.php');
@ -23,6 +23,7 @@
require_once('../lib_ampache.php');
$_POST=$_GET; //debug
$user=isset($_POST['user'])?$_POST['user']:'';
@ -30,6 +30,7 @@
OC_Util::checkAppEnabled('unhosted');
require_once('Sabre/autoload.php');
require_once('lib_unhosted.php');
require_once('oauth_ro_auth.php');
@ -37,6 +37,7 @@ if($USERNAME=='' and isset($_SERVER['PHP_AUTH_USER'])){
$RUNTIME_NOAPPS=false;
OC_Util::checkAppEnabled('user_openid');
if(!OC_User::userExists($USERNAME)){
if(defined("DEBUG") && DEBUG) {error_log($USERNAME.' doesn\'t exist');}
@ -19,6 +19,17 @@ class OC_JSON{
/**
* Check if the app is enabled, send json error msg if not
public static function checkAppEnabled($app){
if( !OC_App::isEnabled($app)){
$l = new OC_L10N('core');
self::error(array( 'data' => array( 'message' => $l->t('Application is not enabled') )));
exit();
* Check if the user is logged in, send json error msg if not
@ -276,6 +276,16 @@ class OC_Util {
header( 'Location: '.OC_Helper::linkTo( '', 'index.php' , true));
* Check if the user is logged in, redirects to home if not
@ -6,6 +6,7 @@ require_once('../../lib/base.php');
$l=new OC_L10N('settings');
OC_JSON::checkAppEnabled('user_openid');
if( isset( $_POST['identity'] ) ){