faalis 0.7.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/LICENSE +339 -0
- data/README.md +45 -0
- data/Rakefile +42 -0
- data/app/assets/fonts/DroidNaskh-Bold.ttf +0 -0
- data/app/assets/fonts/DroidNaskh-Regular.ttf +0 -0
- data/app/assets/fonts/OpenSans-Bold.ttf +0 -0
- data/app/assets/fonts/OpenSans-BoldItalic.ttf +0 -0
- data/app/assets/fonts/OpenSans-ExtraBold.ttf +0 -0
- data/app/assets/fonts/OpenSans-ExtraBoldItalic.ttf +0 -0
- data/app/assets/fonts/OpenSans-Italic.ttf +0 -0
- data/app/assets/fonts/OpenSans-Light.ttf +0 -0
- data/app/assets/fonts/OpenSans-LightItalic.ttf +0 -0
- data/app/assets/fonts/OpenSans-Regular.ttf +0 -0
- data/app/assets/fonts/OpenSans-Semibold.ttf +0 -0
- data/app/assets/fonts/OpenSans-SemiboldItalic.ttf +0 -0
- data/app/assets/images/faalis/select2-spinner.gif +0 -0
- data/app/assets/images/faalis/select2.png +0 -0
- data/app/assets/images/faalis/select2x2.png +0 -0
- data/app/assets/javascripts/faalis/application.js +20 -0
- data/app/assets/javascripts/faalis/dashboard/angular.js +9 -0
- data/app/assets/javascripts/faalis/dashboard/app.js +75 -0
- data/app/assets/javascripts/faalis/dashboard/application.js.erb +21 -0
- data/app/assets/javascripts/faalis/dashboard/functions.js.erb +91 -0
- data/app/assets/javascripts/faalis/dashboard/init.js +38 -0
- data/app/assets/javascripts/faalis/dashboard/lib/angular-animate.js +1226 -0
- data/app/assets/javascripts/faalis/dashboard/lib/angular-gettext.js +202 -0
- data/app/assets/javascripts/faalis/dashboard/lib/angular-resource.js +578 -0
- data/app/assets/javascripts/faalis/dashboard/lib/angular-route.js +880 -0
- data/app/assets/javascripts/faalis/dashboard/lib/angular.js +20031 -0
- data/app/assets/javascripts/faalis/dashboard/lib/lodash.underscore.js +4893 -0
- data/app/assets/javascripts/faalis/dashboard/lib/ng-grid.js +3260 -0
- data/app/assets/javascripts/faalis/dashboard/lib/ng-quick-date.js +297 -0
- data/app/assets/javascripts/faalis/dashboard/lib/restangular.js +1066 -0
- data/app/assets/javascripts/faalis/dashboard/lib/select2.js +3255 -0
- data/app/assets/javascripts/faalis/dashboard/lib/ui.select2.js +217 -0
- data/app/assets/javascripts/faalis/dashboard/locale/translations.js +5 -0
- data/app/assets/javascripts/faalis/dashboard/modules/anim.js +32 -0
- data/app/assets/javascripts/faalis/dashboard/modules/api.js +32 -0
- data/app/assets/javascripts/faalis/dashboard/modules/auth/auth.js +34 -0
- data/app/assets/javascripts/faalis/dashboard/modules/auth/group.js +174 -0
- data/app/assets/javascripts/faalis/dashboard/modules/auth/profile.js +59 -0
- data/app/assets/javascripts/faalis/dashboard/modules/auth/user.js +123 -0
- data/app/assets/javascripts/faalis/dashboard/modules/errors.js +47 -0
- data/app/assets/javascripts/faalis/dashboard/modules/filter.js +44 -0
- data/app/assets/javascripts/faalis/dashboard/modules/list-view.js +310 -0
- data/app/assets/javascripts/faalis/dashboard/modules/logs.js +41 -0
- data/app/assets/javascripts/faalis/dashboard/modules/modules.js +50 -0
- data/app/assets/javascripts/faalis/dashboard/modules/nav.js.erb +97 -0
- data/app/assets/javascripts/faalis/dashboard/templates/application.handlebars.erb +42 -0
- data/app/assets/javascripts/faalis/dashboard/templates/auth/groups/details.handlebars.erb +15 -0
- data/app/assets/javascripts/faalis/dashboard/templates/auth/groups/index.handlebars.erb +7 -0
- data/app/assets/javascripts/faalis/dashboard/templates/auth/groups/new.handlebars.erb +39 -0
- data/app/assets/javascripts/faalis/dashboard/templates/auth/index.handlebars.erb +31 -0
- data/app/assets/javascripts/faalis/dashboard/templates/auth/users/details.handlebars.erb +15 -0
- data/app/assets/javascripts/faalis/dashboard/templates/auth/users/index.handlebars.erb +11 -0
- data/app/assets/javascripts/faalis/dashboard/templates/auth/users/new.handlebars.erb +33 -0
- data/app/assets/javascripts/faalis/dashboard/templates/components/list-view.handlebars.erb +59 -0
- data/app/assets/javascripts/faalis/dashboard/templates/components/model-form.handlebars.erb +3 -0
- data/app/assets/javascripts/faalis/dashboard/templates/modules.handlebars.erb +15 -0
- data/app/assets/javascripts/faalis/dashboard/templates/navigation.handlebars.erb +43 -0
- data/app/assets/javascripts/faalis/dashboard/templates/widgets.handlebars +23 -0
- data/app/assets/javascripts/faalis/dashboard/variables.js.erb +17 -0
- data/app/assets/javascripts/faalis/groups.js +2 -0
- data/app/assets/javascripts/faalis/home.js +2 -0
- data/app/assets/javascripts/faalis/i18n.js +13 -0
- data/app/assets/javascripts/faalis/locale/en.json +27 -0
- data/app/assets/javascripts/faalis/locale/fa.json +27 -0
- data/app/assets/javascripts/faalis/users.js +2 -0
- data/app/assets/stylesheets/faalis/base.css.scss +264 -0
- data/app/assets/stylesheets/faalis/dashboard/dashboard.css.scss +226 -0
- data/app/assets/stylesheets/faalis/dashboard/list_view.css.scss +169 -0
- data/app/assets/stylesheets/faalis/dashboard/ltr/application.css +26 -0
- data/app/assets/stylesheets/faalis/dashboard/ltr/base.css.scss.erb +28 -0
- data/app/assets/stylesheets/faalis/dashboard/ltr/buttons.css.scss.erb +48 -0
- data/app/assets/stylesheets/faalis/dashboard/ltr/direction.css.scss +38 -0
- data/app/assets/stylesheets/faalis/dashboard/ltr/foundation_and_overrides.css.scss +1014 -0
- data/app/assets/stylesheets/faalis/dashboard/ng-grid.css.scss +442 -0
- data/app/assets/stylesheets/faalis/dashboard/ng-quick-date-default-theme.css.scss +20 -0
- data/app/assets/stylesheets/faalis/dashboard/ng-quick-date.css.scss +19 -0
- data/app/assets/stylesheets/faalis/dashboard/rtl/application.css +26 -0
- data/app/assets/stylesheets/faalis/dashboard/rtl/base.css.scss.erb +31 -0
- data/app/assets/stylesheets/faalis/dashboard/rtl/base.css_flymake.scss +25 -0
- data/app/assets/stylesheets/faalis/dashboard/rtl/buttons.css.scss.erb +45 -0
- data/app/assets/stylesheets/faalis/dashboard/rtl/direction.css.scss +37 -0
- data/app/assets/stylesheets/faalis/dashboard/rtl/foundation_and_overrides.css.scss +1014 -0
- data/app/assets/stylesheets/faalis/dashboard/select2.css.scss.erb +618 -0
- data/app/assets/stylesheets/faalis/dashboard/sidebar.css.scss +93 -0
- data/app/assets/stylesheets/faalis/devise.css.scss +34 -0
- data/app/assets/stylesheets/faalis/groups.css +4 -0
- data/app/assets/stylesheets/faalis/home.css.scss +14 -0
- data/app/assets/stylesheets/faalis/ltr/application.css +20 -0
- data/app/assets/stylesheets/faalis/ltr/buttons.css.scss.erb +48 -0
- data/app/assets/stylesheets/faalis/ltr/foundation_and_overrides.scss.erb +1012 -0
- data/app/assets/stylesheets/faalis/mixins.css.scss +15 -0
- data/app/assets/stylesheets/faalis/rtl/application.css +20 -0
- data/app/assets/stylesheets/faalis/rtl/buttons.css.scss.erb +48 -0
- data/app/assets/stylesheets/faalis/rtl/foundation_and_overrides.scss.erb +1012 -0
- data/app/assets/stylesheets/faalis/users.css +4 -0
- data/app/assets/stylesheets/faalis/variables.css.scss +102 -0
- data/app/controllers/faalis/api/v1/groups_controller.rb +75 -0
- data/app/controllers/faalis/api/v1/logs_controller.rb +12 -0
- data/app/controllers/faalis/api/v1/permissions_controller.rb +17 -0
- data/app/controllers/faalis/api/v1/profiles_controller.rb +42 -0
- data/app/controllers/faalis/api/v1/users_controller.rb +75 -0
- data/app/controllers/faalis/api_controller.rb +51 -0
- data/app/controllers/faalis/application_controller.rb +34 -0
- data/app/controllers/faalis/dashboard_controller.rb +44 -0
- data/app/controllers/faalis/home_controller.rb +19 -0
- data/app/controllers/faalis/omniauth/callbacks_controller.rb +43 -0
- data/app/helpers/faalis/application_helper.rb +4 -0
- data/app/helpers/faalis/dashboard_helper.rb +5 -0
- data/app/helpers/faalis/groups_helper.rb +4 -0
- data/app/helpers/faalis/home_helper.rb +4 -0
- data/app/helpers/faalis/users_helper.rb +4 -0
- data/app/models/ability.rb +42 -0
- data/app/models/faalis/group.rb +27 -0
- data/app/models/faalis/permission.rb +15 -0
- data/app/models/faalis/user.rb +81 -0
- data/app/views/angularjs_templates/#index.html# +8 -0
- data/app/views/angularjs_templates/auth/groups/details.html +21 -0
- data/app/views/angularjs_templates/auth/groups/index.html +5 -0
- data/app/views/angularjs_templates/auth/groups/new.html +41 -0
- data/app/views/angularjs_templates/auth/index.html +30 -0
- data/app/views/angularjs_templates/auth/profile/edit.html +54 -0
- data/app/views/angularjs_templates/auth/users/details.html +28 -0
- data/app/views/angularjs_templates/auth/users/index.html +6 -0
- data/app/views/angularjs_templates/auth/users/new.html +56 -0
- data/app/views/angularjs_templates/filter/index.html +15 -0
- data/app/views/angularjs_templates/index.html +8 -0
- data/app/views/angularjs_templates/list-view/index.html +81 -0
- data/app/views/angularjs_templates/locale/fa.po +25 -0
- data/app/views/angularjs_templates/locale/templates.pot +24 -0
- data/app/views/angularjs_templates/logs/index.html +6 -0
- data/app/views/angularjs_templates/modules.html +17 -0
- data/app/views/angularjs_templates/nav.html.erb +38 -0
- data/app/views/devise/confirmations/new.html.erb +34 -0
- data/app/views/devise/mailer/confirmation_instructions.html.erb +5 -0
- data/app/views/devise/mailer/reset_password_instructions.html.erb +8 -0
- data/app/views/devise/mailer/unlock_instructions.html.erb +7 -0
- data/app/views/devise/passwords/edit.html.erb +44 -0
- data/app/views/devise/passwords/new.html.erb +32 -0
- data/app/views/devise/registrations/edit.html.erb +29 -0
- data/app/views/devise/registrations/new.html.erb +91 -0
- data/app/views/devise/sessions/new.html.erb +98 -0
- data/app/views/devise/shared/_links.erb +25 -0
- data/app/views/devise/unlocks/new.html.erb +30 -0
- data/app/views/faalis/api/v1/groups/create.json.jbuilder +4 -0
- data/app/views/faalis/api/v1/groups/destroy.html.erb +2 -0
- data/app/views/faalis/api/v1/groups/destroy.json.jbuilder +1 -0
- data/app/views/faalis/api/v1/groups/edit.html.erb +2 -0
- data/app/views/faalis/api/v1/groups/index.html.erb +2 -0
- data/app/views/faalis/api/v1/groups/index.json.jbuilder +6 -0
- data/app/views/faalis/api/v1/groups/new.html.erb +2 -0
- data/app/views/faalis/api/v1/groups/show.html.erb +2 -0
- data/app/views/faalis/api/v1/groups/show.json.jbuilder +5 -0
- data/app/views/faalis/api/v1/groups/update.json.jbuilder +4 -0
- data/app/views/faalis/api/v1/logs/index.json.jbuilder +1 -0
- data/app/views/faalis/api/v1/permissions/index.json.jbuilder +1 -0
- data/app/views/faalis/api/v1/users/create.html.erb +2 -0
- data/app/views/faalis/api/v1/users/create.json.jbuilder +1 -0
- data/app/views/faalis/api/v1/users/destroy.json.jbuilder +1 -0
- data/app/views/faalis/api/v1/users/distroy.html.erb +2 -0
- data/app/views/faalis/api/v1/users/edit.html.erb +2 -0
- data/app/views/faalis/api/v1/users/index.html.erb +2 -0
- data/app/views/faalis/api/v1/users/index.json.jbuilder +4 -0
- data/app/views/faalis/api/v1/users/show.html.erb +2 -0
- data/app/views/faalis/api/v1/users/show.json.jbuilder +2 -0
- data/app/views/faalis/api/v1/users/update.json.jbuilder +1 -0
- data/app/views/faalis/dashboard/index.html.erb +37 -0
- data/app/views/faalis/dashboard/login_required_page.html.erb +5 -0
- data/app/views/faalis/home/index.html.erb +119 -0
- data/app/views/layouts/faalis/application.html.erb +90 -0
- data/app/views/layouts/faalis/dashboard.html.erb +21 -0
- data/config/initializers/devise.rb +28 -0
- data/config/locales/devise.en.yml +59 -0
- data/config/locales/devise.fa.yml +56 -0
- data/config/locales/fa/LC_MESSAGES/faalis.mo +0 -0
- data/config/locales/fa/faalis.po +181 -0
- data/config/locales/fa/messages.mo +0 -0
- data/config/locales/faalis.pot +181 -0
- data/config/routes.rb +36 -0
- data/db/migrate/20131013091000_devise_create_red_base_users.rb +64 -0
- data/db/migrate/20131020124701_create_red_base_groups.rb +9 -0
- data/db/migrate/20131021170923_create_red_base_permissions.rb +10 -0
- data/db/migrate/20131123120422_add_permissions_groups_table.rb +8 -0
- data/db/seeds.rb +15 -0
- data/lib/faalis.rb +30 -0
- data/lib/faalis/active_record.rb +64 -0
- data/lib/faalis/api.rb +61 -0
- data/lib/faalis/api/groups_api.rb +41 -0
- data/lib/faalis/api/permissions_api.rb +24 -0
- data/lib/faalis/api/root.rb +15 -0
- data/lib/faalis/api/users_api.rb +20 -0
- data/lib/faalis/cucumber.rb +25 -0
- data/lib/faalis/cucumber/auth.rb +45 -0
- data/lib/faalis/cucumber/exceptions.rb +40 -0
- data/lib/faalis/cucumber/interaction.rb +43 -0
- data/lib/faalis/cucumber/query.rb +28 -0
- data/lib/faalis/cucumber/urls.rb +76 -0
- data/lib/faalis/dashboard.rb +60 -0
- data/lib/faalis/dashboard/controller.rb +42 -0
- data/lib/faalis/dashboard/module.rb +45 -0
- data/lib/faalis/engine.rb +128 -0
- data/lib/faalis/exceptions.rb +26 -0
- data/lib/faalis/i18n.rb +35 -0
- data/lib/faalis/initialize.rb +7 -0
- data/lib/faalis/omniauth.rb +24 -0
- data/lib/faalis/omniauth/callbacks.rb +58 -0
- data/lib/faalis/plugins.rb +44 -0
- data/lib/faalis/version.rb +22 -0
- data/lib/faalis_plugin.rb +476 -0
- data/lib/generators/faalis/USAGE +8 -0
- data/lib/generators/faalis/angularjs_resource_generator.rb +74 -0
- data/lib/generators/faalis/install_all_generator.rb +38 -0
- data/lib/generators/faalis/install_generator.rb +42 -0
- data/lib/generators/faalis/install_specs_generator.rb +48 -0
- data/lib/generators/faalis/js_scaffold_generator.rb +273 -0
- data/lib/generators/faalis/templates/README +41 -0
- data/lib/generators/faalis/templates/SPECS +13 -0
- data/lib/generators/faalis/templates/angularjs/details.html.erb +20 -0
- data/lib/generators/faalis/templates/angularjs/index.html.erb +62 -0
- data/lib/generators/faalis/templates/angularjs/module.js.erb +309 -0
- data/lib/generators/faalis/templates/angularjs/new.html.erb +105 -0
- data/lib/generators/faalis/templates/api/controller.rb.erb +56 -0
- data/lib/generators/faalis/templates/devise.rb +251 -0
- data/lib/generators/faalis/templates/faalis.rb +14 -0
- data/lib/generators/faalis/templates/fast_gettext.rb +4 -0
- data/lib/generators/faalis/templates/features/api.feature +92 -0
- data/lib/generators/faalis/templates/features/api.step.rb +7 -0
- data/lib/generators/faalis/templates/features/step_definitions/email_steps.rb +206 -0
- data/lib/generators/faalis/templates/features/support/email_spec.rb +1 -0
- data/lib/generators/faalis/templates/features/support/env.rb +79 -0
- data/lib/generators/faalis/templates/formtastic.rb +76 -0
- data/lib/generators/faalis/templates/js_scaffold.README +25 -0
- data/lib/generators/faalis/templates/seeds.rb +1 -0
- data/lib/generators/faalis/templates/spec/factories/groups.rb +5 -0
- data/lib/generators/faalis/templates/spec/factories/users.rb +10 -0
- data/lib/generators/faalis/templates/spec/spec_helper.rb +69 -0
- data/lib/generators/faalis/templates/spec/support/devise.rb +3 -0
- data/lib/generators/faalis/templates/views/create.json.jbuilder.erb +2 -0
- data/lib/generators/faalis/templates/views/destroy.json.jbuilder.erb +1 -0
- data/lib/generators/faalis/templates/views/index.json.jbuilder.erb +10 -0
- data/lib/generators/faalis/templates/views/show.json.jbuilder.erb +7 -0
- data/lib/generators/faalis/templates/views/update.json.jbuilder.erb +6 -0
- data/lib/generators/faalis/views_generator.rb +41 -0
- data/lib/tasks/faalis_tasks.rake +23 -0
- data/lib/tasks/grunt/Gruntfile.js +25 -0
- data/spec/dummy/README.rdoc +28 -0
- data/spec/dummy/Rakefile +6 -0
- data/spec/dummy/app/assets/javascripts/application.js +13 -0
- data/spec/dummy/app/assets/stylesheets/application.css +13 -0
- data/spec/dummy/app/controllers/application_controller.rb +5 -0
- data/spec/dummy/app/helpers/application_helper.rb +2 -0
- data/spec/dummy/app/views/layouts/application.html.erb +14 -0
- data/spec/dummy/bin/bundle +3 -0
- data/spec/dummy/bin/rails +4 -0
- data/spec/dummy/bin/rake +4 -0
- data/spec/dummy/config.ru +4 -0
- data/spec/dummy/config/application.rb +23 -0
- data/spec/dummy/config/boot.rb +5 -0
- data/spec/dummy/config/database.yml +25 -0
- data/spec/dummy/config/environment.rb +5 -0
- data/spec/dummy/config/environments/development.rb +29 -0
- data/spec/dummy/config/environments/production.rb +80 -0
- data/spec/dummy/config/environments/test.rb +36 -0
- data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/spec/dummy/config/initializers/inflections.rb +16 -0
- data/spec/dummy/config/initializers/mime_types.rb +5 -0
- data/spec/dummy/config/initializers/secret_token.rb +12 -0
- data/spec/dummy/config/initializers/session_store.rb +3 -0
- data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/spec/dummy/config/locales/en.yml +23 -0
- data/spec/dummy/config/routes.rb +4 -0
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/log/development.log +0 -0
- data/spec/dummy/log/test.log +15 -0
- data/spec/dummy/public/404.html +58 -0
- data/spec/dummy/public/422.html +58 -0
- data/spec/dummy/public/500.html +57 -0
- data/spec/dummy/public/favicon.ico +0 -0
- data/spec/dummy/tmp/ember-rails/ember-data.js +10204 -0
- data/spec/dummy/tmp/ember-rails/ember.js +36991 -0
- data/spec/spec_helper.rb +52 -0
- metadata +678 -0
@@ -0,0 +1,297 @@
|
|
1
|
+
(function() {
|
2
|
+
var app;
|
3
|
+
|
4
|
+
app = angular.module("ngQuickDate", []);
|
5
|
+
|
6
|
+
app.provider("ngQuickDateDefaults", function() {
|
7
|
+
return {
|
8
|
+
options: {
|
9
|
+
dateFormat: 'M/d/yyyy',
|
10
|
+
timeFormat: 'h:mm a',
|
11
|
+
labelFormat: null,
|
12
|
+
placeholder: 'Click to Set Date',
|
13
|
+
hoverText: null,
|
14
|
+
buttonIconHtml: null,
|
15
|
+
closeButtonHtml: 'X',
|
16
|
+
nextLinkHtml: 'Next',
|
17
|
+
prevLinkHtml: 'Prev',
|
18
|
+
disableTimepicker: false,
|
19
|
+
disableClearButton: false,
|
20
|
+
dayAbbreviations: ["Su", "M", "Tu", "W", "Th", "F", "Sa"],
|
21
|
+
parseDateFunction: function(str) {
|
22
|
+
var seconds;
|
23
|
+
seconds = Date.parse(str);
|
24
|
+
if (isNaN(seconds)) {
|
25
|
+
return null;
|
26
|
+
} else {
|
27
|
+
return new Date(seconds);
|
28
|
+
}
|
29
|
+
}
|
30
|
+
},
|
31
|
+
$get: function() {
|
32
|
+
return this.options;
|
33
|
+
},
|
34
|
+
set: function(keyOrHash, value) {
|
35
|
+
var k, v, _results;
|
36
|
+
if (typeof keyOrHash === 'object') {
|
37
|
+
_results = [];
|
38
|
+
for (k in keyOrHash) {
|
39
|
+
v = keyOrHash[k];
|
40
|
+
_results.push(this.options[k] = v);
|
41
|
+
}
|
42
|
+
return _results;
|
43
|
+
} else {
|
44
|
+
return this.options[keyOrHash] = value;
|
45
|
+
}
|
46
|
+
}
|
47
|
+
};
|
48
|
+
});
|
49
|
+
|
50
|
+
app.directive("datepicker", [
|
51
|
+
'ngQuickDateDefaults', '$filter', '$sce', function(ngQuickDateDefaults, $filter, $sce) {
|
52
|
+
return {
|
53
|
+
restrict: "E",
|
54
|
+
require: "ngModel",
|
55
|
+
scope: {
|
56
|
+
ngModel: "=",
|
57
|
+
onChange: "&"
|
58
|
+
},
|
59
|
+
replace: true,
|
60
|
+
link: function(scope, element, attrs, ngModel) {
|
61
|
+
var dateToString, datepickerClicked, datesAreEqual, debug, getDaysInMonth, initialize, parseDateString, setCalendarDateFromModel, setCalendarRows, setConfigOptions, setInputDateFromModel;
|
62
|
+
debug = attrs.debug && attrs.debug.length;
|
63
|
+
initialize = function() {
|
64
|
+
scope.toggleCalendar(false);
|
65
|
+
scope.weeks = [];
|
66
|
+
scope.inputDate = null;
|
67
|
+
if (typeof scope.ngModel === 'string') {
|
68
|
+
scope.ngModel = parseDateString(scope.ngModel);
|
69
|
+
}
|
70
|
+
setConfigOptions();
|
71
|
+
setInputDateFromModel();
|
72
|
+
return setCalendarDateFromModel();
|
73
|
+
};
|
74
|
+
setConfigOptions = function() {
|
75
|
+
var key, value;
|
76
|
+
for (key in ngQuickDateDefaults) {
|
77
|
+
value = ngQuickDateDefaults[key];
|
78
|
+
if (key.match(/[Hh]tml/)) {
|
79
|
+
scope[key] = $sce.trustAsHtml(ngQuickDateDefaults[key] || "");
|
80
|
+
} else if (attrs[key]) {
|
81
|
+
scope[key] = attrs[key];
|
82
|
+
} else {
|
83
|
+
scope[key] = ngQuickDateDefaults[key];
|
84
|
+
}
|
85
|
+
}
|
86
|
+
if (!scope.labelFormat) {
|
87
|
+
scope.labelFormat = scope.dateFormat;
|
88
|
+
if (!scope.disableTimepicker) {
|
89
|
+
scope.labelFormat += " " + scope.timeFormat;
|
90
|
+
}
|
91
|
+
}
|
92
|
+
if (attrs.iconClass && attrs.iconClass.length) {
|
93
|
+
return scope.buttonIconHtml = $sce.trustAsHtml("<i ng-show='iconClass' class='" + attrs.iconClass + "'></i>");
|
94
|
+
}
|
95
|
+
};
|
96
|
+
datepickerClicked = false;
|
97
|
+
window.document.addEventListener('click', function(event) {
|
98
|
+
if (!datepickerClicked) {
|
99
|
+
scope.toggleCalendar(false);
|
100
|
+
scope.$apply();
|
101
|
+
}
|
102
|
+
return datepickerClicked = false;
|
103
|
+
});
|
104
|
+
angular.element(element[0])[0].addEventListener('click', function(event) {
|
105
|
+
return datepickerClicked = true;
|
106
|
+
});
|
107
|
+
setInputDateFromModel = function() {
|
108
|
+
if (scope.ngModel) {
|
109
|
+
scope.inputDate = $filter('date')(scope.ngModel, ngQuickDateDefaults.dateFormat);
|
110
|
+
return scope.inputTime = $filter('date')(scope.ngModel, ngQuickDateDefaults.timeFormat);
|
111
|
+
} else {
|
112
|
+
scope.inputDate = null;
|
113
|
+
return scope.inputTime = null;
|
114
|
+
}
|
115
|
+
};
|
116
|
+
setCalendarDateFromModel = function() {
|
117
|
+
var d;
|
118
|
+
d = scope.ngModel ? new Date(scope.ngModel) : new Date();
|
119
|
+
if (d.toString() === "Invalid Date") {
|
120
|
+
d = new Date();
|
121
|
+
}
|
122
|
+
d.setDate(1);
|
123
|
+
return scope.calendarDate = new Date(d);
|
124
|
+
};
|
125
|
+
setCalendarRows = function() {
|
126
|
+
var curDate, d, day, daysInMonth, numRows, offset, row, selected, today, weeks, _i, _j, _ref;
|
127
|
+
offset = scope.calendarDate.getDay();
|
128
|
+
daysInMonth = getDaysInMonth(scope.calendarDate.getFullYear(), scope.calendarDate.getMonth());
|
129
|
+
numRows = Math.ceil((offset + daysInMonth) / 7);
|
130
|
+
weeks = [];
|
131
|
+
curDate = new Date(scope.calendarDate);
|
132
|
+
curDate.setDate(curDate.getDate() + (offset * -1));
|
133
|
+
for (row = _i = 0, _ref = numRows - 1; 0 <= _ref ? _i <= _ref : _i >= _ref; row = 0 <= _ref ? ++_i : --_i) {
|
134
|
+
weeks.push([]);
|
135
|
+
for (day = _j = 0; _j <= 6; day = ++_j) {
|
136
|
+
d = new Date(curDate);
|
137
|
+
selected = scope.ngModel && d && datesAreEqual(d, scope.ngModel);
|
138
|
+
today = datesAreEqual(d, new Date());
|
139
|
+
weeks[row].push({
|
140
|
+
date: d,
|
141
|
+
selected: selected,
|
142
|
+
other: d.getMonth() !== scope.calendarDate.getMonth(),
|
143
|
+
today: today
|
144
|
+
});
|
145
|
+
curDate.setDate(curDate.getDate() + 1);
|
146
|
+
}
|
147
|
+
}
|
148
|
+
return scope.weeks = weeks;
|
149
|
+
};
|
150
|
+
dateToString = function(date, format) {
|
151
|
+
return $filter('date')(date, format);
|
152
|
+
};
|
153
|
+
parseDateString = ngQuickDateDefaults.parseDateFunction;
|
154
|
+
datesAreEqual = function(d1, d2, compareTimes) {
|
155
|
+
if (compareTimes == null) {
|
156
|
+
compareTimes = false;
|
157
|
+
}
|
158
|
+
if (compareTimes) {
|
159
|
+
return (d1 - d2) === 0;
|
160
|
+
} else {
|
161
|
+
return d1 && d2 && (d1.getYear() === d2.getYear()) && (d1.getMonth() === d2.getMonth()) && (d1.getDate() === d2.getDate());
|
162
|
+
}
|
163
|
+
};
|
164
|
+
getDaysInMonth = function(year, month) {
|
165
|
+
return [31, ((year % 4 === 0 && year % 100 !== 0) || year % 400 === 0 ? 29 : 28), 31, 30, 31, 30, 31, 31, 30, 31, 30, 31][month];
|
166
|
+
};
|
167
|
+
scope.$watch('ngModel', function(newVal, oldVal) {
|
168
|
+
if (newVal !== oldVal) {
|
169
|
+
setInputDateFromModel();
|
170
|
+
return setCalendarDateFromModel();
|
171
|
+
}
|
172
|
+
});
|
173
|
+
scope.$watch('calendarDate', function(newVal, oldVal) {
|
174
|
+
if (newVal !== oldVal) {
|
175
|
+
return setCalendarRows();
|
176
|
+
}
|
177
|
+
});
|
178
|
+
scope.$watch('calendarShown', function(newVal, oldVal) {
|
179
|
+
var dateInput;
|
180
|
+
dateInput = angular.element(element[0].querySelector(".quickdate-date-input"))[0];
|
181
|
+
return dateInput.select();
|
182
|
+
});
|
183
|
+
scope.mainButtonStr = function() {
|
184
|
+
if (scope.ngModel) {
|
185
|
+
return $filter('date')(scope.ngModel, scope.labelFormat);
|
186
|
+
} else {
|
187
|
+
return scope.placeholder;
|
188
|
+
}
|
189
|
+
};
|
190
|
+
scope.toggleCalendar = function(show) {
|
191
|
+
if (isFinite(show)) {
|
192
|
+
return scope.calendarShown = show;
|
193
|
+
} else {
|
194
|
+
return scope.calendarShown = !scope.calendarShown;
|
195
|
+
}
|
196
|
+
};
|
197
|
+
scope.setDate = function(date, closeCalendar) {
|
198
|
+
var changed;
|
199
|
+
if (closeCalendar == null) {
|
200
|
+
closeCalendar = true;
|
201
|
+
}
|
202
|
+
changed = (!scope.ngModel && date) || (scope.ngModel && !date) || (date.getTime() !== scope.ngModel.getTime());
|
203
|
+
scope.ngModel = date;
|
204
|
+
if (closeCalendar) {
|
205
|
+
scope.toggleCalendar(false);
|
206
|
+
}
|
207
|
+
if (changed && scope.onChange) {
|
208
|
+
return scope.onChange();
|
209
|
+
}
|
210
|
+
};
|
211
|
+
scope.setDateFromInput = function(closeCalendar) {
|
212
|
+
var err, tmpDate, tmpDateAndTime, tmpTime;
|
213
|
+
if (closeCalendar == null) {
|
214
|
+
closeCalendar = false;
|
215
|
+
}
|
216
|
+
try {
|
217
|
+
tmpDate = parseDateString(scope.inputDate);
|
218
|
+
if (!tmpDate) {
|
219
|
+
throw 'Invalid Date';
|
220
|
+
}
|
221
|
+
if (!scope.disableTimepicker && scope.inputTime && scope.inputTime.length && tmpDate) {
|
222
|
+
tmpTime = scope.disableTimepicker ? '00:00:00' : scope.inputTime;
|
223
|
+
tmpDateAndTime = parseDateString("" + scope.inputDate + " " + tmpTime);
|
224
|
+
if (!tmpDateAndTime) {
|
225
|
+
throw 'Invalid Time';
|
226
|
+
}
|
227
|
+
scope.setDate(tmpDateAndTime, false);
|
228
|
+
} else {
|
229
|
+
scope.setDate(tmpDate, false);
|
230
|
+
}
|
231
|
+
if (closeCalendar) {
|
232
|
+
scope.toggleCalendar(false);
|
233
|
+
}
|
234
|
+
scope.inputDateErr = false;
|
235
|
+
return scope.inputTimeErr = false;
|
236
|
+
} catch (_error) {
|
237
|
+
err = _error;
|
238
|
+
if (err === 'Invalid Date') {
|
239
|
+
return scope.inputDateErr = true;
|
240
|
+
} else if (err === 'Invalid Time') {
|
241
|
+
return scope.inputTimeErr = true;
|
242
|
+
}
|
243
|
+
}
|
244
|
+
};
|
245
|
+
scope.onDateInputTab = function(param) {
|
246
|
+
if (scope.disableTimepicker) {
|
247
|
+
scope.toggleCalendar(false);
|
248
|
+
}
|
249
|
+
return true;
|
250
|
+
};
|
251
|
+
scope.onTimeInputTab = function(param) {
|
252
|
+
scope.toggleCalendar(false);
|
253
|
+
return true;
|
254
|
+
};
|
255
|
+
scope.nextMonth = function() {
|
256
|
+
return scope.calendarDate = new Date(new Date(scope.calendarDate).setMonth(scope.calendarDate.getMonth() + 1));
|
257
|
+
};
|
258
|
+
scope.prevMonth = function() {
|
259
|
+
return scope.calendarDate = new Date(new Date(scope.calendarDate).setMonth(scope.calendarDate.getMonth() - 1));
|
260
|
+
};
|
261
|
+
scope.clear = function() {
|
262
|
+
scope.ngModel = null;
|
263
|
+
return scope.toggleCalendar(false);
|
264
|
+
};
|
265
|
+
initialize();
|
266
|
+
setCalendarRows();
|
267
|
+
if (debug) {
|
268
|
+
return console.log("quick date scope:", scope);
|
269
|
+
}
|
270
|
+
},
|
271
|
+
template: "<div class='quickdate'>\n <a href='' ng-focus='toggleCalendar(true)' ng-click='toggleCalendar()' class='quickdate-button' title='{{hoverText}}'><div ng-hide='iconClass' ng-bind-html='buttonIconHtml'></div>{{mainButtonStr()}}</a>\n <div class='quickdate-popup' ng-class='{open: calendarShown}'>\n <a href='' tabindex='-1' class='quickdate-close' ng-click='toggleCalendar()'><div ng-bind-html='closeButtonHtml'></div></a>\n <div class='quickdate-text-inputs'>\n <div class='quickdate-input-wrapper'>\n <label>Date</label>\n <input class='quickdate-date-input' name='inputDate' type='text' ng-model='inputDate' placeholder='1/1/2013' ng-blur=\"setDateFromInput()\" ng-enter=\"setDateFromInput(true)\" ng-class=\"{'ng-quick-date-error': inputDateErr}\" ng-tab='onDateInputTab()' />\n </div>\n <div class='quickdate-input-wrapper' ng-hide='disableTimepicker'>\n <label>Time</label>\n <input class='quickdate-time-input' name='inputTime' type='text' ng-model='inputTime' placeholder='12:00 PM' ng-blur=\"setDateFromInput(false)\" ng-enter=\"setDateFromInput(true)\" ng-class=\"{'quickdate-error': inputTimeErr}\" ng-tab='onTimeInputTab()'>\n </div>\n </div>\n <div class='quickdate-calendar-header'>\n <a href='' class='quickdate-prev-month quickdate-action-link' tabindex='-1' ng-click='prevMonth()'><div ng-bind-html='prevLinkHtml'></div></a>\n <span class='quickdate-month'>{{calendarDate | date:'MMMM yyyy'}}</span>\n <a href='' class='quickdate-next-month quickdate-action-link' ng-click='nextMonth()' tabindex='-1' ><div ng-bind-html='nextLinkHtml'></div></a>\n </div>\n <table class='quickdate-calendar'>\n <thead>\n <tr>\n <th ng-repeat='day in dayAbbreviations'>{{day}}</th>\n </tr>\n </thead>\n <tbody>\n <tr ng-repeat='week in weeks'>\n <td ng-mousedown='setDate(day.date)' ng-class='{\"other-month\": day.other, \"selected\": day.selected, \"is-today\": day.today}' ng-repeat='day in week'>{{day.date | date:'d'}}</td>\n </tr>\n </tbody>\n </table>\n <div class='quickdate-popup-footer'>\n <a href='' class='quickdate-clear' tabindex='-1' ng-hide='disableClearButton' ng-click='clear()'>Clear</a>\n </div>\n </div>\n</div>"
|
272
|
+
};
|
273
|
+
}
|
274
|
+
]);
|
275
|
+
|
276
|
+
app.directive('ngEnter', function() {
|
277
|
+
return function(scope, element, attr) {
|
278
|
+
return element.bind('keydown keypress', function(e) {
|
279
|
+
if (e.which === 13) {
|
280
|
+
scope.$apply(attr.ngEnter);
|
281
|
+
return e.preventDefault();
|
282
|
+
}
|
283
|
+
});
|
284
|
+
};
|
285
|
+
});
|
286
|
+
|
287
|
+
app.directive('ngTab', function() {
|
288
|
+
return function(scope, element, attr) {
|
289
|
+
return element.bind('keydown keypress', function(e) {
|
290
|
+
if (e.which === 9) {
|
291
|
+
return scope.$apply(attr.ngTab);
|
292
|
+
}
|
293
|
+
});
|
294
|
+
};
|
295
|
+
});
|
296
|
+
|
297
|
+
}).call(this);
|
@@ -0,0 +1,1066 @@
|
|
1
|
+
(function() {
|
2
|
+
|
3
|
+
var module = angular.module('restangular', []);
|
4
|
+
|
5
|
+
module.provider('Restangular', function() {
|
6
|
+
// Configuration
|
7
|
+
var Configurer = {};
|
8
|
+
Configurer.init = function(object, config) {
|
9
|
+
/**
|
10
|
+
* Those are HTTP safe methods for which there is no need to pass any data with the request.
|
11
|
+
*/
|
12
|
+
|
13
|
+
object.configuration = config;
|
14
|
+
|
15
|
+
var safeMethods= ["get", "head", "options", "trace", "getlist"];
|
16
|
+
config.isSafe = function(operation) {
|
17
|
+
return _.contains(safeMethods, operation.toLowerCase());
|
18
|
+
};
|
19
|
+
|
20
|
+
var absolutePattern = /^https?:\/\//i;
|
21
|
+
config.isAbsoluteUrl = function(string) {
|
22
|
+
return string && absolutePattern.test(string);
|
23
|
+
};
|
24
|
+
/**
|
25
|
+
* This is the BaseURL to be used with Restangular
|
26
|
+
*/
|
27
|
+
config.baseUrl = _.isUndefined(config.baseUrl) ? "" : config.baseUrl;
|
28
|
+
object.setBaseUrl = function(newBaseUrl) {
|
29
|
+
config.baseUrl = /\/$/.test(newBaseUrl)
|
30
|
+
? newBaseUrl.substring(0, newBaseUrl.length-1)
|
31
|
+
: newBaseUrl;
|
32
|
+
return this;
|
33
|
+
};
|
34
|
+
|
35
|
+
/**
|
36
|
+
* Sets the extra fields to keep from the parents
|
37
|
+
*/
|
38
|
+
config.extraFields = config.extraFields || [];
|
39
|
+
object.setExtraFields = function(newExtraFields) {
|
40
|
+
config.extraFields = newExtraFields;
|
41
|
+
return this;
|
42
|
+
};
|
43
|
+
|
44
|
+
/**
|
45
|
+
* Some default $http parameter to be used in EVERY call
|
46
|
+
**/
|
47
|
+
config.defaultHttpFields = config.defaultHttpFields || {};
|
48
|
+
object.setDefaultHttpFields = function(values) {
|
49
|
+
config.defaultHttpFields = values;
|
50
|
+
return this;
|
51
|
+
};
|
52
|
+
|
53
|
+
config.withHttpValues = function(httpLocalConfig, obj) {
|
54
|
+
return _.defaults(obj, httpLocalConfig, config.defaultHttpFields);
|
55
|
+
};
|
56
|
+
|
57
|
+
config.encodeIds = _.isUndefined(config.encodeIds) ? true : config.encodeIds;
|
58
|
+
object.setEncodeIds = function(encode) {
|
59
|
+
config.encodeIds = encode;
|
60
|
+
}
|
61
|
+
|
62
|
+
config.defaultRequestParams = config.defaultRequestParams || {
|
63
|
+
get: {},
|
64
|
+
post: {},
|
65
|
+
put: {},
|
66
|
+
remove: {},
|
67
|
+
common: {}
|
68
|
+
};
|
69
|
+
|
70
|
+
object.setDefaultRequestParams = function(param1, param2) {
|
71
|
+
var methods = [],
|
72
|
+
params = param2 || param1;
|
73
|
+
if (!_.isUndefined(param2)) {
|
74
|
+
if (_.isArray(param1)) {
|
75
|
+
methods = param1;
|
76
|
+
} else {
|
77
|
+
methods.push(param1);
|
78
|
+
}
|
79
|
+
} else {
|
80
|
+
methods.push('common');
|
81
|
+
}
|
82
|
+
|
83
|
+
_.each(methods, function (method) {
|
84
|
+
config.defaultRequestParams[method] = params;
|
85
|
+
});
|
86
|
+
return this;
|
87
|
+
}
|
88
|
+
|
89
|
+
object.requestParams = config.defaultRequestParams;
|
90
|
+
|
91
|
+
|
92
|
+
config.defaultHeaders = config.defaultHeaders || {};
|
93
|
+
object.setDefaultHeaders = function(headers) {
|
94
|
+
config.defaultHeaders = headers;
|
95
|
+
object.defaultHeaders = config.defaultHeaders;
|
96
|
+
return this;
|
97
|
+
};
|
98
|
+
|
99
|
+
object.defaultHeaders = config.defaultHeaders;
|
100
|
+
|
101
|
+
/**
|
102
|
+
* Method overriders will set which methods are sent via POST with an X-HTTP-Method-Override
|
103
|
+
**/
|
104
|
+
config.methodOverriders = config.methodOverriders || [];
|
105
|
+
object.setMethodOverriders = function(values) {
|
106
|
+
var overriders = _.extend([], values);
|
107
|
+
if (config.isOverridenMethod('delete', overriders)) {
|
108
|
+
overriders.push("remove");
|
109
|
+
}
|
110
|
+
config.methodOverriders = overriders;
|
111
|
+
return this;
|
112
|
+
};
|
113
|
+
|
114
|
+
config.isOverridenMethod = function(method, values) {
|
115
|
+
var search = values || config.methodOverriders;
|
116
|
+
return !_.isUndefined(_.find(search, function(one) {
|
117
|
+
return one.toLowerCase() === method.toLowerCase();
|
118
|
+
}));
|
119
|
+
};
|
120
|
+
|
121
|
+
/**
|
122
|
+
* Sets the URL creator type. For now, only Path is created. In the future we'll have queryParams
|
123
|
+
**/
|
124
|
+
config.urlCreator = config.urlCreator || "path";
|
125
|
+
object.setUrlCreator = function(name) {
|
126
|
+
if (!_.has(config.urlCreatorFactory, name)) {
|
127
|
+
throw new Error("URL Path selected isn't valid");
|
128
|
+
}
|
129
|
+
|
130
|
+
config.urlCreator = name;
|
131
|
+
return this;
|
132
|
+
};
|
133
|
+
|
134
|
+
/**
|
135
|
+
* You can set the restangular fields here. The 3 required fields for Restangular are:
|
136
|
+
*
|
137
|
+
* id: Id of the element
|
138
|
+
* route: name of the route of this element
|
139
|
+
* parentResource: the reference to the parent resource
|
140
|
+
*
|
141
|
+
* All of this fields except for id, are handled (and created) by Restangular. By default,
|
142
|
+
* the field values will be id, route and parentResource respectively
|
143
|
+
*/
|
144
|
+
config.restangularFields = config.restangularFields || {
|
145
|
+
id: "id",
|
146
|
+
route: "route",
|
147
|
+
parentResource: "parentResource",
|
148
|
+
restangularCollection: "restangularCollection",
|
149
|
+
cannonicalId: "__cannonicalId",
|
150
|
+
etag: "restangularEtag",
|
151
|
+
selfLink: "href",
|
152
|
+
get: "get",
|
153
|
+
getList: "getList",
|
154
|
+
put: "put",
|
155
|
+
post: "post",
|
156
|
+
remove: "remove",
|
157
|
+
head: "head",
|
158
|
+
trace: "trace",
|
159
|
+
options: "options",
|
160
|
+
patch: "patch",
|
161
|
+
getRestangularUrl: "getRestangularUrl",
|
162
|
+
putElement: "putElement",
|
163
|
+
addRestangularMethod: "addRestangularMethod",
|
164
|
+
getParentList: "getParentList",
|
165
|
+
clone: "clone",
|
166
|
+
ids: "ids",
|
167
|
+
httpConfig: '_$httpConfig'
|
168
|
+
};
|
169
|
+
object.setRestangularFields = function(resFields) {
|
170
|
+
config.restangularFields =
|
171
|
+
_.extend(config.restangularFields, resFields);
|
172
|
+
return this;
|
173
|
+
};
|
174
|
+
|
175
|
+
config.setFieldToElem = function(field, elem, value) {
|
176
|
+
var properties = field.split('.');
|
177
|
+
var idValue = elem;
|
178
|
+
_.each(_.initial(properties), function(prop) {
|
179
|
+
idValue[prop] = {};
|
180
|
+
idValue = idValue[prop];
|
181
|
+
});
|
182
|
+
idValue[_.last(properties)] = value;
|
183
|
+
return this;
|
184
|
+
};
|
185
|
+
|
186
|
+
config.getFieldFromElem = function(field, elem) {
|
187
|
+
var properties = field.split('.');
|
188
|
+
var idValue = angular.copy(elem);
|
189
|
+
_.each(properties, function(prop) {
|
190
|
+
if (idValue) {
|
191
|
+
idValue = idValue[prop];
|
192
|
+
}
|
193
|
+
});
|
194
|
+
return idValue;
|
195
|
+
};
|
196
|
+
|
197
|
+
config.setIdToElem = function(elem, id) {
|
198
|
+
config.setFieldToElem(config.restangularFields.id, elem, id);
|
199
|
+
return this;
|
200
|
+
};
|
201
|
+
|
202
|
+
config.getIdFromElem = function(elem) {
|
203
|
+
return config.getFieldFromElem(config.restangularFields.id, elem);
|
204
|
+
};
|
205
|
+
|
206
|
+
config.isValidId = function(elemId) {
|
207
|
+
return "" !== elemId && !_.isUndefined(elemId) && !_.isNull(elemId)
|
208
|
+
}
|
209
|
+
|
210
|
+
config.setUrlToElem = function(elem, url) {
|
211
|
+
config.setFieldToElem(config.restangularFields.selfLink, elem, url);
|
212
|
+
return this;
|
213
|
+
}
|
214
|
+
|
215
|
+
config.getUrlFromElem = function(elem) {
|
216
|
+
return config.getFieldFromElem(config.restangularFields.selfLink, elem);
|
217
|
+
}
|
218
|
+
|
219
|
+
config.useCannonicalId = _.isUndefined(config.useCannonicalId) ? false : config.useCannonicalId;
|
220
|
+
object.setUseCannonicalId = function(value) {
|
221
|
+
config.useCannonicalId = value;
|
222
|
+
return this;
|
223
|
+
}
|
224
|
+
|
225
|
+
config.getCannonicalIdFromElem = function(elem) {
|
226
|
+
var cannonicalId = elem[config.restangularFields.cannonicalId];
|
227
|
+
var actualId = config.isValidId(cannonicalId) ?
|
228
|
+
cannonicalId : config.getIdFromElem(elem);
|
229
|
+
return actualId;
|
230
|
+
};
|
231
|
+
|
232
|
+
/**
|
233
|
+
* Sets the Response parser. This is used in case your response isn't directly the data.
|
234
|
+
* For example if you have a response like {meta: {'meta'}, data: {name: 'Gonto'}}
|
235
|
+
* you can extract this data which is the one that needs wrapping
|
236
|
+
*
|
237
|
+
* The ResponseExtractor is a function that receives the response and the method executed.
|
238
|
+
*/
|
239
|
+
|
240
|
+
config.responseExtractor = config.responseExtractor || function(data, operation,
|
241
|
+
what, url, response, deferred) {
|
242
|
+
return data;
|
243
|
+
};
|
244
|
+
|
245
|
+
object.setResponseExtractor = function(extractor) {
|
246
|
+
config.responseExtractor = extractor;
|
247
|
+
return this;
|
248
|
+
};
|
249
|
+
|
250
|
+
object.setResponseInterceptor = object.setResponseExtractor;
|
251
|
+
|
252
|
+
/**
|
253
|
+
* Response interceptor is called just before resolving promises.
|
254
|
+
*/
|
255
|
+
|
256
|
+
|
257
|
+
/**
|
258
|
+
* Request interceptor is called before sending an object to the server.
|
259
|
+
*/
|
260
|
+
config.fullRequestInterceptor = config.fullRequestInterceptor || function(element, operation,
|
261
|
+
path, url, headers, params, httpConfig) {
|
262
|
+
return {
|
263
|
+
element: element,
|
264
|
+
headers: headers,
|
265
|
+
params: params,
|
266
|
+
httpConfig: httpConfig
|
267
|
+
};
|
268
|
+
};
|
269
|
+
|
270
|
+
object.setRequestInterceptor = function(interceptor) {
|
271
|
+
config.fullRequestInterceptor = function(elem, operation, path, url, headers, params, httpConfig) {
|
272
|
+
return {
|
273
|
+
headers: headers,
|
274
|
+
params: params,
|
275
|
+
element: interceptor(elem, operation, path, url),
|
276
|
+
httpConfig: httpConfig
|
277
|
+
}
|
278
|
+
};
|
279
|
+
return this;
|
280
|
+
};
|
281
|
+
|
282
|
+
object.setFullRequestInterceptor = function(interceptor) {
|
283
|
+
config.fullRequestInterceptor = interceptor;
|
284
|
+
return this;
|
285
|
+
};
|
286
|
+
|
287
|
+
config.errorInterceptor = config.errorInterceptor || function() {};
|
288
|
+
|
289
|
+
object.setErrorInterceptor = function(interceptor) {
|
290
|
+
config.errorInterceptor = interceptor;
|
291
|
+
return this;
|
292
|
+
};
|
293
|
+
|
294
|
+
config.onBeforeElemRestangularized = config.onBeforeElemRestangularized || function(elem) {
|
295
|
+
return elem;
|
296
|
+
}
|
297
|
+
object.setOnBeforeElemRestangularized = function(post) {
|
298
|
+
config.onBeforeElemRestangularized = post;
|
299
|
+
return this;
|
300
|
+
};
|
301
|
+
|
302
|
+
/**
|
303
|
+
* This method is called after an element has been "Restangularized".
|
304
|
+
*
|
305
|
+
* It receives the element, a boolean indicating if it's an element or a collection
|
306
|
+
* and the name of the model
|
307
|
+
*
|
308
|
+
*/
|
309
|
+
config.onElemRestangularized = config.onElemRestangularized || function(elem) {
|
310
|
+
return elem;
|
311
|
+
};
|
312
|
+
object.setOnElemRestangularized = function(post) {
|
313
|
+
config.onElemRestangularized = post;
|
314
|
+
return this;
|
315
|
+
};
|
316
|
+
|
317
|
+
/**
|
318
|
+
* Depracated. Don't use this!!
|
319
|
+
*/
|
320
|
+
object.setListTypeIsArray = function(val) {
|
321
|
+
|
322
|
+
};
|
323
|
+
|
324
|
+
config.shouldSaveParent = config.shouldSaveParent || function() {
|
325
|
+
return true;
|
326
|
+
};
|
327
|
+
object.setParentless = function(values) {
|
328
|
+
if (_.isArray(values)) {
|
329
|
+
config.shouldSaveParent = function(route) {
|
330
|
+
return !_.contains(values, route);
|
331
|
+
}
|
332
|
+
} else if (_.isBoolean(values)) {
|
333
|
+
config.shouldSaveParent = function() {
|
334
|
+
return !values;
|
335
|
+
}
|
336
|
+
}
|
337
|
+
return this;
|
338
|
+
};
|
339
|
+
|
340
|
+
/**
|
341
|
+
* This lets you set a suffix to every request.
|
342
|
+
*
|
343
|
+
* For example, if your api requires that for JSon requests you do /users/123.json, you can set that
|
344
|
+
* in here.
|
345
|
+
*
|
346
|
+
*
|
347
|
+
* By default, the suffix is null
|
348
|
+
*/
|
349
|
+
config.suffix = _.isUndefined(config.suffix) ? null : config.suffix;
|
350
|
+
object.setRequestSuffix = function(newSuffix) {
|
351
|
+
config.suffix = newSuffix;
|
352
|
+
return this;
|
353
|
+
};
|
354
|
+
|
355
|
+
/**
|
356
|
+
* Add element transformers for certain routes.
|
357
|
+
*/
|
358
|
+
config.transformers = config.transformers || {};
|
359
|
+
object.addElementTransformer = function(type, secondArg, thirdArg) {
|
360
|
+
var isCollection = null;
|
361
|
+
var transformer = null;
|
362
|
+
if (arguments.length === 2) {
|
363
|
+
transformer = secondArg;
|
364
|
+
} else {
|
365
|
+
transformer = thirdArg;
|
366
|
+
isCollection = secondArg;
|
367
|
+
}
|
368
|
+
|
369
|
+
var typeTransformers = config.transformers[type];
|
370
|
+
if (!typeTransformers) {
|
371
|
+
typeTransformers = config.transformers[type] = [];
|
372
|
+
}
|
373
|
+
|
374
|
+
typeTransformers.push(function(coll, elem) {
|
375
|
+
if (_.isNull(isCollection) || (coll == isCollection)) {
|
376
|
+
return transformer(elem);
|
377
|
+
}
|
378
|
+
return elem;
|
379
|
+
});
|
380
|
+
};
|
381
|
+
|
382
|
+
object.extendCollection = function(route, fn) {
|
383
|
+
return object.addElementTransformer(route, true, fn);
|
384
|
+
};
|
385
|
+
|
386
|
+
object.extendModel = function(route, fn) {
|
387
|
+
return object.addElementTransformer(route, false, fn);
|
388
|
+
};
|
389
|
+
|
390
|
+
config.transformElem = function(elem, isCollection, route, Restangular) {
|
391
|
+
var typeTransformers = config.transformers[route];
|
392
|
+
var changedElem = elem;
|
393
|
+
if (typeTransformers) {
|
394
|
+
_.each(typeTransformers, function(transformer) {
|
395
|
+
changedElem = transformer(isCollection, changedElem);
|
396
|
+
});
|
397
|
+
}
|
398
|
+
return config.onElemRestangularized(changedElem,
|
399
|
+
isCollection, route, Restangular);
|
400
|
+
};
|
401
|
+
|
402
|
+
config.fullResponse = _.isUndefined(config.fullResponse) ? false : config.fullResponse;
|
403
|
+
object.setFullResponse = function(full) {
|
404
|
+
config.fullResponse = full;
|
405
|
+
return this;
|
406
|
+
};
|
407
|
+
|
408
|
+
|
409
|
+
|
410
|
+
//Internal values and functions
|
411
|
+
config.urlCreatorFactory = {};
|
412
|
+
|
413
|
+
/**
|
414
|
+
* Base URL Creator. Base prototype for everything related to it
|
415
|
+
**/
|
416
|
+
|
417
|
+
var BaseCreator = function() {
|
418
|
+
};
|
419
|
+
|
420
|
+
BaseCreator.prototype.setConfig = function(config) {
|
421
|
+
this.config = config;
|
422
|
+
return this;
|
423
|
+
};
|
424
|
+
|
425
|
+
BaseCreator.prototype.parentsArray = function(current) {
|
426
|
+
var parents = [];
|
427
|
+
while(current) {
|
428
|
+
parents.push(current);
|
429
|
+
current = current[this.config.restangularFields.parentResource];
|
430
|
+
}
|
431
|
+
return parents.reverse();
|
432
|
+
};
|
433
|
+
|
434
|
+
function RestangularResource(config, $http, url, configurer) {
|
435
|
+
var resource = {};
|
436
|
+
_.each(_.keys(configurer), function(key) {
|
437
|
+
var value = configurer[key];
|
438
|
+
|
439
|
+
// Add default parameters
|
440
|
+
value.params = _.extend({}, value.params,
|
441
|
+
config.defaultRequestParams[value.method.toLowerCase()]);
|
442
|
+
// We don't want the ? if no params are there
|
443
|
+
if (_.isEmpty(value.params)) {
|
444
|
+
delete value.params;
|
445
|
+
}
|
446
|
+
|
447
|
+
if (config.isSafe(value.method)) {
|
448
|
+
|
449
|
+
resource[key] = function() {
|
450
|
+
return $http(_.extend(value, {
|
451
|
+
url: url
|
452
|
+
}));
|
453
|
+
}
|
454
|
+
|
455
|
+
} else {
|
456
|
+
|
457
|
+
resource[key] = function(data) {
|
458
|
+
return $http(_.extend(value, {
|
459
|
+
url: url,
|
460
|
+
data: data
|
461
|
+
}));
|
462
|
+
}
|
463
|
+
|
464
|
+
}
|
465
|
+
});
|
466
|
+
|
467
|
+
return resource;
|
468
|
+
}
|
469
|
+
|
470
|
+
BaseCreator.prototype.resource = function(current, $http, localHttpConfig, callHeaders, callParams, what, etag, operation) {
|
471
|
+
|
472
|
+
var params = _.defaults(callParams || {}, this.config.defaultRequestParams.common);
|
473
|
+
var headers = _.defaults(callHeaders || {}, this.config.defaultHeaders);
|
474
|
+
|
475
|
+
if (etag) {
|
476
|
+
if (!config.isSafe(operation)) {
|
477
|
+
headers['If-Match'] = etag;
|
478
|
+
} else {
|
479
|
+
headers['If-None-Match'] = etag;
|
480
|
+
}
|
481
|
+
}
|
482
|
+
|
483
|
+
var url = this.base(current);
|
484
|
+
|
485
|
+
if (what) {
|
486
|
+
var add = '';
|
487
|
+
if (!/\/$/.test(url)) {
|
488
|
+
add += '/';
|
489
|
+
}
|
490
|
+
add += what;
|
491
|
+
url += add;
|
492
|
+
}
|
493
|
+
|
494
|
+
if (this.config.suffix
|
495
|
+
&& url.indexOf(this.config.suffix, url.length - this.config.suffix.length) === -1) {
|
496
|
+
|
497
|
+
url += this.config.suffix;
|
498
|
+
}
|
499
|
+
|
500
|
+
current[this.config.restangularFields.httpConfig] = undefined;
|
501
|
+
|
502
|
+
|
503
|
+
return RestangularResource(this.config, $http, url, {
|
504
|
+
getList: this.config.withHttpValues(localHttpConfig,
|
505
|
+
{method: 'GET',
|
506
|
+
params: params,
|
507
|
+
headers: headers}),
|
508
|
+
|
509
|
+
get: this.config.withHttpValues(localHttpConfig,
|
510
|
+
{method: 'GET',
|
511
|
+
params: params,
|
512
|
+
headers: headers}),
|
513
|
+
|
514
|
+
put: this.config.withHttpValues(localHttpConfig,
|
515
|
+
{method: 'PUT',
|
516
|
+
params: params,
|
517
|
+
headers: headers}),
|
518
|
+
|
519
|
+
post: this.config.withHttpValues(localHttpConfig,
|
520
|
+
{method: 'POST',
|
521
|
+
params: params,
|
522
|
+
headers: headers}),
|
523
|
+
|
524
|
+
remove: this.config.withHttpValues(localHttpConfig,
|
525
|
+
{method: 'DELETE',
|
526
|
+
params: params,
|
527
|
+
headers: headers}),
|
528
|
+
|
529
|
+
head: this.config.withHttpValues(localHttpConfig,
|
530
|
+
{method: 'HEAD',
|
531
|
+
params: params,
|
532
|
+
headers: headers}),
|
533
|
+
|
534
|
+
trace: this.config.withHttpValues(localHttpConfig,
|
535
|
+
{method: 'TRACE',
|
536
|
+
params: params,
|
537
|
+
headers: headers}),
|
538
|
+
|
539
|
+
options: this.config.withHttpValues(localHttpConfig,
|
540
|
+
{method: 'OPTIONS',
|
541
|
+
params: params,
|
542
|
+
headers: headers}),
|
543
|
+
|
544
|
+
patch: this.config.withHttpValues(localHttpConfig,
|
545
|
+
{method: 'PATCH',
|
546
|
+
params: params,
|
547
|
+
headers: headers})
|
548
|
+
});
|
549
|
+
};
|
550
|
+
|
551
|
+
/**
|
552
|
+
* This is the Path URL creator. It uses Path to show Hierarchy in the Rest API.
|
553
|
+
* This means that if you have an Account that then has a set of Buildings, a URL to a building
|
554
|
+
* would be /accounts/123/buildings/456
|
555
|
+
**/
|
556
|
+
var Path = function() {
|
557
|
+
};
|
558
|
+
|
559
|
+
Path.prototype = new BaseCreator();
|
560
|
+
|
561
|
+
Path.prototype.base = function(current) {
|
562
|
+
var __this = this;
|
563
|
+
return _.reduce(this.parentsArray(current), function(acum, elem) {
|
564
|
+
var elemUrl;
|
565
|
+
var elemSelfLink = __this.config.getUrlFromElem(elem);
|
566
|
+
if (elemSelfLink) {
|
567
|
+
if (__this.config.isAbsoluteUrl(elemSelfLink)) {
|
568
|
+
return elemSelfLink;
|
569
|
+
} else {
|
570
|
+
elemUrl = elemSelfLink;
|
571
|
+
}
|
572
|
+
} else {
|
573
|
+
elemUrl = elem[__this.config.restangularFields.route];
|
574
|
+
|
575
|
+
if (elem[__this.config.restangularFields.restangularCollection]) {
|
576
|
+
var ids = elem[__this.config.restangularFields.ids];
|
577
|
+
if (ids) {
|
578
|
+
elemUrl += "/" + ids.join(",");
|
579
|
+
}
|
580
|
+
} else {
|
581
|
+
var elemId;
|
582
|
+
if (__this.config.useCannonicalId) {
|
583
|
+
elemId = __this.config.getCannonicalIdFromElem(elem);
|
584
|
+
} else {
|
585
|
+
elemId = __this.config.getIdFromElem(elem);
|
586
|
+
}
|
587
|
+
|
588
|
+
if (config.isValidId(elemId)) {
|
589
|
+
elemUrl += "/" + (__this.config.encodeIds ? encodeURIComponent(elemId) : elemId);
|
590
|
+
}
|
591
|
+
}
|
592
|
+
}
|
593
|
+
|
594
|
+
return acum + "/" + elemUrl;
|
595
|
+
|
596
|
+
}, this.config.baseUrl);
|
597
|
+
};
|
598
|
+
|
599
|
+
|
600
|
+
|
601
|
+
Path.prototype.fetchUrl = function(current, what) {
|
602
|
+
var baseUrl = this.base(current);
|
603
|
+
if (what) {
|
604
|
+
baseUrl += "/" + what;
|
605
|
+
}
|
606
|
+
return baseUrl;
|
607
|
+
};
|
608
|
+
|
609
|
+
|
610
|
+
|
611
|
+
config.urlCreatorFactory.path = Path;
|
612
|
+
|
613
|
+
}
|
614
|
+
|
615
|
+
var globalConfiguration = {};
|
616
|
+
|
617
|
+
Configurer.init(this, globalConfiguration);
|
618
|
+
|
619
|
+
|
620
|
+
|
621
|
+
|
622
|
+
this.$get = ['$http', '$q', function($http, $q) {
|
623
|
+
|
624
|
+
function createServiceForConfiguration(config) {
|
625
|
+
var service = {};
|
626
|
+
|
627
|
+
var urlHandler = new config.urlCreatorFactory[config.urlCreator]();
|
628
|
+
urlHandler.setConfig(config);
|
629
|
+
|
630
|
+
function restangularizeBase(parent, elem, route) {
|
631
|
+
elem[config.restangularFields.route] = route;
|
632
|
+
elem[config.restangularFields.getRestangularUrl] = _.bind(urlHandler.fetchUrl, urlHandler, elem);
|
633
|
+
elem[config.restangularFields.addRestangularMethod] = _.bind(addRestangularMethodFunction, elem);
|
634
|
+
elem[config.restangularFields.clone] = _.bind(copyRestangularizedElement, elem, elem);
|
635
|
+
elem.withHttpConfig = _.bind(withHttpConfig, elem);
|
636
|
+
|
637
|
+
// RequestLess connection
|
638
|
+
elem.one = _.bind(one, elem, elem);
|
639
|
+
elem.all = _.bind(all, elem, elem);
|
640
|
+
elem.several = _.bind(several, elem, elem);
|
641
|
+
elem.oneUrl = _.bind(oneUrl, elem, elem);
|
642
|
+
elem.allUrl = _.bind(allUrl, elem, elem);
|
643
|
+
|
644
|
+
if (parent && config.shouldSaveParent(route)) {
|
645
|
+
var parentId = config.getIdFromElem(parent);
|
646
|
+
var parentUrl = config.getUrlFromElem(parent);
|
647
|
+
|
648
|
+
var restangularFieldsForParent = _.union(
|
649
|
+
_.values( _.pick(config.restangularFields, ['route', 'parentResource']) ),
|
650
|
+
config.extraFields
|
651
|
+
);
|
652
|
+
var parentResource = _.pick(parent, restangularFieldsForParent);
|
653
|
+
|
654
|
+
if (config.isValidId(parentId)) {
|
655
|
+
config.setIdToElem(parentResource, parentId);
|
656
|
+
}
|
657
|
+
if (config.isValidId(parentUrl)) {
|
658
|
+
config.setUrlToElem(parentResource, parentUrl);
|
659
|
+
}
|
660
|
+
|
661
|
+
elem[config.restangularFields.parentResource] = parentResource;
|
662
|
+
} else {
|
663
|
+
elem[config.restangularFields.parentResource] = null;
|
664
|
+
}
|
665
|
+
return elem;
|
666
|
+
}
|
667
|
+
|
668
|
+
|
669
|
+
|
670
|
+
function one(parent, route, id) {
|
671
|
+
var elem = {};
|
672
|
+
config.setIdToElem(elem, id);
|
673
|
+
return restangularizeElem(parent, elem , route);
|
674
|
+
}
|
675
|
+
|
676
|
+
|
677
|
+
function all(parent, route) {
|
678
|
+
return restangularizeCollection(parent, [] , route, true);
|
679
|
+
}
|
680
|
+
|
681
|
+
function several(parent, route, ids) {
|
682
|
+
var collection = [];
|
683
|
+
collection[config.restangularFields.ids] =
|
684
|
+
Array.prototype.splice.call(arguments, 2);
|
685
|
+
return restangularizeCollection(parent, collection , route, true);
|
686
|
+
}
|
687
|
+
|
688
|
+
function oneUrl(parent, route, url) {
|
689
|
+
var elem = {};
|
690
|
+
config.setUrlToElem(elem, url);
|
691
|
+
return restangularizeElem(parent, elem , route);
|
692
|
+
}
|
693
|
+
|
694
|
+
|
695
|
+
function allUrl(parent, route, url) {
|
696
|
+
var elem = {};
|
697
|
+
config.setUrlToElem(elem, url);
|
698
|
+
return restangularizeCollection(parent, elem , route, true);
|
699
|
+
}
|
700
|
+
// Promises
|
701
|
+
function restangularizePromise(promise, isCollection) {
|
702
|
+
promise.call = _.bind(promiseCall, promise);
|
703
|
+
promise.get = _.bind(promiseGet, promise);
|
704
|
+
promise[config.restangularFields.restangularCollection] = isCollection;
|
705
|
+
if (isCollection) {
|
706
|
+
promise.push = _.bind(promiseCall, promise, "push");
|
707
|
+
}
|
708
|
+
return promise;
|
709
|
+
}
|
710
|
+
|
711
|
+
function promiseCall(method) {
|
712
|
+
var deferred = $q.defer();
|
713
|
+
var callArgs = arguments;
|
714
|
+
this.then(function(val) {
|
715
|
+
var params = Array.prototype.slice.call(callArgs, 1);
|
716
|
+
var func = val[method];
|
717
|
+
func.apply(val, params);
|
718
|
+
deferred.resolve(val);
|
719
|
+
});
|
720
|
+
return restangularizePromise(deferred.promise, this[config.restangularFields.restangularCollection]);
|
721
|
+
}
|
722
|
+
|
723
|
+
function promiseGet(what) {
|
724
|
+
var deferred = $q.defer();
|
725
|
+
this.then(function(val) {
|
726
|
+
deferred.resolve(val[what]);
|
727
|
+
});
|
728
|
+
return restangularizePromise(deferred.promise, this[config.restangularFields.restangularCollection]);
|
729
|
+
}
|
730
|
+
|
731
|
+
function resolvePromise(deferred, response, data) {
|
732
|
+
|
733
|
+
// Trigger the full response interceptor.
|
734
|
+
if (config.fullResponse) {
|
735
|
+
return deferred.resolve(_.extend(response, {
|
736
|
+
data: data
|
737
|
+
}));
|
738
|
+
} else {
|
739
|
+
deferred.resolve(data);
|
740
|
+
}
|
741
|
+
}
|
742
|
+
|
743
|
+
|
744
|
+
// Elements
|
745
|
+
|
746
|
+
function stripRestangular(elem) {
|
747
|
+
return _.omit(elem, _.values(_.omit(config.restangularFields, 'id')));
|
748
|
+
}
|
749
|
+
|
750
|
+
function addCustomOperation(elem) {
|
751
|
+
elem.customOperation = _.bind(customFunction, elem);
|
752
|
+
_.each(["put", "post", "get", "delete"], function(oper) {
|
753
|
+
_.each(["do", "custom"], function(alias) {
|
754
|
+
var callOperation = oper === 'delete' ? 'remove' : oper;
|
755
|
+
var name = alias + oper.toUpperCase();
|
756
|
+
var callFunction;
|
757
|
+
|
758
|
+
if (callOperation !== 'put' && callOperation !== 'post') {
|
759
|
+
callFunction = customFunction;
|
760
|
+
} else {
|
761
|
+
callFunction = function(operation, elem, path, params, headers) {
|
762
|
+
return _.bind(customFunction, this)(operation, path, params, headers, elem);
|
763
|
+
}
|
764
|
+
}
|
765
|
+
elem[name] = _.bind(callFunction, elem, callOperation);
|
766
|
+
});
|
767
|
+
});
|
768
|
+
elem.customGETLIST = _.bind(fetchFunction, elem);
|
769
|
+
elem.doGETLIST = elem.customGETLIST;
|
770
|
+
}
|
771
|
+
|
772
|
+
function copyRestangularizedElement(fromElement) {
|
773
|
+
var copiedElement = angular.copy(fromElement);
|
774
|
+
return restangularizeElem(copiedElement[config.restangularFields.parentResource],
|
775
|
+
copiedElement, copiedElement[config.restangularFields.route]);
|
776
|
+
}
|
777
|
+
|
778
|
+
function restangularizeElem(parent, element, route, collection) {
|
779
|
+
var elem = config.onBeforeElemRestangularized(element, false, route);
|
780
|
+
|
781
|
+
var localElem = restangularizeBase(parent, elem, route);
|
782
|
+
|
783
|
+
if (config.useCannonicalId) {
|
784
|
+
localElem[config.restangularFields.cannonicalId] = config.getIdFromElem(localElem)
|
785
|
+
}
|
786
|
+
|
787
|
+
if (collection) {
|
788
|
+
localElem[config.restangularFields.getParentList] = function() {
|
789
|
+
return collection;
|
790
|
+
}
|
791
|
+
}
|
792
|
+
|
793
|
+
|
794
|
+
localElem[config.restangularFields.restangularCollection] = false;
|
795
|
+
localElem[config.restangularFields.get] = _.bind(getFunction, localElem);
|
796
|
+
localElem[config.restangularFields.getList] = _.bind(fetchFunction, localElem);
|
797
|
+
localElem[config.restangularFields.put] = _.bind(putFunction, localElem);
|
798
|
+
localElem[config.restangularFields.post] = _.bind(postFunction, localElem);
|
799
|
+
localElem[config.restangularFields.remove] = _.bind(deleteFunction, localElem);
|
800
|
+
localElem[config.restangularFields.head] = _.bind(headFunction, localElem);
|
801
|
+
localElem[config.restangularFields.trace] = _.bind(traceFunction, localElem);
|
802
|
+
localElem[config.restangularFields.options] = _.bind(optionsFunction, localElem);
|
803
|
+
localElem[config.restangularFields.patch] = _.bind(patchFunction, localElem);
|
804
|
+
|
805
|
+
addCustomOperation(localElem);
|
806
|
+
return config.transformElem(localElem, false, route, service);
|
807
|
+
}
|
808
|
+
|
809
|
+
function restangularizeCollection(parent, element, route) {
|
810
|
+
var elem = config.onBeforeElemRestangularized(element, true, route);
|
811
|
+
|
812
|
+
var localElem = restangularizeBase(parent, elem, route);
|
813
|
+
localElem[config.restangularFields.restangularCollection] = true;
|
814
|
+
localElem[config.restangularFields.post] = _.bind(postFunction, localElem, null);
|
815
|
+
localElem[config.restangularFields.head] = _.bind(headFunction, localElem);
|
816
|
+
localElem[config.restangularFields.trace] = _.bind(traceFunction, localElem);
|
817
|
+
localElem[config.restangularFields.putElement] = _.bind(putElementFunction, localElem);
|
818
|
+
localElem[config.restangularFields.options] = _.bind(optionsFunction, localElem);
|
819
|
+
localElem[config.restangularFields.patch] = _.bind(patchFunction, localElem);
|
820
|
+
localElem[config.restangularFields.get] = _.bind(getById, localElem);
|
821
|
+
localElem[config.restangularFields.getList] = _.bind(fetchFunction, localElem, null);
|
822
|
+
|
823
|
+
addCustomOperation(localElem);
|
824
|
+
return config.transformElem(localElem, true, route, service);
|
825
|
+
}
|
826
|
+
|
827
|
+
function getById(id, reqParams, headers){
|
828
|
+
return this.customGET(id.toString(), reqParams, headers);
|
829
|
+
}
|
830
|
+
|
831
|
+
function putElementFunction(idx, params, headers) {
|
832
|
+
var __this = this;
|
833
|
+
var elemToPut = this[idx];
|
834
|
+
var deferred = $q.defer();
|
835
|
+
elemToPut.put(params, headers).then(function(serverElem) {
|
836
|
+
var newArray = copyRestangularizedElement(__this);
|
837
|
+
newArray[idx] = serverElem;
|
838
|
+
deferred.resolve(newArray);
|
839
|
+
}, function(response) {
|
840
|
+
deferred.reject(response);
|
841
|
+
});
|
842
|
+
|
843
|
+
return restangularizePromise(deferred.promise, true)
|
844
|
+
}
|
845
|
+
|
846
|
+
function parseResponse(resData, operation, route, fetchUrl, response, deferred) {
|
847
|
+
var data = config.responseExtractor(resData, operation, route, fetchUrl, response, deferred);
|
848
|
+
var etag = response.headers("ETag");
|
849
|
+
if (data && etag) {
|
850
|
+
data[config.restangularFields.etag] = etag;
|
851
|
+
}
|
852
|
+
return data;
|
853
|
+
}
|
854
|
+
|
855
|
+
|
856
|
+
function fetchFunction(what, reqParams, headers) {
|
857
|
+
var __this = this;
|
858
|
+
var deferred = $q.defer();
|
859
|
+
var operation = 'getList';
|
860
|
+
var url = urlHandler.fetchUrl(this, what);
|
861
|
+
var whatFetched = what || __this[config.restangularFields.route];
|
862
|
+
|
863
|
+
|
864
|
+
var request = config.fullRequestInterceptor(null, operation,
|
865
|
+
whatFetched, url, headers || {}, reqParams || {}, this[config.restangularFields.httpConfig] || {});
|
866
|
+
|
867
|
+
urlHandler.resource(this, $http, request.httpConfig, request.headers, request.params, what,
|
868
|
+
this[config.restangularFields.etag], operation).getList().then(function(response) {
|
869
|
+
var resData = response.data;
|
870
|
+
var data = parseResponse(resData, operation, whatFetched, url, response, deferred);
|
871
|
+
var processedData = _.map(data, function(elem) {
|
872
|
+
if (!__this[config.restangularFields.restangularCollection]) {
|
873
|
+
return restangularizeElem(__this, elem, what, data);
|
874
|
+
} else {
|
875
|
+
return restangularizeElem(__this[config.restangularFields.parentResource],
|
876
|
+
elem, __this[config.restangularFields.route], data);
|
877
|
+
}
|
878
|
+
|
879
|
+
});
|
880
|
+
|
881
|
+
processedData = _.extend(data, processedData);
|
882
|
+
if (!__this[config.restangularFields.restangularCollection]) {
|
883
|
+
resolvePromise(deferred, response, restangularizeCollection(__this, processedData, what));
|
884
|
+
} else {
|
885
|
+
resolvePromise(deferred, response, restangularizeCollection(__this[config.restangularFields.parentResource], processedData, __this[config.restangularFields.route]));
|
886
|
+
}
|
887
|
+
}, function error(response) {
|
888
|
+
if ( config.errorInterceptor(response) !== false ) {
|
889
|
+
deferred.reject(response);
|
890
|
+
}
|
891
|
+
});
|
892
|
+
|
893
|
+
return restangularizePromise(deferred.promise, true);
|
894
|
+
}
|
895
|
+
|
896
|
+
function withHttpConfig(httpConfig) {
|
897
|
+
this[config.restangularFields.httpConfig] = httpConfig;
|
898
|
+
return this;
|
899
|
+
}
|
900
|
+
|
901
|
+
function elemFunction(operation, what, params, obj, headers) {
|
902
|
+
var __this = this;
|
903
|
+
var deferred = $q.defer();
|
904
|
+
var resParams = params || {};
|
905
|
+
var route = what || this[config.restangularFields.route];
|
906
|
+
var fetchUrl = urlHandler.fetchUrl(this, what);
|
907
|
+
|
908
|
+
var callObj = obj || this;
|
909
|
+
var etag = callObj[config.restangularFields.etag];
|
910
|
+
if (_.isObject(callObj)) {
|
911
|
+
callObj = stripRestangular(callObj);
|
912
|
+
}
|
913
|
+
var request = config.fullRequestInterceptor(callObj, operation, route, fetchUrl,
|
914
|
+
headers || {}, resParams || {}, this[config.restangularFields.httpConfig] || {});
|
915
|
+
|
916
|
+
var okCallback = function(response) {
|
917
|
+
var resData = response.data;
|
918
|
+
var elem = parseResponse(resData, operation, route, fetchUrl, response, deferred);
|
919
|
+
if (elem) {
|
920
|
+
|
921
|
+
if (operation === "post" && !__this[config.restangularFields.restangularCollection]) {
|
922
|
+
resolvePromise(deferred, response, restangularizeElem(__this, elem, what));
|
923
|
+
} else {
|
924
|
+
resolvePromise(deferred, response, restangularizeElem(__this[config.restangularFields.parentResource], elem, __this[config.restangularFields.route]));
|
925
|
+
}
|
926
|
+
|
927
|
+
} else {
|
928
|
+
resolvePromise(deferred, response, undefined);
|
929
|
+
}
|
930
|
+
};
|
931
|
+
|
932
|
+
var errorCallback = function(response) {
|
933
|
+
if ( config.errorInterceptor(response) !== false ) {
|
934
|
+
deferred.reject(response);
|
935
|
+
}
|
936
|
+
};
|
937
|
+
// Overring HTTP Method
|
938
|
+
var callOperation = operation;
|
939
|
+
var callHeaders = _.extend({}, request.headers);
|
940
|
+
var isOverrideOperation = config.isOverridenMethod(operation);
|
941
|
+
if (isOverrideOperation) {
|
942
|
+
callOperation = 'post';
|
943
|
+
callHeaders = _.extend(callHeaders, {'X-HTTP-Method-Override': operation === 'remove' ? 'DELETE' : operation});
|
944
|
+
}
|
945
|
+
|
946
|
+
if (config.isSafe(operation)) {
|
947
|
+
if (isOverrideOperation) {
|
948
|
+
urlHandler.resource(this, $http, request.httpConfig, callHeaders, request.params,
|
949
|
+
what, etag, callOperation)[callOperation]({}).then(okCallback, errorCallback);
|
950
|
+
} else {
|
951
|
+
urlHandler.resource(this, $http, request.httpConfig, callHeaders, request.params,
|
952
|
+
what, etag, callOperation)[callOperation]().then(okCallback, errorCallback);
|
953
|
+
}
|
954
|
+
} else {
|
955
|
+
urlHandler.resource(this, $http, request.httpConfig, callHeaders, request.params,
|
956
|
+
what, etag, callOperation)[callOperation](request.element).then(okCallback, errorCallback);
|
957
|
+
}
|
958
|
+
|
959
|
+
return restangularizePromise(deferred.promise);
|
960
|
+
}
|
961
|
+
|
962
|
+
function getFunction(params, headers) {
|
963
|
+
return _.bind(elemFunction, this)("get", undefined, params, undefined, headers);
|
964
|
+
}
|
965
|
+
|
966
|
+
function deleteFunction(params, headers) {
|
967
|
+
return _.bind(elemFunction, this)("remove", undefined, params, undefined, headers);
|
968
|
+
}
|
969
|
+
|
970
|
+
function putFunction(params, headers) {
|
971
|
+
return _.bind(elemFunction, this)("put", undefined, params, undefined, headers);
|
972
|
+
}
|
973
|
+
|
974
|
+
function postFunction(what, elem, params, headers) {
|
975
|
+
return _.bind(elemFunction, this)("post", what, params, elem, headers);
|
976
|
+
}
|
977
|
+
|
978
|
+
function headFunction(params, headers) {
|
979
|
+
return _.bind(elemFunction, this)("head", undefined, params, undefined, headers);
|
980
|
+
}
|
981
|
+
|
982
|
+
function traceFunction(params, headers) {
|
983
|
+
return _.bind(elemFunction, this)("trace", undefined, params, undefined, headers);
|
984
|
+
}
|
985
|
+
|
986
|
+
function optionsFunction(params, headers) {
|
987
|
+
return _.bind(elemFunction, this)("options", undefined, params, undefined, headers);
|
988
|
+
}
|
989
|
+
|
990
|
+
function patchFunction(elem, params, headers) {
|
991
|
+
return _.bind(elemFunction, this)("patch", undefined, params, elem, headers);
|
992
|
+
}
|
993
|
+
|
994
|
+
function customFunction(operation, path, params, headers, elem) {
|
995
|
+
return _.bind(elemFunction, this)(operation, path, params, elem, headers);
|
996
|
+
}
|
997
|
+
|
998
|
+
function addRestangularMethodFunction(name, operation, path, defaultParams, defaultHeaders, defaultElem) {
|
999
|
+
var bindedFunction;
|
1000
|
+
if (operation === 'getList') {
|
1001
|
+
bindedFunction = _.bind(fetchFunction, this, path);
|
1002
|
+
} else {
|
1003
|
+
bindedFunction = _.bind(customFunction, this, operation, path);
|
1004
|
+
}
|
1005
|
+
|
1006
|
+
var createdFunction = function(params, headers, elem) {
|
1007
|
+
var callParams = _.defaults({
|
1008
|
+
params: params,
|
1009
|
+
headers: headers,
|
1010
|
+
elem: elem
|
1011
|
+
}, {
|
1012
|
+
params: defaultParams,
|
1013
|
+
headers: defaultHeaders,
|
1014
|
+
elem: defaultElem
|
1015
|
+
});
|
1016
|
+
return bindedFunction(callParams.params, callParams.headers, callParams.elem);
|
1017
|
+
};
|
1018
|
+
|
1019
|
+
if (config.isSafe(operation)) {
|
1020
|
+
this[name] = createdFunction;
|
1021
|
+
} else {
|
1022
|
+
this[name] = function(elem, params, headers) {
|
1023
|
+
return createdFunction(params, headers, elem);
|
1024
|
+
}
|
1025
|
+
}
|
1026
|
+
|
1027
|
+
}
|
1028
|
+
|
1029
|
+
function withConfigurationFunction(configurer) {
|
1030
|
+
var newConfig = angular.copy(globalConfiguration);
|
1031
|
+
Configurer.init(newConfig, newConfig);
|
1032
|
+
configurer(newConfig);
|
1033
|
+
return createServiceForConfiguration(newConfig);
|
1034
|
+
}
|
1035
|
+
|
1036
|
+
|
1037
|
+
Configurer.init(service, config);
|
1038
|
+
|
1039
|
+
service.copy = _.bind(copyRestangularizedElement, service);
|
1040
|
+
|
1041
|
+
service.withConfig = _.bind(withConfigurationFunction, service);
|
1042
|
+
|
1043
|
+
service.one = _.bind(one, service, null);
|
1044
|
+
|
1045
|
+
service.all = _.bind(all, service, null);
|
1046
|
+
|
1047
|
+
service.several = _.bind(several, service, null);
|
1048
|
+
|
1049
|
+
service.oneUrl = _.bind(oneUrl, service, null);
|
1050
|
+
|
1051
|
+
service.allUrl = _.bind(allUrl, service, null);
|
1052
|
+
|
1053
|
+
service.restangularizeElement = _.bind(restangularizeElem, service);
|
1054
|
+
|
1055
|
+
service.restangularizeCollection = _.bind(restangularizeCollection, service);
|
1056
|
+
|
1057
|
+
return service;
|
1058
|
+
}
|
1059
|
+
|
1060
|
+
return createServiceForConfiguration(globalConfiguration);
|
1061
|
+
|
1062
|
+
}];
|
1063
|
+
}
|
1064
|
+
);
|
1065
|
+
|
1066
|
+
})();
|