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.4KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. return CommandsService;
  34. }]);
  35. })();