Skip to content
Snippets Groups Projects
Commit efa74aa4 authored by Peter Rotich's avatar Peter Rotich
Browse files

Merge pull request #1786 from greezybacon/issue/draft-staff-id


draft: Find the draft corresponding to your user id

Reviewed-By: default avatarPeter Rotich <peter@osticket.com>
parents 3ed881d5 12922b3c
No related branches found
No related tags found
No related merge requests found
...@@ -146,7 +146,6 @@ class DraftAjaxAPI extends AjaxController { ...@@ -146,7 +146,6 @@ class DraftAjaxAPI extends AjaxController {
Http::response(403, "Valid session required"); Http::response(403, "Valid session required");
$vars = array( $vars = array(
'staff_id' => ($thisclient) ? $thisclient->getId() : 1<<31,
'namespace' => $namespace, 'namespace' => $namespace,
); );
...@@ -238,7 +237,6 @@ class DraftAjaxAPI extends AjaxController { ...@@ -238,7 +237,6 @@ class DraftAjaxAPI extends AjaxController {
Http::response(403, "Valid session required"); Http::response(403, "Valid session required");
$draft = Draft::create(array( $draft = Draft::create(array(
'staff_id' => ($thisclient) ? $thisclient->getId() : 1<<31,
'namespace' => $namespace, 'namespace' => $namespace,
)); ));
if (!$draft->save()) if (!$draft->save())
...@@ -255,7 +253,6 @@ class DraftAjaxAPI extends AjaxController { ...@@ -255,7 +253,6 @@ class DraftAjaxAPI extends AjaxController {
Http::response(403, "Login required for draft creation"); Http::response(403, "Login required for draft creation");
$vars = array( $vars = array(
'staff_id' => $thisstaff->getId(),
'namespace' => $namespace, 'namespace' => $namespace,
); );
...@@ -311,7 +308,6 @@ class DraftAjaxAPI extends AjaxController { ...@@ -311,7 +308,6 @@ class DraftAjaxAPI extends AjaxController {
Http::response(403, "Login required for image upload"); Http::response(403, "Login required for image upload");
$draft = Draft::create(array( $draft = Draft::create(array(
'staff_id' => $thisstaff->getId(),
'namespace' => $namespace 'namespace' => $namespace
)); ));
if (!$draft->save()) if (!$draft->save())
......
...@@ -36,10 +36,23 @@ class Draft extends VerySimpleModel { ...@@ -36,10 +36,23 @@ class Draft extends VerySimpleModel {
function getStaffId() { return $this->staff_id; } function getStaffId() { return $this->staff_id; }
function getNamespace() { return $this->namespace; } function getNamespace() { return $this->namespace; }
static protected function getCurrentUserId() {
global $thisstaff, $thisclient;
$user = $thisstaff ?: $thisclient;
if ($user)
return $user->getId();
return 1 << 31;
}
static function getDraftAndDataAttrs($namespace, $id=0, $original='') { static function getDraftAndDataAttrs($namespace, $id=0, $original='') {
$draft_body = null; $draft_body = null;
$attrs = array(sprintf('data-draft-namespace="%s"', Format::htmlchars($namespace))); $attrs = array(sprintf('data-draft-namespace="%s"', Format::htmlchars($namespace)));
$criteria = array('namespace'=>$namespace); $criteria = array(
'namespace' => $namespace,
'staff_id' => self::getCurrentUserId(),
);
if ($id) { if ($id) {
$attrs[] = sprintf('data-draft-object-id="%s"', Format::htmlchars($id)); $attrs[] = sprintf('data-draft-object-id="%s"', Format::htmlchars($id));
$criteria['namespace'] .= '.' . $id; $criteria['namespace'] .= '.' . $id;
...@@ -129,6 +142,7 @@ class Draft extends VerySimpleModel { ...@@ -129,6 +142,7 @@ class Draft extends VerySimpleModel {
unset($vars['attachments']); unset($vars['attachments']);
$vars['created'] = SqlFunction::NOW(); $vars['created'] = SqlFunction::NOW();
$vars['staff_id'] = self::getCurrentUserId();
$draft = parent::create($vars); $draft = parent::create($vars);
// Cloned attachments ... // Cloned attachments ...
......
...@@ -32,7 +32,6 @@ RedactorPlugins.draft = function() { ...@@ -32,7 +32,6 @@ RedactorPlugins.draft = function() {
this.opts.clipboardUploadUrl = this.opts.clipboardUploadUrl =
this.opts.imageUpload = this.opts.imageUpload =
'ajax.php/draft/'+this.opts.draftId+'/attach'; 'ajax.php/draft/'+this.opts.draftId+'/attach';
this.autosave.enable();
} }
else { else {
// Just upload the file. A draft will be created automatically // Just upload the file. A draft will be created automatically
...@@ -41,6 +40,8 @@ RedactorPlugins.draft = function() { ...@@ -41,6 +40,8 @@ RedactorPlugins.draft = function() {
this.opts.imageUpload = this.opts.autoCreateUrl + '/attach'; this.opts.imageUpload = this.opts.autoCreateUrl + '/attach';
this.opts.imageUploadCallback = this.afterUpdateDraft; this.opts.imageUploadCallback = this.afterUpdateDraft;
} }
if (autosave_url)
this.autosave.enable();
this.$draft_saved = $('<span>') this.$draft_saved = $('<span>')
.addClass("pull-right draft-saved") .addClass("pull-right draft-saved")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment