mirror of
https://bitbucket.org/jsuto/piler.git
synced 2024-11-07 21:31:58 +01:00
More gdpr fixes
Signed-off-by: Janos SUTO <sj@acts.hu>
This commit is contained in:
parent
874fb36d6b
commit
3550987087
@ -45,6 +45,7 @@ server {
|
||||
rewrite /message.php /index.php?route=message/view;
|
||||
rewrite /bulkrestore.php /index.php?route=message/bulkrestore;
|
||||
rewrite /bulkremove.php /index.php?route=message/bulkremove;
|
||||
rewrite /rejectremove.php /index.php?route=message/rejectremove;
|
||||
rewrite /bulkpdf.php /index.php?route=message/bulkpdf;
|
||||
rewrite /folders.php /index.php?route=folder/list&;
|
||||
rewrite /settings.php /index.php?route=user/settings;
|
||||
|
@ -9,6 +9,7 @@ RewriteRule ^audit-helper.php /index.php?route=audit/helper [L]
|
||||
RewriteRule ^message.php /index.php?route=message/view [L]
|
||||
RewriteRule ^bulkrestore.php /index.php?route=message/bulkrestore [L]
|
||||
RewriteRule ^bulkremove.php /index.php?route=message/bulkremove [L]
|
||||
RewriteRule ^rejectremove.php /index.php?route=message/rejectremove [L]
|
||||
RewriteRule ^bulkpdf.php /index.php?route=message/bulkpdf [L]
|
||||
RewriteRule ^folders.php /index.php?route=folder/list& [QSA,L]
|
||||
RewriteRule ^settings.php /index.php?route=user/settings [L]
|
||||
|
@ -75,7 +75,7 @@ class ControllerLoginLogin extends Controller {
|
||||
if(isAdminUser() == 1) {
|
||||
header("Location: " . SITE_URL . "index.php?route=health/health");
|
||||
exit;
|
||||
} else ifisAdminUser() == 4) {
|
||||
} else if(isDataOfficer() == 1) {
|
||||
header("Location: " . SITE_URL . "index.php?route=audit/removal");
|
||||
exit;
|
||||
}
|
||||
|
46
webui/controller/message/rejectremove.php
Normal file
46
webui/controller/message/rejectremove.php
Normal file
@ -0,0 +1,46 @@
|
||||
<?php
|
||||
|
||||
|
||||
class ControllerMessageRejectRemove extends Controller {
|
||||
|
||||
public function index(){
|
||||
|
||||
$this->id = "content";
|
||||
$this->template = "audit/remove.tpl";
|
||||
$this->layout = "common/layout";
|
||||
|
||||
$session = Registry::get('session');
|
||||
$request = Registry::get('request');
|
||||
$db = Registry::get('db');
|
||||
|
||||
$this->load->model('search/search');
|
||||
$this->load->model('search/message');
|
||||
$this->load->model('user/user');
|
||||
|
||||
$this->document->title = $this->data['text_message'];
|
||||
|
||||
if(!isset($this->request->post['id']) || $this->request->post['id'] == '') { die("no id parameter given"); }
|
||||
if(!isset($this->request->post['confirmed']) || $this->request->post['confirmed'] != 1) { die("not confirmed"); }
|
||||
if(!isset($this->request->post['reason2']) || $this->request->post['reason2'] == '') { die("no reason2 parameter given"); }
|
||||
|
||||
$id = (int)$this->request->post['id'];
|
||||
|
||||
if(!$this->model_search_search->check_your_permission_by_id($id)) {
|
||||
die("no permission for $id");
|
||||
}
|
||||
|
||||
$this->data['username'] = Registry::get('username');
|
||||
|
||||
if(Registry::get('data_officer') == 0) {
|
||||
die("go away");
|
||||
}
|
||||
|
||||
// Shouldn't we ask for a token or something as well?
|
||||
|
||||
$db->query("UPDATE " . TABLE_DELETED . " SET deleted=0, date2=?, reason2=? WHERE id=?", [NOW, $this->request->post['reason2'], $id]);
|
||||
syslog(LOG_INFO, $this->data['username'] . " rejected removing message: $id");
|
||||
|
||||
$this->render();
|
||||
}
|
||||
|
||||
}
|
@ -484,4 +484,6 @@ $_['text_private'] = "Private";
|
||||
$_['text_delete_reason'] = "Reason of removal";
|
||||
$_['text_need_to_approve_removal'] = "Need to approve removal";
|
||||
$_['text_deleted'] = "Deleted";
|
||||
$_['text_reason_of_rejection'] = "Reason of rejection";
|
||||
$_['text_reject'] = "Reject";
|
||||
$_['text_user_data_officer'] = "Data officer";
|
||||
|
@ -491,4 +491,6 @@ $_['text_private'] = "Privat";
|
||||
$_['text_delete_reason'] = "Reason of removal";
|
||||
$_['text_need_to_approve_removal'] = "Need to approve removal";
|
||||
$_['text_deleted'] = "Deleted";
|
||||
$_['text_reason_of_rejection'] = "Reason of rejection";
|
||||
$_['text_reject'] = "Reject";
|
||||
$_['text_user_data_officer'] = "Data officer";
|
||||
|
@ -284,6 +284,8 @@ $_['text_recipient'] = "Recipient";
|
||||
$_['text_ref'] = "Reference";
|
||||
$_['text_refresh_period'] = "Refresh period";
|
||||
$_['text_refresh_qr_code'] = "Refresh QR code";
|
||||
$_['text_reject'] = "Reject";
|
||||
$_['text_reason_of_rejection'] = "Reason of rejection";
|
||||
$_['text_relay_details'] = "Relay details";
|
||||
$_['text_relay_status'] = "Relay status";
|
||||
$_['text_remove'] = "Remove";
|
||||
|
@ -489,4 +489,6 @@ $_['text_private'] = "Private";
|
||||
$_['text_delete_reason'] = "Reason of removal";
|
||||
$_['text_need_to_approve_removal'] = "Need to approve removal";
|
||||
$_['text_deleted'] = "Deleted";
|
||||
$_['text_reason_of_rejection'] = "Reason of rejection";
|
||||
$_['text_reject'] = "Reject";
|
||||
$_['text_user_data_officer'] = "Data officer";
|
||||
|
@ -486,4 +486,6 @@ $_['text_private'] = "Private";
|
||||
$_['text_delete_reason'] = "Reason of removal";
|
||||
$_['text_need_to_approve_removal'] = "Need to approve removal";
|
||||
$_['text_deleted'] = "Deleted";
|
||||
$_['text_reason_of_rejection'] = "Reason of rejection";
|
||||
$_['text_reject'] = "Reject";
|
||||
$_['text_user_data_officer'] = "Data officer";
|
||||
|
@ -281,10 +281,12 @@ $_['text_queue_status'] = "Queue státusz";
|
||||
$_['text_quick_search'] = "Gyorskeresés";
|
||||
|
||||
$_['text_realname'] = "Név";
|
||||
$_['text_reason_of_rejection'] = "Elutasítás oka";
|
||||
$_['text_recipient'] = "Címzett";
|
||||
$_['text_ref'] = "Hivatkozás";
|
||||
$_['text_refresh_period'] = "Frissítési periódus";
|
||||
$_['text_refresh_qr_code'] = "QR kód frissítése";
|
||||
$_['text_reject'] = "Elutasítás";
|
||||
$_['text_relay_details'] = "Relay részletek";
|
||||
$_['text_relay_status'] = "Relay státusz";
|
||||
$_['text_remove'] = "Törlés";
|
||||
|
@ -486,4 +486,6 @@ $_['text_private'] = "Private";
|
||||
$_['text_delete_reason'] = "Reason of removal";
|
||||
$_['text_need_to_approve_removal'] = "Need to approve removal";
|
||||
$_['text_deleted'] = "Deleted";
|
||||
$_['text_reason_of_rejection'] = "Reason of rejection";
|
||||
$_['text_reject'] = "Reject";
|
||||
$_['text_user_data_officer'] = "Data officer";
|
||||
|
@ -479,4 +479,6 @@ $_['text_private'] = "Private";
|
||||
$_['text_delete_reason'] = "Reason of removal";
|
||||
$_['text_need_to_approve_removal'] = "Need to approve removal";
|
||||
$_['text_deleted'] = "Deleted";
|
||||
$_['text_reject'] = "Reject";
|
||||
$_['text_reason_of_rejection'] = "Reason of rejection";
|
||||
$_['text_user_data_officer'] = "Data officer";
|
||||
|
@ -475,7 +475,7 @@ $_['text_domain_delete_confirm_message'] = 'Вы хотите удалить д
|
||||
$_['text_group_delete_confirm_message'] = 'Вы хотите удалить группу';
|
||||
$_['text_ldap_delete_confirm_message'] = 'Вы хотите удалить настройки LDAP';
|
||||
$_['text_customer_delete_confirm_message'] = 'Вы хотите уделить потребителя';
|
||||
$_['text_with_selected'] = 'С выделенным';
|
||||
$_['text_with_selected'] = 'С выделенным';
|
||||
|
||||
$_['text_assigned_email_addresses'] = "Assigned email addresses";
|
||||
$_['text_storage'] = "Storage";
|
||||
@ -487,4 +487,6 @@ $_['text_private'] = "Private";
|
||||
$_['text_delete_reason'] = "Reason of removal";
|
||||
$_['text_need_to_approve_removal'] = "Need to approve removal";
|
||||
$_['text_deleted'] = "Deleted";
|
||||
$_['text_reason_of_rejection'] = "Reason of rejection";
|
||||
$_['text_reject'] = "Reject";
|
||||
$_['text_user_data_officer'] = "Data officer";
|
||||
|
@ -487,4 +487,6 @@ $_['text_private'] = "Private";
|
||||
$_['text_delete_reason'] = "Reason of removal";
|
||||
$_['text_need_to_approve_removal'] = "Need to approve removal";
|
||||
$_['text_deleted'] = "Deleted";
|
||||
$_['text_reason_of_rejection'] = "Reason of rejection";
|
||||
$_['text_reject'] = "Reject";
|
||||
$_['text_user_data_officer'] = "Data officer";
|
||||
|
@ -385,6 +385,23 @@ var Piler =
|
||||
},
|
||||
|
||||
|
||||
reject_removing_message:function(id, reason2)
|
||||
{
|
||||
Piler.log("[reject_removing_message]", id, reason2);
|
||||
|
||||
Piler.poor_mans_keepalive_for_dummy_browsers();
|
||||
|
||||
jQuery.ajax('/index.php?route=message/rejectremove', {
|
||||
data: { id: id, confirmed: 1, reason2: reason2 },
|
||||
type: "POST"
|
||||
})
|
||||
.done( function( a ) {})
|
||||
.fail(function( a, b ) { alert("Problem retrieving XML data:" + b) });
|
||||
|
||||
$('#delete-rejected-modal').modal('hide')
|
||||
},
|
||||
|
||||
|
||||
bulk_restore_messages:function(msg, email)
|
||||
{
|
||||
Piler.log("[bulk_restore_messages]", email);
|
||||
|
@ -12,19 +12,16 @@
|
||||
<meta name="robots" content="all" />
|
||||
|
||||
<link href="/view/theme/default/assets/css/metro-bootstrap.css" rel="stylesheet" />
|
||||
|
||||
|
||||
<!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
|
||||
<!-- original location: http://html5shim.googlecode.com/svn/trunk/html5.js -->
|
||||
<!--[if lt IE 9]>
|
||||
<script src="/view/theme/default/assets/js/html5.js"></script>
|
||||
<style>body{padding-top:70px;}</style>
|
||||
<![endif]-->
|
||||
|
||||
<script type="text/javascript" src="/view/javascript/jquery.min.js"></script>
|
||||
<script type="text/javascript" src="/view/javascript/jquery-ui-custom.min.js"></script>
|
||||
<script type="text/javascript" src="/view/javascript/rc-splitter.js"></script>
|
||||
<script type="text/javascript" src="/view/theme/default/assets/js/bootstrap.js"></script>
|
||||
<script type="text/javascript" src="/view/javascript/piler.js"></script>
|
||||
|
||||
<?php print JS_CODE; ?>
|
||||
|
||||
<!-- Fav and touch icons -->
|
||||
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="/view/theme/default/assets/ico/apple-touch-icon-144-precomposed.png">
|
||||
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="/view/theme/default/assets/ico/apple-touch-icon-114-precomposed.png">
|
||||
|
@ -18,7 +18,7 @@
|
||||
<!--[if lt IE 9]>
|
||||
<script src="/view/theme/default/assets/js/html5.js"></script>
|
||||
<![endif]-->
|
||||
|
||||
|
||||
<!-- Fav and touch icons -->
|
||||
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="/view/theme/default/assets/ico/apple-touch-icon-144-precomposed.png">
|
||||
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="/view/theme/default/assets/ico/apple-touch-icon-114-precomposed.png">
|
||||
|
@ -20,19 +20,15 @@
|
||||
<script src="/view/theme/default/assets/js/html5.js"></script>
|
||||
<style>body{padding-top:70px;}</style>
|
||||
<![endif]-->
|
||||
|
||||
|
||||
<!-- Fav and touch icons -->
|
||||
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="/view/theme/default/assets/ico/apple-touch-icon-144-precomposed.png">
|
||||
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="/view/theme/default/assets/ico/apple-touch-icon-114-precomposed.png">
|
||||
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="/view/theme/default/assets/ico/apple-touch-icon-72-precomposed.png">
|
||||
<link rel="apple-touch-icon-precomposed" href="/view/theme/default/assets/ico/apple-touch-icon-57-precomposed.png">
|
||||
<?php if(BRANDING_FAVICON) { ?><link rel="shortcut icon" href="<?php print BRANDING_FAVICON; ?>" /><?php } ?>
|
||||
|
||||
<script type="text/javascript" src="/view/javascript/jquery.min.js"></script>
|
||||
<script type="text/javascript" src="/view/javascript/jquery-ui-custom.min.js"></script>
|
||||
<script type="text/javascript" src="/view/javascript/rc-splitter.js"></script>
|
||||
<script type="text/javascript" src="/view/theme/default/assets/js/bootstrap.js"></script>
|
||||
<script type="text/javascript" src="/view/javascript/piler.js"></script>
|
||||
|
||||
<?php print JS_CODE; ?>
|
||||
</head>
|
||||
|
||||
<body onload="Piler.add_shortcuts();">
|
||||
|
@ -18,14 +18,12 @@
|
||||
<!--[if lt IE 9]>
|
||||
<script src="/view/theme/default/assets/js/html5.js"></script>
|
||||
<![endif]-->
|
||||
|
||||
<script type="text/javascript" src="/view/javascript/jquery.min.js"></script>
|
||||
<script type="text/javascript" src="/view/javascript/jquery-ui-custom.min.js"></script>
|
||||
|
||||
<?php print JS_CODE; ?>
|
||||
|
||||
<script type="text/javascript" src="/view/javascript/jscolor.js"></script>
|
||||
<script type="text/javascript" src="/view/javascript/fileupload.js"></script>
|
||||
<script type="text/javascript" src="/view/javascript/rc-splitter.js"></script>
|
||||
<script type="text/javascript" src="/view/theme/default/assets/js/bootstrap.js"></script>
|
||||
<script type="text/javascript" src="/view/javascript/piler.js"></script>
|
||||
|
||||
<!-- Fav and touch icons -->
|
||||
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="/view/theme/default/assets/ico/apple-touch-icon-144-precomposed.png">
|
||||
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="/view/theme/default/assets/ico/apple-touch-icon-114-precomposed.png">
|
||||
|
Loading…
Reference in New Issue
Block a user