parent
c4d1ad1b7d
commit
6b058cd359
@ -0,0 +1,17 @@ |
||||
<?php |
||||
|
||||
OCP\JSON::checkAppEnabled('files_encryption'); |
||||
OCP\JSON::checkLoggedIn(); |
||||
OCP\JSON::callCheck(); |
||||
|
||||
$mode = $_POST['mode']; |
||||
|
||||
$query = \OC_DB::prepare( "SELECT mode FROM *PREFIX*encryption WHERE uid = ?" ); |
||||
$result = $query->execute(array(\OCP\User::getUser())); |
||||
|
||||
if ($row = $result->fetchRow()){ |
||||
$query = OC_DB::prepare( 'UPDATE *PREFIX*encryption SET mode = ? WHERE uid = ?' ); |
||||
} else { |
||||
$query = OC_DB::prepare( 'INSERT INTO *PREFIX*encryption ( mode, uid ) VALUES( ?, ? )' ); |
||||
} |
||||
$query->execute(array($mode, \OCP\User::getUser())); |
@ -0,0 +1,24 @@ |
||||
<?xml version="1.0" encoding="ISO-8859-1" ?> |
||||
<database> |
||||
<name>*dbname*</name> |
||||
<create>true</create> |
||||
<overwrite>false</overwrite> |
||||
<charset>utf8</charset> |
||||
<table> |
||||
<name>*dbprefix*encryption</name> |
||||
<declaration> |
||||
<field> |
||||
<name>uid</name> |
||||
<type>text</type> |
||||
<notnull>true</notnull> |
||||
<length>64</length> |
||||
</field> |
||||
<field> |
||||
<name>mode</name> |
||||
<type>text</type> |
||||
<notnull>true</notnull> |
||||
<length>64</length> |
||||
</field> |
||||
</declaration> |
||||
</table> |
||||
</database> |
@ -1 +1 @@ |
||||
0.2 |
||||
0.2.1 |
@ -0,0 +1,22 @@ |
||||
/** |
||||
* Copyright (c) 2012, Bjoern Schiessle <schiessle@owncloud.com> |
||||
* This file is licensed under the Affero General Public License version 3 or later. |
||||
* See the COPYING-README file. |
||||
*/ |
||||
|
||||
$(document).ready(function(){ |
||||
console.log("loaded!"); |
||||
$('input[name=encryption_mode]').change(function(){ |
||||
console.log("HERE!!!!!!!!!!!"); |
||||
var client=$('input[value="client"]:checked').val() |
||||
,server=$('input[value="server"]:checked').val() |
||||
,user=$('input[value="user"]:checked').val() |
||||
,none=$('input[value="none"]:checked').val() |
||||
if (client) |
||||
$.post(OC.filePath('files_encryption', 'ajax', 'changemode.php'), { mode: 'client' }); |
||||
else if (server) |
||||
$.post(OC.filePath('files_encryption', 'ajax', 'changemode.php'), { mode: 'server' }); |
||||
else |
||||
$.post(OC.filePath('files_encryption', 'ajax', 'changemode.php'), { mode: 'none' }); |
||||
}) |
||||
}) |
@ -0,0 +1,25 @@ |
||||
<?php |
||||
|
||||
$sysEncMode = \OC_Appconfig::getValue('files_encryption', 'mode', 'none'); |
||||
|
||||
if ($sysEncMode == 'user') { |
||||
|
||||
$tmpl = new OCP\Template( 'files_encryption', 'settings-personal'); |
||||
|
||||
$query = \OC_DB::prepare( "SELECT mode FROM *PREFIX*encryption WHERE uid = ?" ); |
||||
$result = $query->execute(array(\OCP\User::getUser())); |
||||
|
||||
if ($row = $result->fetchRow()){ |
||||
$mode = $row['mode']; |
||||
} else { |
||||
$mode = 'none'; |
||||
} |
||||
|
||||
OCP\Util::addscript('files_encryption','settings-personal'); |
||||
$tmpl->assign('encryption_mode', $mode); |
||||
return $tmpl->fetchPage(); |
||||
} |
||||
|
||||
return null; |
||||
|
||||
?> |
@ -0,0 +1,14 @@ |
||||
|
||||
<form id="encryption"> |
||||
<fieldset class="personalblock"> |
||||
|
||||
<strong>Choose encryption mode:</strong> |
||||
|
||||
<p> |
||||
<input type="radio" name="encryption_mode" value="client" style="width:20px;" <?php if ($_['encryption_mode'] == 'client') echo "checked='checked'"?>/> Client side encryption (most secure but makes it impossible to access your data from the web interface)<br />
|
||||
<input type="radio" name="encryption_mode" value="server" style="width:20px;" <?php if ($_['encryption_mode'] == 'server') echo "checked='checked'"?> /> Server side encryption (allows you to access your files from the web interface and the desktop client)<br />
|
||||
<input type="radio" name="encryption_mode" value="none" style="width:20px;" <?php if ($_['encryption_mode'] == 'none') echo "checked='checked'"?>/> None (no encryption at all)<br/>
|
||||
</p> |
||||
</fieldset> |
||||
</form> |
||||
|
Loading…
Reference in new issue