| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- /*! elastic.js - v1.0.0 - 2013-01-15
- * https://github.com/fullscale/elastic.js
- * Copyright (c) 2013 FullScale Labs, LLC; Licensed MIT */
- /*jshint browser:true */
- /*global angular:true */
- 'use strict';
- /*
- Angular.js service wrapping the elastic.js API. This module can simply
- be injected into your angular controllers.
- */
- angular.module('elasticjs.service', [])
- .factory('ejsResource', ['$http', function ($http) {
- return function (url) {
- var
- // use existing ejs object if it exists
- ejs = window.ejs || {},
- /* results are returned as a promise */
- promiseThen = function (httpPromise, successcb, errorcb) {
- return httpPromise.then(function (response) {
- (successcb || angular.noop)(response.data);
- return response.data;
- }, function (response) {
- (errorcb || angular.noop)(undefined);
- return undefined;
- });
- };
- // set url to empty string if it was not specified
- if (url == null) {
- url = '';
- }
- /* implement the elastic.js client interface for angular */
- ejs.client = {
- server: function (s) {
- if (s == null) {
- return url;
- }
-
- url = s;
- return this;
- },
- post: function (path, data, successcb, errorcb) {
- path = url + path;
- return promiseThen($http.post(path, data), successcb, errorcb);
- },
- get: function (path, data, successcb, errorcb) {
- path = url + path;
- return promiseThen($http.get(path, data), successcb, errorcb);
- },
- put: function (path, data, successcb, errorcb) {
- path = url + path;
- return promiseThen($http.put(path, data), successcb, errorcb);
- },
- del: function (path, data, successcb, errorcb) {
- path = url + path;
- return promiseThen($http.delee(path, data), successcb, errorcb);
- },
- head: function (path, data, successcb, errorcb) {
- path = url + path;
- return $http.head(path, data)
- .then(function (response) {
- (successcb || angular.noop)(response.headers());
- return response.headers();
- }, function (response) {
- (errorcb || angular.noop)(undefined);
- return undefined;
- });
- }
- };
-
- return ejs;
- };
- }]);
|