You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

commands.js 1.6KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. /**
  2. * Created by robin on 11/21/15.
  3. */
  4. (function () {
  5. 'use strict';
  6. angular.module('camotionSdk')
  7. .factory('CommandsService', ['luticateRequest', function (luticateRequest) {
  8. var CommandsService = {};
  9. CommandsService.add = function(data, promise)
  10. {
  11. return luticateRequest.post("/api/commands/add", {command: JSON.stringify(data)}, null, promise);
  12. };
  13. CommandsService.getAll = function(data, promise)
  14. {
  15. return luticateRequest.get("/api/commands", data, promise);
  16. };
  17. CommandsService.getAllTypes = function(promise)
  18. {
  19. return luticateRequest.get("/api/commands/types", null, promise);
  20. };
  21. CommandsService.get = function(data, promise)
  22. {
  23. return luticateRequest.get("/api/commands/" + data.command_id , null, promise);
  24. };
  25. CommandsService.edit = function(data, promise)
  26. {
  27. return luticateRequest.post("/api/commands/" + data.command_id + "/edit", {command: JSON.stringify(data)}, null, promise);
  28. };
  29. CommandsService.del = function(data, promise)
  30. {
  31. return luticateRequest.post("/api/commands/" + data.command_id + "/del", null, null, promise);
  32. };
  33. CommandsService.exec = function(data, promise)
  34. {
  35. return luticateRequest.post("/api/commands/" + data.command_id + "/exec", null, null, promise);
  36. };
  37. return CommandsService;
  38. }]);
  39. })();