]> source.dussan.org Git - nextcloud-server.git/commitdiff
Move data protection check to javascript
authorVincent Chan <plus.vincchan@gmail.com>
Mon, 1 Feb 2016 17:14:10 +0000 (18:14 +0100)
committerVincent Chan <plus.vincchan@gmail.com>
Mon, 1 Feb 2016 17:57:58 +0000 (18:57 +0100)
fixes #20199

core/js/config.php
core/js/setupchecks.js
core/js/tests/specs/setupchecksSpec.js
settings/controller/checksetupcontroller.php
settings/js/admin.js
tests/settings/controller/CheckSetupControllerTest.php

index 9ea8f3864d163f6d4de6170eb469708f96708b3d..0eb059051c9798051c42570c8b2911cdb6a11b95 100644 (file)
@@ -62,9 +62,17 @@ if ($defaultExpireDateEnabled) {
 }
 $outgoingServer2serverShareEnabled = $config->getAppValue('files_sharing', 'outgoing_server2server_share_enabled', 'yes') === 'yes';
 
+$CountOfDataLocation = 0;
+
+$DataLocation = str_replace(OC::$SERVERROOT .'/', '', $config->getSystemValue('datadirectory', ''), $CountOfDataLocation);
+if($CountOfDataLocation !== 1 || !OC_User::isAdminUser(OC_User::getUser())){
+       $DataLocation = false;
+}
+
 $array = array(
        "oc_debug" => $config->getSystemValue('debug', false) ? 'true' : 'false',
        "oc_isadmin" => OC_User::isAdminUser(OC_User::getUser()) ? 'true' : 'false',
+       "oc_dataURL" => is_string($DataLocation) ? "\"".$DataLocation."\"" : 'false',
        "oc_webroot" => "\"".OC::$WEBROOT."\"",
        "oc_appswebroots" =>  str_replace('\\/', '/', json_encode($apps_paths)), // Ugly unescape slashes waiting for better solution
        "datepickerFormatDate" => json_encode($l->l('jsdate', null)),
index 2fa119334db563c0c15627c18eb64b9e3e2672db..bc49c61a5aa442f6cbbccc2322d92353a592858a 100644 (file)
@@ -15,7 +15,6 @@
                MESSAGE_TYPE_INFO:0,
                MESSAGE_TYPE_WARNING:1,
                MESSAGE_TYPE_ERROR:2,
-
                /**
                 * Check whether the WebDAV connection works.
                 *
                                                        type: OC.SetupChecks.MESSAGE_TYPE_WARNING
                                                });
                                        }
-                                       if(!data.dataDirectoryProtected) {
-                                               messages.push({
-                                                       msg: t('core', 'Your data directory and your files are probably accessible from the Internet. The .htaccess file is not working. We strongly suggest that you configure your web server in a way that the data directory is no longer accessible or you move the data directory outside the web server document root.'),
-                                                       type: OC.SetupChecks.MESSAGE_TYPE_ERROR
-                                               });
-                                       }
                                        if(!data.isMemcacheConfigured) {
                                                messages.push({
                                                        msg: t('core', 'No memory cache has been configured. To enhance your performance please configure a memcache if available. Further information can be found in our <a target="_blank" href="{docLink}">documentation</a>.', {docLink: data.memcacheDocs}),
                        return deferred.promise();
                },
 
+               checkDataProtected: function() {
+                       var deferred = $.Deferred();
+                       if(oc_dataURL === false){
+                               return deferred.resolve([]);
+                       }
+                       var afterCall = function(xhr) {
+                               var messages = [];
+                               if (xhr.status !== 403 && xhr.status !== 307 && xhr.status !== 301) {
+                                       messages.push({
+                                               msg: t('core', 'Your data directory and your files are probably accessible from the Internet. The .htaccess file is not working. We strongly suggest that you configure your web server in a way that the data directory is no longer accessible or you move the data directory outside the web server document root.'),
+                                               type: OC.SetupChecks.MESSAGE_TYPE_ERROR
+                                       });
+                               }
+                               deferred.resolve(messages);
+                       };
+
+                       $.ajax({
+                               type: 'GET',
+                               url: OC.linkTo('', oc_dataURL+'/.ocdata'),
+                               complete: afterCall
+                       });
+                       return deferred.promise();
+               },
+
                /**
                 * Runs check for some generic security headers on the server side
                 *
index fff169ec098418ebf02d3bdc4d0e27c49976f86d..59df3a58746096b439c0f7b37ef0d130678c7223 100644 (file)
@@ -96,6 +96,49 @@ describe('OC.SetupChecks tests', function() {
                });
        });
 
+       describe('checkDataProtected', function() {
+
+               oc_dataURL = "data";
+
+               it('should return an error if data directory is not protected', function(done) {
+                       var async = OC.SetupChecks.checkDataProtected();
+
+                       suite.server.requests[0].respond(200);
+
+                       async.done(function( data, s, x ){
+                               expect(data).toEqual([
+                                       {
+                                               msg: 'Your data directory and your files are probably accessible from the Internet. The .htaccess file is not working. We strongly suggest that you configure your web server in a way that the data directory is no longer accessible or you move the data directory outside the web server document root.',
+                                               type: OC.SetupChecks.MESSAGE_TYPE_ERROR
+                                       }]);
+                               done();
+                       });
+               });
+               
+               it('should not return an error if data directory is protected', function(done) {
+                       var async = OC.SetupChecks.checkDataProtected();
+
+                       suite.server.requests[0].respond(403);
+
+                       async.done(function( data, s, x ){
+                               expect(data).toEqual([]);
+                               done();
+                       });
+               });
+
+               it('should return an error if data directory is a boolean', function(done) {
+
+                       oc_dataURL = false;
+
+                       var async = OC.SetupChecks.checkDataProtected();
+
+                       async.done(function( data, s, x ){
+                               expect(data).toEqual([]);
+                               done();
+                       });
+               });
+       });
+
        describe('checkSetup', function() {
                it('should return an error if server has no internet connection', function(done) {
                        var async = OC.SetupChecks.checkSetup();
@@ -120,9 +163,6 @@ describe('OC.SetupChecks tests', function() {
                                        {
                                                msg: 'This server has no working Internet connection. This means that some of the features like mounting external storage, notifications about updates or installation of third-party apps will not work. Accessing files remotely and sending of notification emails might not work, either. We suggest to enable Internet connection for this server if you want to have all features.',
                                                type: OC.SetupChecks.MESSAGE_TYPE_WARNING
-                                       }, {
-                                               msg: 'Your data directory and your files are probably accessible from the Internet. The .htaccess file is not working. We strongly suggest that you configure your web server in a way that the data directory is no longer accessible or you move the data directory outside the web server document root.',
-                                               type: OC.SetupChecks.MESSAGE_TYPE_ERROR
                                        }, {
                                                msg: 'No memory cache has been configured. To enhance your performance please configure a memcache if available. Further information can be found in our <a target="_blank" href="https://doc.owncloud.org/server/go.php?to=admin-performance">documentation</a>.',
                                                type: OC.SetupChecks.MESSAGE_TYPE_INFO
@@ -142,7 +182,6 @@ describe('OC.SetupChecks tests', function() {
                                JSON.stringify({
                                        isUrandomAvailable: true,
                                        serverHasInternetConnection: false,
-                                       dataDirectoryProtected: false,
                                        memcacheDocs: 'https://doc.owncloud.org/server/go.php?to=admin-performance',
                                        forwardedForHeadersWorking: true,
                                        isCorrectMemcachedPHPModuleInstalled: true,
@@ -156,10 +195,6 @@ describe('OC.SetupChecks tests', function() {
                                                msg: 'This server has no working Internet connection. This means that some of the features like mounting external storage, notifications about updates or installation of third-party apps will not work. Accessing files remotely and sending of notification emails might not work, either. We suggest to enable Internet connection for this server if you want to have all features.',
                                                type: OC.SetupChecks.MESSAGE_TYPE_WARNING
                                        },
-                                       {
-                                               msg: 'Your data directory and your files are probably accessible from the Internet. The .htaccess file is not working. We strongly suggest that you configure your web server in a way that the data directory is no longer accessible or you move the data directory outside the web server document root.',
-                                               type: OC.SetupChecks.MESSAGE_TYPE_ERROR
-                                       },
                                        {
                                                msg: 'No memory cache has been configured. To enhance your performance please configure a memcache if available. Further information can be found in our <a target="_blank" href="https://doc.owncloud.org/server/go.php?to=admin-performance">documentation</a>.',
                                                type: OC.SetupChecks.MESSAGE_TYPE_INFO
@@ -179,7 +214,6 @@ describe('OC.SetupChecks tests', function() {
                                JSON.stringify({
                                        isUrandomAvailable: true,
                                        serverHasInternetConnection: false,
-                                       dataDirectoryProtected: false,
                                        isMemcacheConfigured: true,
                                        forwardedForHeadersWorking: true,
                                        isCorrectMemcachedPHPModuleInstalled: true,
@@ -192,11 +226,8 @@ describe('OC.SetupChecks tests', function() {
                                {
                                        msg: 'This server has no working Internet connection. This means that some of the features like mounting external storage, notifications about updates or installation of third-party apps will not work. Accessing files remotely and sending of notification emails might not work, either. We suggest to enable Internet connection for this server if you want to have all features.',
                                        type: OC.SetupChecks.MESSAGE_TYPE_WARNING
-                               },
-                               {
-                                       msg: 'Your data directory and your files are probably accessible from the Internet. The .htaccess file is not working. We strongly suggest that you configure your web server in a way that the data directory is no longer accessible or you move the data directory outside the web server document root.',
-                                       type: OC.SetupChecks.MESSAGE_TYPE_ERROR
-                               }]);
+                               }
+                               ]);
                                done();
                        });
                });
@@ -213,7 +244,6 @@ describe('OC.SetupChecks tests', function() {
                                        isUrandomAvailable: false,
                                        securityDocs: 'https://docs.owncloud.org/myDocs.html',
                                        serverHasInternetConnection: true,
-                                       dataDirectoryProtected: true,
                                        isMemcacheConfigured: true,
                                        forwardedForHeadersWorking: true,
                                        isCorrectMemcachedPHPModuleInstalled: true,
@@ -242,7 +272,6 @@ describe('OC.SetupChecks tests', function() {
                                        isUrandomAvailable: true,
                                        securityDocs: 'https://docs.owncloud.org/myDocs.html',
                                        serverHasInternetConnection: true,
-                                       dataDirectoryProtected: true,
                                        isMemcacheConfigured: true,
                                        forwardedForHeadersWorking: true,
                                        isCorrectMemcachedPHPModuleInstalled: false,
@@ -270,7 +299,6 @@ describe('OC.SetupChecks tests', function() {
                                JSON.stringify({
                                        isUrandomAvailable: true,
                                        serverHasInternetConnection: true,
-                                       dataDirectoryProtected: true,
                                        isMemcacheConfigured: true,
                                        forwardedForHeadersWorking: false,
                                        reverseProxyDocs: 'https://docs.owncloud.org/foo/bar.html',
@@ -296,7 +324,7 @@ describe('OC.SetupChecks tests', function() {
                                {
                                        'Content-Type': 'application/json'
                                },
-                               JSON.stringify({data: {serverHasInternetConnection: false, dataDirectoryProtected: false}})
+                               JSON.stringify({data: {serverHasInternetConnection: false}})
                        );
 
                        async.done(function( data, s, x ){
@@ -320,7 +348,6 @@ describe('OC.SetupChecks tests', function() {
                                        isUrandomAvailable: true,
                                        securityDocs: 'https://docs.owncloud.org/myDocs.html',
                                        serverHasInternetConnection: true,
-                                       dataDirectoryProtected: true,
                                        isMemcacheConfigured: true,
                                        forwardedForHeadersWorking: true,
                                        phpSupported: {eol: true, version: '5.4.0'},
@@ -484,7 +511,7 @@ describe('OC.SetupChecks tests', function() {
                        {
                                'Content-Type': 'application/json'
                        },
-                       JSON.stringify({data: {serverHasInternetConnection: false, dataDirectoryProtected: false}})
+                       JSON.stringify({data: {serverHasInternetConnection: false}})
                );
                async.done(function( data, s, x ){
                        expect(data).toEqual([{
index 7b995bf2c1b8cc22138886b629eeda76c7b3459b..26194bb11808d28fbb7c422aae08957d9718b4af 100644 (file)
@@ -329,7 +329,6 @@ Raw output
                return new DataResponse(
                        [
                                'serverHasInternetConnection' => $this->isInternetConnectionWorking(),
-                               'dataDirectoryProtected' => $this->util->isHtaccessWorking($this->config),
                                'isMemcacheConfigured' => $this->isMemcacheConfigured(),
                                'memcacheDocs' => $this->urlGenerator->linkToDocs('admin-performance'),
                                'isUrandomAvailable' => $this->isUrandomAvailable(),
index 6660bfe9b480377082929fd33e3c684433c69066..90b1de683709e8aba10023718badcffefbe46c3e 100644 (file)
@@ -171,9 +171,10 @@ $(document).ready(function(){
                OC.SetupChecks.checkWellKnownUrl('/.well-known/caldav/', oc_defaults.docPlaceholderUrl, $('#postsetupchecks').data('check-wellknown') === 'true'),
                OC.SetupChecks.checkWellKnownUrl('/.well-known/carddav/', oc_defaults.docPlaceholderUrl, $('#postsetupchecks').data('check-wellknown') === 'true'),
                OC.SetupChecks.checkSetup(),
-               OC.SetupChecks.checkGeneric()
-       ).then(function(check1, check2, check3, check4, check5) {
-               var messages = [].concat(check1, check2, check3, check4, check5);
+               OC.SetupChecks.checkGeneric(),
+               OC.SetupChecks.checkDataProtected()
+       ).then(function(check1, check2, check3, check4, check5, check6) {
+               var messages = [].concat(check1, check2, check3, check4, check5, check6);
                var $el = $('#postsetupchecks');
                $el.find('.loading').addClass('hidden');
 
index 08d4135fa124ebd5da5815139bafe1bd88425d2c..c22ddb2e1209d3ca273a8a04bf364088bce027cd 100644 (file)
@@ -326,10 +326,6 @@ class CheckSetupControllerTest extends TestCase {
                $this->clientService->expects($this->once())
                        ->method('newClient')
                        ->will($this->returnValue($client));
-
-               $this->util->expects($this->once())
-                       ->method('isHtaccessWorking')
-                       ->will($this->returnValue(true));
                $this->urlGenerator->expects($this->at(0))
                        ->method('linkToDocs')
                        ->with('admin-performance')
@@ -347,7 +343,6 @@ class CheckSetupControllerTest extends TestCase {
                $expected = new DataResponse(
                        [
                                'serverHasInternetConnection' => false,
-                               'dataDirectoryProtected' => true,
                                'isMemcacheConfigured' => true,
                                'memcacheDocs' => 'http://doc.owncloud.org/server/go.php?to=admin-performance',
                                'isUrandomAvailable' => self::invokePrivate($this->checkSetupController, 'isUrandomAvailable'),