Commit 5053f7cd authored by Sven Franck's avatar Sven Franck

jslint pass putAttachmentCommand.js

parent 7aa49403
var putAttachmentCommand = function(spec, my) { /*jslint indent: 2, maxlen: 80, sloppy: true */
/*global command: true */
var putAttachmentCommand = function (spec, my) {
var that = command(spec, my); var that = command(spec, my);
spec = spec || {}; spec = spec || {};
my = my || {}; my = my || {};
// Attributes // // Attributes //
// Methods // // Methods //
that.getLabel = function () { that.getLabel = function () {
return 'putAttachment'; return 'putAttachment';
}; };
that.executeOn = function (storage) { that.executeOn = function (storage) {
storage.putAttachment (that); storage.putAttachment(that);
}; };
that.validateState = function () { that.validateState = function () {
if (!(typeof that.getDocId() === "string" && that.getDocId() !== "")) { if (!(typeof that.getDocId() === "string" && that.getDocId() !==
that.error({ "")) {
"status": 20, that.error({
"statusText": "Document Id Required", "status": 20,
"error": "document_id_required", "statusText": "Document Id Required",
"message": "The document id is not provided", "error": "document_id_required",
"reason": "Document id is undefined" "message": "The document id is not provided",
}); "reason": "Document id is undefined"
return false; });
} return false;
if (typeof that.getAttachmentId() !== "string") { }
that.error({ if (typeof that.getAttachmentId() !== "string") {
"status": 22, that.error({
"statusText": "Attachment Id Required", "status": 22,
"error": "attachment_id_required", "statusText": "Attachment Id Required",
"message": "The attachment id must be set", "error": "attachment_id_required",
"reason": "Attachment id not set" "message": "The attachment id must be set",
}); "reason": "Attachment id not set"
return false; });
} return false;
if (that.getAttachmentId() === "") { }
that.error({ if (that.getAttachmentId() === "") {
"status": 23, that.error({
"statusText": "Invalid Attachment Id", "status": 23,
"error": "invalid_attachment_id", "statusText": "Invalid Attachment Id",
"message": "The attachment id must not be an empty string", "error": "invalid_attachment_id",
"reason": "Attachment id is empty" "message": "The attachment id must not be an empty string",
}); "reason": "Attachment id is empty"
} });
return true; }
return true;
}; };
return that; return that;
}; };
\ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment