wordjelly-auth 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/MIT-LICENSE +20 -0
- data/README.rdoc +3 -0
- data/Rakefile +35 -0
- data/app/assets/images/auth/activity.jpg +0 -0
- data/app/assets/images/auth/facebook.svg +1 -0
- data/app/assets/images/auth/google_oauth2.svg +1 -0
- data/app/assets/images/auth/js_pic3.jpg +0 -0
- data/app/assets/images/auth/profile.jpg +0 -0
- data/app/assets/javascripts/auth/admin_create_users.js +2 -0
- data/app/assets/javascripts/auth/application.js +20 -0
- data/app/assets/javascripts/auth/auth_dependencies.js +12 -0
- data/app/assets/javascripts/auth/auth_modals_and_navbar.js +218 -0
- data/app/assets/javascripts/auth/clients.js +2 -0
- data/app/assets/javascripts/auth/search.js +2 -0
- data/app/assets/javascripts/auth/shopping/discounts.js +2 -0
- data/app/assets/javascripts/auth/users/profiles.js +188 -0
- data/app/assets/stylesheets/auth/admin_create_users.css +4 -0
- data/app/assets/stylesheets/auth/application.scss +14 -0
- data/app/assets/stylesheets/auth/auth_default_css.scss +13 -0
- data/app/assets/stylesheets/auth/common-styles.scss +579 -0
- data/app/assets/stylesheets/auth/overrides.scss +26 -0
- data/app/assets/stylesheets/auth/search.css +4 -0
- data/app/assets/stylesheets/auth/shopping/discounts.css +4 -0
- data/app/assets/stylesheets/auth/users/profiles.scss +40 -0
- data/app/assets/stylesheets/scaffold.css +56 -0
- data/app/controllers/auth/admin_create_users_controller.rb +89 -0
- data/app/controllers/auth/application_controller.rb +97 -0
- data/app/controllers/auth/clients_controller.rb +105 -0
- data/app/controllers/auth/concerns/activity_controller_concern.rb +32 -0
- data/app/controllers/auth/concerns/devise_concern.rb +193 -0
- data/app/controllers/auth/concerns/omni_concern.rb +310 -0
- data/app/controllers/auth/concerns/otp_concern.rb +251 -0
- data/app/controllers/auth/concerns/shopping/cart_controller_concern.rb +105 -0
- data/app/controllers/auth/concerns/shopping/cart_item_controller_concern.rb +150 -0
- data/app/controllers/auth/concerns/shopping/discount_controller_concern.rb +97 -0
- data/app/controllers/auth/concerns/shopping/pay_u_money_controller_concern.rb +38 -0
- data/app/controllers/auth/concerns/shopping/payment_controller_concern.rb +101 -0
- data/app/controllers/auth/concerns/shopping/product_controller_concern.rb +68 -0
- data/app/controllers/auth/concerns/token_concern.rb +187 -0
- data/app/controllers/auth/confirmations_controller.rb +3 -0
- data/app/controllers/auth/mailgun_controller.rb +8 -0
- data/app/controllers/auth/omniauth_callbacks_controller.rb +6 -0
- data/app/controllers/auth/passwords_controller.rb +4 -0
- data/app/controllers/auth/profiles_controller.rb +156 -0
- data/app/controllers/auth/registrations_controller.rb +99 -0
- data/app/controllers/auth/search_controller.rb +61 -0
- data/app/controllers/auth/sessions_controller.rb +20 -0
- data/app/controllers/auth/shopping/cart_items_controller.rb +14 -0
- data/app/controllers/auth/shopping/carts_controller.rb +13 -0
- data/app/controllers/auth/shopping/discounts_controller.rb +19 -0
- data/app/controllers/auth/shopping/payments_controller.rb +13 -0
- data/app/controllers/auth/shopping/products_controller.rb +17 -0
- data/app/controllers/auth/shopping/shopping_controller.rb +86 -0
- data/app/controllers/auth/unlocks_controller.rb +3 -0
- data/app/controllers/auth/webhooks_controller.rb +3 -0
- data/app/helpers/auth/admin_create_users_helper.rb +2 -0
- data/app/helpers/auth/application_helper.rb +136 -0
- data/app/helpers/auth/clients_helper.rb +4 -0
- data/app/helpers/auth/resource_helper.rb +10 -0
- data/app/helpers/auth/search_helper.rb +2 -0
- data/app/helpers/auth/shopping/cart_items/cart_items_helper.rb +29 -0
- data/app/helpers/auth/shopping/carts/carts_helper.rb +25 -0
- data/app/helpers/auth/shopping/discounts/discounts_helper.rb +39 -0
- data/app/helpers/auth/shopping/payments/pay_u_money_helper.rb +56 -0
- data/app/helpers/auth/shopping/payments/payments_helper.rb +54 -0
- data/app/helpers/auth/shopping/products/products_helper.rb +52 -0
- data/app/helpers/auth/shopping/shopping_helper.rb +3 -0
- data/app/helpers/auth/users/profiles_helper.rb +12 -0
- data/app/jobs/otp_job.rb +92 -0
- data/app/mailers/application_mailer.rb +4 -0
- data/app/mailers/auth/notifier.rb +9 -0
- data/app/models/auth/admin_create_user.rb +3 -0
- data/app/models/auth/client.rb +52 -0
- data/app/models/auth/concerns/activity_concern.rb +112 -0
- data/app/models/auth/concerns/chief_model_concern.rb +73 -0
- data/app/models/auth/concerns/es_concern.rb +21 -0
- data/app/models/auth/concerns/notification_concern.rb +232 -0
- data/app/models/auth/concerns/notification_response_concern.rb +71 -0
- data/app/models/auth/concerns/owner_concern.rb +81 -0
- data/app/models/auth/concerns/shopping/cart_concern.rb +329 -0
- data/app/models/auth/concerns/shopping/cart_item_concern.rb +437 -0
- data/app/models/auth/concerns/shopping/discount_concern.rb +482 -0
- data/app/models/auth/concerns/shopping/discount_flow.txt +11 -0
- data/app/models/auth/concerns/shopping/pay_u_money_concern.rb +184 -0
- data/app/models/auth/concerns/shopping/payment_concern.rb +613 -0
- data/app/models/auth/concerns/shopping/product_concern.rb +102 -0
- data/app/models/auth/concerns/sms_otp_concern.rb +68 -0
- data/app/models/auth/concerns/user_concern.rb +788 -0
- data/app/models/auth/identity.rb +23 -0
- data/app/models/auth/shopping/cart.rb +3 -0
- data/app/models/auth/shopping/cart_item.rb +6 -0
- data/app/models/auth/shopping/cart_item_payment_result.rb +7 -0
- data/app/models/auth/shopping/discount.rb +4 -0
- data/app/models/auth/shopping/payment.rb +5 -0
- data/app/models/auth/shopping/product.rb +5 -0
- data/app/models/auth/user.rb +3 -0
- data/app/views/auth/admin_create_users/_admin_actions.html.erb +46 -0
- data/app/views/auth/admin_create_users/_form.html.erb +19 -0
- data/app/views/auth/admin_create_users/edit.html.erb +6 -0
- data/app/views/auth/admin_create_users/index.html.erb +25 -0
- data/app/views/auth/admin_create_users/new.html.erb +5 -0
- data/app/views/auth/admin_create_users/show.html.erb +8 -0
- data/app/views/auth/clients/_form.html.erb +41 -0
- data/app/views/auth/clients/edit.html.erb +6 -0
- data/app/views/auth/clients/index.html.erb +33 -0
- data/app/views/auth/clients/new.html.erb +5 -0
- data/app/views/auth/clients/show.html.erb +21 -0
- data/app/views/auth/confirmations/_enter_otp.html.erb +27 -0
- data/app/views/auth/confirmations/_get_otp_status.html.erb +25 -0
- data/app/views/auth/confirmations/_new_otp_input.js.erb +11 -0
- data/app/views/auth/confirmations/_resend_otp.js.erb +8 -0
- data/app/views/auth/confirmations/_resend_sms_otp.html.erb +18 -0
- data/app/views/auth/confirmations/_verify_otp.js.erb +64 -0
- data/app/views/auth/confirmations/create.js.erb +8 -0
- data/app/views/auth/confirmations/enter_otp.html.erb +7 -0
- data/app/views/auth/confirmations/get_otp_status.html.erb +3 -0
- data/app/views/auth/confirmations/new.html.erb +1 -0
- data/app/views/auth/confirmations/new.js.erb +16 -0
- data/app/views/auth/confirmations/otp_status_result.html.erb +20 -0
- data/app/views/auth/mailer/confirmation_instructions.html.erb +5 -0
- data/app/views/auth/mailer/password_change.html.erb +3 -0
- data/app/views/auth/mailer/reset_password_instructions.html.erb +8 -0
- data/app/views/auth/mailer/unlock_instructions.html.erb +7 -0
- data/app/views/auth/modals/_ajax_error_modal.html.erb +3 -0
- data/app/views/auth/modals/_ajax_error_modal_content.html.erb +0 -0
- data/app/views/auth/modals/_edit_account_content.html.erb +68 -0
- data/app/views/auth/modals/_edit_account_success_content.html.erb +5 -0
- data/app/views/auth/modals/_error_notification.html.erb +8 -0
- data/app/views/auth/modals/_forgot_password_content.html.erb +18 -0
- data/app/views/auth/modals/_forgot_password_success_content.html.erb +8 -0
- data/app/views/auth/modals/_login_default_content.html.erb +3 -0
- data/app/views/auth/modals/_login_forms.html.erb +13 -0
- data/app/views/auth/modals/_login_navigation_options.html.erb +12 -0
- data/app/views/auth/modals/_new_otp_input.html.erb +28 -0
- data/app/views/auth/modals/_oauth_and_submit.html.erb +21 -0
- data/app/views/auth/modals/_recaptcha_tags.html.erb +4 -0
- data/app/views/auth/modals/_resend_confirmation_content.html.erb +17 -0
- data/app/views/auth/modals/_resend_confirmation_success_content.html.erb +8 -0
- data/app/views/auth/modals/_resend_otp.html.erb +23 -0
- data/app/views/auth/modals/_resource_errors.js.erb +24 -0
- data/app/views/auth/modals/_sign_in_inputs.html.erb +10 -0
- data/app/views/auth/modals/_sign_in_needed_modal.html.erb +3 -0
- data/app/views/auth/modals/_sign_in_success_content.html.erb +5 -0
- data/app/views/auth/modals/_sign_up_inputs.html.erb +9 -0
- data/app/views/auth/modals/_sign_up_success_content.html.erb +1 -0
- data/app/views/auth/modals/_sign_up_success_inactive_content.html.erb +2 -0
- data/app/views/auth/modals/_unlock_content.html.erb +17 -0
- data/app/views/auth/modals/_verify_otp.html.erb +1 -0
- data/app/views/auth/modals/base_modal/_base.html.erb +25 -0
- data/app/views/auth/modals/login.js.erb +120 -0
- data/app/views/auth/modals/unlock_success_content.html.erb +8 -0
- data/app/views/auth/notifier/_email.html.erb +3 -0
- data/app/views/auth/notifier/notification.html.erb +2 -0
- data/app/views/auth/notifier/notification.text.erb +1 -0
- data/app/views/auth/omniauth_callbacks/failure.html.erb +4 -0
- data/app/views/auth/passwords/create.js.erb +12 -0
- data/app/views/auth/passwords/edit.html.erb +25 -0
- data/app/views/auth/passwords/new.html.erb +16 -0
- data/app/views/auth/passwords/new.js.erb +19 -0
- data/app/views/auth/profiles/_proxy_resource.html.erb +5 -0
- data/app/views/auth/profiles/set_proxy_resource.js.erb +1 -0
- data/app/views/auth/profiles/show.html.erb +8 -0
- data/app/views/auth/registrations/create.js.erb +40 -0
- data/app/views/auth/registrations/edit.html.erb +2 -0
- data/app/views/auth/registrations/edit.js.erb +5 -0
- data/app/views/auth/registrations/new.html.erb +33 -0
- data/app/views/auth/registrations/update.js.erb +47 -0
- data/app/views/auth/search/_search_bar.html.erb +11 -0
- data/app/views/auth/search/_search_result.html.erb +7 -0
- data/app/views/auth/search/_search_results.html.erb +4 -0
- data/app/views/auth/search/authenticated_user_search.js.erb +45 -0
- data/app/views/auth/search/authenticated_user_search.json +7 -0
- data/app/views/auth/sessions/create.js.erb +5 -0
- data/app/views/auth/sessions/new.html.erb +4 -0
- data/app/views/auth/sessions/new.js.erb +20 -0
- data/app/views/auth/shared/_devise_error_messages.html.erb +9 -0
- data/app/views/auth/shared/_links.html.erb +25 -0
- data/app/views/auth/shared/_object_errors.html.erb +12 -0
- data/app/views/auth/shared/_proxy_resource.html.erb +18 -0
- data/app/views/auth/shopping/cart_items/_form.html.erb +34 -0
- data/app/views/auth/shopping/cart_items/_show_cart_items_collection.html.erb +31 -0
- data/app/views/auth/shopping/cart_items/create_multiple.html.erb +6 -0
- data/app/views/auth/shopping/cart_items/create_multiple.json.erb +9 -0
- data/app/views/auth/shopping/cart_items/edit.html.erb +6 -0
- data/app/views/auth/shopping/cart_items/index.html.erb +52 -0
- data/app/views/auth/shopping/cart_items/new.html.erb +5 -0
- data/app/views/auth/shopping/cart_items/show.html.erb +13 -0
- data/app/views/auth/shopping/carts/_form.html.erb +35 -0
- data/app/views/auth/shopping/carts/_payment_links.html.erb +27 -0
- data/app/views/auth/shopping/carts/_remove_cart_item.html.erb +11 -0
- data/app/views/auth/shopping/carts/_show_cart_balance_info.html.erb +35 -0
- data/app/views/auth/shopping/carts/edit.html.erb +6 -0
- data/app/views/auth/shopping/carts/index.html.erb +43 -0
- data/app/views/auth/shopping/carts/new.html.erb +5 -0
- data/app/views/auth/shopping/carts/show.html.erb +46 -0
- data/app/views/auth/shopping/discounts/_form.html.erb +18 -0
- data/app/views/auth/shopping/discounts/_form_for_create_multiple_cart_items.html.erb +17 -0
- data/app/views/auth/shopping/discounts/_show_pending_discount_request.html.erb +17 -0
- data/app/views/auth/shopping/discounts/destroy.html.erb +2 -0
- data/app/views/auth/shopping/discounts/edit.html.erb +29 -0
- data/app/views/auth/shopping/discounts/index.html.erb +40 -0
- data/app/views/auth/shopping/discounts/new.html.erb +1 -0
- data/app/views/auth/shopping/discounts/show.html.erb +18 -0
- data/app/views/auth/shopping/discounts/update.html.erb +2 -0
- data/app/views/auth/shopping/payments/_approve_payment.html.erb +7 -0
- data/app/views/auth/shopping/payments/_cash_card_cheque.html.erb +24 -0
- data/app/views/auth/shopping/payments/_create_discount_coupon.html.erb +5 -0
- data/app/views/auth/shopping/payments/_form.html.erb +19 -0
- data/app/views/auth/shopping/payments/_gateway.html.erb +21 -0
- data/app/views/auth/shopping/payments/_proceed_to_gateway_or_verify_payment.html.erb +18 -0
- data/app/views/auth/shopping/payments/_refresh_payment.html.erb +7 -0
- data/app/views/auth/shopping/payments/_refund.html.erb +10 -0
- data/app/views/auth/shopping/payments/_show_payment_receipt.html.erb +12 -0
- data/app/views/auth/shopping/payments/edit.html.erb +6 -0
- data/app/views/auth/shopping/payments/index.html.erb +43 -0
- data/app/views/auth/shopping/payments/new.html.erb +13 -0
- data/app/views/auth/shopping/payments/show.html.erb +36 -0
- data/app/views/auth/shopping/products/_form.html.erb +27 -0
- data/app/views/auth/shopping/products/edit.html.erb +6 -0
- data/app/views/auth/shopping/products/index.html.erb +48 -0
- data/app/views/auth/shopping/products/index.json.erb +7 -0
- data/app/views/auth/shopping/products/new.html.erb +5 -0
- data/app/views/auth/shopping/products/show.html.erb +12 -0
- data/app/views/auth/shopping/products/show.json.erb +1 -0
- data/app/views/auth/unlocks/create.js.erb +12 -0
- data/app/views/auth/unlocks/new.html.erb +14 -0
- data/app/views/auth/unlocks/new.js.erb +17 -0
- data/app/views/auth/users/_search_result.html.erb +8 -0
- data/app/views/auth/users/profiles/_user_data.html.erb +4 -0
- data/app/views/auth/users/profiles/show.html.erb +54 -0
- data/app/views/layouts/auth/_modals.html.erb +2 -0
- data/app/views/layouts/auth/application.html.erb +17 -0
- data/app/views/layouts/auth/navbar/_navbar.html.erb +49 -0
- data/app/views/layouts/auth/navbar/_personalization.html.erb +17 -0
- data/app/views/layouts/auth/navbar/_progress_spinner.html.erb +11 -0
- data/app/views/layouts/mailer.html.erb +5 -0
- data/app/views/layouts/mailer.text.erb +1 -0
- data/config/initializers/active_model.rb +36 -0
- data/config/initializers/devise.rb +623 -0
- data/config/initializers/json.rb +10 -0
- data/config/initializers/omniauth.rb +447 -0
- data/config/initializers/redis.rb +2 -0
- data/config/initializers/redis.yml +14 -0
- data/config/locales/devise.en.yml +63 -0
- data/config/routes.rb +1 -0
- data/lib/assets/javascripts/data.js +126 -0
- data/lib/assets/javascripts/jquery.calendario.js +394 -0
- data/lib/assets/javascripts/jquery.tagcloud.js +92 -0
- data/lib/assets/javascripts/leanModal.js +236 -0
- data/lib/assets/javascripts/main.js +668 -0
- data/lib/assets/javascripts/modernizr.custom.63321.js +4 -0
- data/lib/assets/javascripts/payumoney.js +9 -0
- data/lib/assets/javascripts/search.js +36 -0
- data/lib/assets/javascripts/spinner.js +77 -0
- data/lib/assets/javascripts/trianglify.min.js +2 -0
- data/lib/assets/javascripts/you_need_to_sign_in.js.erb +478 -0
- data/lib/assets/stylesheets/calendar.css +111 -0
- data/lib/assets/stylesheets/calendar_modifications.scss +276 -0
- data/lib/auth.rb +32 -0
- data/lib/auth/custom_failure.rb +3 -0
- data/lib/auth/engine.rb +231 -0
- data/lib/auth/job_exception_handler.rb +7 -0
- data/lib/auth/mailgun.rb +28 -0
- data/lib/auth/notify.rb +8 -0
- data/lib/auth/omniauth/path.rb +104 -0
- data/lib/auth/partials.rb +12 -0
- data/lib/auth/rails/routes.rb +169 -0
- data/lib/auth/search/main.rb +97 -0
- data/lib/auth/sidekiq_up.rb +16 -0
- data/lib/auth/two_factor_otp.rb +202 -0
- data/lib/auth/url_shortener.rb +29 -0
- data/lib/auth/version.rb +3 -0
- data/lib/tasks/auth_tasks.rake +4 -0
- metadata +863 -0
@@ -0,0 +1,23 @@
|
|
1
|
+
module Auth
|
2
|
+
class Identity
|
3
|
+
include Mongoid::Document
|
4
|
+
|
5
|
+
field :provider, type: String, default: ""
|
6
|
+
field :uid, type: String, default: ""
|
7
|
+
field :email, type:String, default: ""
|
8
|
+
field :access_token, type:String
|
9
|
+
field :token_expires_at, type:Integer
|
10
|
+
|
11
|
+
def has_provider?
|
12
|
+
return (self.provider != "")
|
13
|
+
end
|
14
|
+
|
15
|
+
def build_from_omnihash(omni_hash)
|
16
|
+
self.email,self.uid,self.provider,self.access_token,self.token_expires_at = omni_hash["info"]["email"],omni_hash["uid"],omni_hash["provider"],omni_hash["credentials"]["token"],omni_hash["credentials"]["expires_at"]
|
17
|
+
self
|
18
|
+
end
|
19
|
+
|
20
|
+
end
|
21
|
+
|
22
|
+
|
23
|
+
end
|
@@ -0,0 +1,46 @@
|
|
1
|
+
<!-- expects a local called "user", which refers to the user for which the admin is executing actions -->
|
2
|
+
|
3
|
+
<!-- -->
|
4
|
+
<% if user.additional_login_param && user.additional_login_param_status == 1 %>
|
5
|
+
<h4> Resend the SMS OTP To the User </h4>
|
6
|
+
|
7
|
+
<%= render :partial => "auth/confirmations/resend_sms_otp.html.erb", locals: {user: user} %>
|
8
|
+
|
9
|
+
<% end %>
|
10
|
+
|
11
|
+
<% if !user.confirmed? || user.pending_reconfirmation? %>
|
12
|
+
<h4> Resend the Confirmation Email to the User </h4>
|
13
|
+
<%= form_for(user, as: user.class.name.underscore, url: confirmation_path(user.class.name.underscore), html: { method: :post, id: "resend_confirmation_email_form"}) do |f| %>
|
14
|
+
<div class="form fields">
|
15
|
+
<div class="input_field">
|
16
|
+
<%= f.text_field :email, :value => user.email %>
|
17
|
+
</div>
|
18
|
+
<div class="input_field">
|
19
|
+
<%= f.label :email %>
|
20
|
+
</div>
|
21
|
+
</div>
|
22
|
+
<div class="submit">
|
23
|
+
<%= f.submit "RESEND CONFIRMATION EMAIL" %>
|
24
|
+
</div>
|
25
|
+
<% end %>
|
26
|
+
<% end %>
|
27
|
+
|
28
|
+
|
29
|
+
<!-- we are planning to call update profile -->
|
30
|
+
<h4> Resend the Reset Password Link to the User</h4>
|
31
|
+
|
32
|
+
<%= form_for(user, as: user.class.name.underscore, url: profile_path({:id => user.id.to_s}), html: { method: :put, id: "resend_reset_password_link_form"}) do |f| %>
|
33
|
+
<div class="form fields">
|
34
|
+
<%= hidden_field_tag("resource",user.class.name.downcase.pluralize) %>
|
35
|
+
<%= f.hidden_field(:created_by_admin,:value => true) %>
|
36
|
+
</div>
|
37
|
+
<div class="submit">
|
38
|
+
<%= f.submit "Send reset password instructions" %>
|
39
|
+
</div>
|
40
|
+
<% end %>
|
41
|
+
|
42
|
+
|
43
|
+
|
44
|
+
|
45
|
+
|
46
|
+
|
@@ -0,0 +1,19 @@
|
|
1
|
+
<%= form_for(@auth_user, url: @auth_user.new_record? ? admin_create_users_path : admin_create_user_path({:id => @auth_user.id.to_s}), method: @auth_user.new_record? ? :post : :put, namespace: @auth_user.id.to_s, as: :user) do |f| %>
|
2
|
+
<%= render :partial => "auth/shared/object_errors.html.erb", locals: {active_model_object: @auth_user} %>
|
3
|
+
<div id="form_fields">
|
4
|
+
<h3>Create A New User</h3>
|
5
|
+
<div class="divider"></div>
|
6
|
+
<!-- so here we have to provide for the email, mobile number, and whether they want to resend_sms_otp, or confirmation_email, for these two it can be a checkbox. -->
|
7
|
+
<%= f.text_field :email %>
|
8
|
+
<%= f.label :email %>
|
9
|
+
|
10
|
+
<%= f.text_field :additional_login_param %>
|
11
|
+
<%= f.label :additional_login_param %>
|
12
|
+
|
13
|
+
|
14
|
+
|
15
|
+
</div>
|
16
|
+
<div class="actions">
|
17
|
+
<%= f.submit %>
|
18
|
+
</div>
|
19
|
+
<% end %>
|
@@ -0,0 +1,25 @@
|
|
1
|
+
<p id="notice"><%= notice %></p>
|
2
|
+
|
3
|
+
<h1>Listing Auth Admin Create Users</h1>
|
4
|
+
|
5
|
+
<table>
|
6
|
+
<thead>
|
7
|
+
<tr>
|
8
|
+
<th colspan="3"></th>
|
9
|
+
</tr>
|
10
|
+
</thead>
|
11
|
+
|
12
|
+
<tbody>
|
13
|
+
<% @auth_admin_create_users.each do |auth_admin_create_user| %>
|
14
|
+
<tr>
|
15
|
+
<td><%= link_to 'Show', auth_admin_create_user %></td>
|
16
|
+
<td><%= link_to 'Edit', edit_auth_admin_create_user_path(auth_admin_create_user) %></td>
|
17
|
+
<td><%= link_to 'Destroy', auth_admin_create_user, method: :delete, data: { confirm: 'Are you sure?' } %></td>
|
18
|
+
</tr>
|
19
|
+
<% end %>
|
20
|
+
</tbody>
|
21
|
+
</table>
|
22
|
+
|
23
|
+
<br>
|
24
|
+
|
25
|
+
<%= link_to 'New Admin create user', new_auth_admin_create_user_path %>
|
@@ -0,0 +1,8 @@
|
|
1
|
+
<h4><%= flash[:notice] %></h4>
|
2
|
+
<%= render :partial => "auth/shared/object_errors.html.erb", locals: {active_model_object: @auth_user} %>
|
3
|
+
<!-- if the current signed in resource is admin -->
|
4
|
+
<!-- give options to resend sms otp, resend confirmation email, basically render the options partial from admin_create_users -->
|
5
|
+
<%= render :partial => "auth/admin_create_users/admin_actions.html.erb", locals: {user: @auth_user} %>
|
6
|
+
<!-- else -->
|
7
|
+
|
8
|
+
<!-- end -->
|
@@ -0,0 +1,41 @@
|
|
1
|
+
<%= form_for(@client) do |f| %>
|
2
|
+
<% if @client.errors.any? %>
|
3
|
+
<div id="error_explanation">
|
4
|
+
<h2><%= pluralize(@client.errors.count, "error") %> prohibited this client from being saved:</h2>
|
5
|
+
|
6
|
+
<ul>
|
7
|
+
<% @client.errors.full_messages.each do |message| %>
|
8
|
+
<li><%= message %></li>
|
9
|
+
<% end %>
|
10
|
+
</ul>
|
11
|
+
</div>
|
12
|
+
<% end %>
|
13
|
+
|
14
|
+
<h4>Redirect Urls</h4>
|
15
|
+
<% @client.redirect_urls.each do |i| %>
|
16
|
+
<%= i %>
|
17
|
+
<% end %>
|
18
|
+
|
19
|
+
|
20
|
+
<h5>Add Another Redirect Url</h5>
|
21
|
+
<!-- give option for one more redirect url to be added -->
|
22
|
+
<div class="field">
|
23
|
+
<%= f.text_field :add_redirect_url %>
|
24
|
+
<%= f.label :add_redirect_url %>
|
25
|
+
</div>
|
26
|
+
|
27
|
+
<h4>App Ids</h4>
|
28
|
+
<% @client.app_ids.each do |i| %>
|
29
|
+
<%= i %>
|
30
|
+
<% end %>
|
31
|
+
|
32
|
+
<h5>Add Another App Id</h5>
|
33
|
+
<div class="field">
|
34
|
+
<%= f.text_field :add_app_id %>
|
35
|
+
<%= f.label :add_app_id %>
|
36
|
+
</div>
|
37
|
+
|
38
|
+
<div class="actions">
|
39
|
+
<%= f.submit %>
|
40
|
+
</div>
|
41
|
+
<% end %>
|
@@ -0,0 +1,33 @@
|
|
1
|
+
<p id="notice"><%= notice %></p>
|
2
|
+
|
3
|
+
<h1>Listing Clients</h1>
|
4
|
+
|
5
|
+
<table>
|
6
|
+
<thead>
|
7
|
+
<tr>
|
8
|
+
<th>Api key</th>
|
9
|
+
<th>Path</th>
|
10
|
+
<th>Redirect urls</th>
|
11
|
+
<th>User</th>
|
12
|
+
<th colspan="3"></th>
|
13
|
+
</tr>
|
14
|
+
</thead>
|
15
|
+
|
16
|
+
<tbody>
|
17
|
+
<% @clients.each do |client| %>
|
18
|
+
<tr>
|
19
|
+
<td><%= client.api_key %></td>
|
20
|
+
<td><%= client.path %></td>
|
21
|
+
<td><%= client.redirect_urls %></td>
|
22
|
+
<td><%= client.user_id %></td>
|
23
|
+
<td><%= link_to 'Show', client %></td>
|
24
|
+
<td><%= link_to 'Edit', edit_client_path(client) %></td>
|
25
|
+
<td><%= link_to 'Destroy', client, method: :delete, data: { confirm: 'Are you sure?' } %></td>
|
26
|
+
</tr>
|
27
|
+
<% end %>
|
28
|
+
</tbody>
|
29
|
+
</table>
|
30
|
+
|
31
|
+
<br>
|
32
|
+
|
33
|
+
<%= link_to 'New Client', new_client_path %>
|
@@ -0,0 +1,21 @@
|
|
1
|
+
<p id="notice"><%= notice %></p>
|
2
|
+
|
3
|
+
<p>
|
4
|
+
<strong>Api key:</strong>
|
5
|
+
<%= @client.api_key %>
|
6
|
+
</p>
|
7
|
+
|
8
|
+
<p>
|
9
|
+
<strong>Path:</strong>
|
10
|
+
<%= @client.path %>
|
11
|
+
</p>
|
12
|
+
|
13
|
+
<p>
|
14
|
+
<strong>Redirect urls:</strong>
|
15
|
+
<%= @client.redirect_urls %>
|
16
|
+
</p>
|
17
|
+
|
18
|
+
|
19
|
+
|
20
|
+
<%= link_to 'Edit', edit_client_path(@client) %> |
|
21
|
+
<%= link_to 'Back', clients_path %>
|
@@ -0,0 +1,27 @@
|
|
1
|
+
<% if user.additional_login_param_status == 1 %>
|
2
|
+
<h3>Please enter the OTP received by the Customer</h3>
|
3
|
+
<% if defined?(intent) == nil %>
|
4
|
+
<% intent = "" %>
|
5
|
+
<% end %>
|
6
|
+
<%= form_for(user, as: user.class.name.underscore, url: verify_otp_url(user.class.name.underscore.downcase.pluralize,{:intent => intent}), :authenticity_token => true, method: "GET") do |f| %>
|
7
|
+
|
8
|
+
<%= f.text_field(:otp) %>
|
9
|
+
<%= f.label(:otp) %>
|
10
|
+
|
11
|
+
|
12
|
+
<%= f.hidden_field(:additional_login_param,:value => user.additional_login_param) %>
|
13
|
+
|
14
|
+
<%= f.hidden_field(:created_by_admin,:value => true) %>
|
15
|
+
|
16
|
+
|
17
|
+
<div style="text-align:center; padding-top:1.5rem; padding-bottom:1.5rem;" id="recaptcha_tags">
|
18
|
+
<% if Auth.configuration.recaptcha %>
|
19
|
+
<%= recaptcha_tags %>
|
20
|
+
<% end %>
|
21
|
+
</div>
|
22
|
+
|
23
|
+
<%= f.submit "Submit" %>
|
24
|
+
|
25
|
+
<% end %>
|
26
|
+
<!-- end -->
|
27
|
+
<% end %>
|
@@ -0,0 +1,25 @@
|
|
1
|
+
<h3>Click Submit to check if the OTP is verified.</h3>
|
2
|
+
<%= puts "resource attributs are: #{resource.attributes.to_s}" %>
|
3
|
+
<% if defined?(intent) == nil %>
|
4
|
+
<% intent = "" %>
|
5
|
+
<% end %>
|
6
|
+
<%= form_for(resource, as: resource.class.name.underscore, url: otp_verification_result_url(resource.class.name.underscore.downcase.pluralize,{:intent => intent}), :authenticity_token => true, method: "GET") do |f| %>
|
7
|
+
|
8
|
+
|
9
|
+
|
10
|
+
|
11
|
+
<%= f.hidden_field(:additional_login_param,:value => resource.additional_login_param) %>
|
12
|
+
|
13
|
+
|
14
|
+
<%= f.hidden_field(:otp,:value => resource.otp) %>
|
15
|
+
|
16
|
+
|
17
|
+
<div style="text-align:center; padding-top:1.5rem; padding-bottom:1.5rem;" id="recaptcha_tags">
|
18
|
+
<% if Auth.configuration.recaptcha %>
|
19
|
+
<%= recaptcha_tags %>
|
20
|
+
<% end %>
|
21
|
+
</div>
|
22
|
+
|
23
|
+
<%= f.submit "Submit" %>
|
24
|
+
|
25
|
+
<% end %>
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<%= render :partial => "auth/modals/resource_errors.js.erb", locals: {resource: resource} %>
|
2
|
+
<% if resource.errors.size == 0 %>
|
3
|
+
$("#login_content").html("<%= escape_javascript(render partial: Auth.configuration.auth_resources[resource.class.to_s.capitalize][:additional_login_param_new_otp_partial], locals: {resource: resource, intent: intent}) %>").show();
|
4
|
+
//$("#sign_up_inputs").hide();
|
5
|
+
$("#login_footer").html("<%= escape_javascript(render partial: 'auth/modals/login_navigation_options.html.erb', locals: {resource: resource}) %>").show();
|
6
|
+
$("#show_sign_up").hide();
|
7
|
+
$("#forgot_password").hide();
|
8
|
+
$("#resend_confirmation_email").hide();
|
9
|
+
open_sign_in_modal_if_closed();
|
10
|
+
<% end %>
|
11
|
+
|
@@ -0,0 +1,8 @@
|
|
1
|
+
//render the partial, and open the modal if it is closed
|
2
|
+
$("#login_content").html("<%= escape_javascript(render partial: Auth.configuration.auth_resources[resource.class.to_s.capitalize][:additional_login_param_resend_confirmation_message_partial], locals: {resource: resource, intent: intent}) %>").show();
|
3
|
+
//$("#sign_up_inputs").hide();
|
4
|
+
$("#login_footer").html("<%= escape_javascript(render partial: 'auth/modals/login_navigation_options.html.erb', locals: {resource: resource}) %>").show();
|
5
|
+
$("#show_sign_up").hide();
|
6
|
+
$("#forgot_password").hide();
|
7
|
+
$("#resend_confirmation_email").hide();
|
8
|
+
open_sign_in_modal_if_closed();
|
@@ -0,0 +1,18 @@
|
|
1
|
+
<% if defined?(intent) == nil %>
|
2
|
+
<% intent = "" %>
|
3
|
+
<% end %>
|
4
|
+
<%= form_for(user, as: user.class.name.underscore, url: send_sms_otp_url(user.class.name.underscore.downcase.pluralize,{:intent => intent}), :authenticity_token => true, method: "GET") do |f| %>
|
5
|
+
|
6
|
+
<%= f.text_field(:additional_login_param) %>
|
7
|
+
<%= f.label(:additional_login_param) %>
|
8
|
+
|
9
|
+
|
10
|
+
<div style="text-align:center; padding-top:1.5rem; padding-bottom:1.5rem;" id="recaptcha_tags">
|
11
|
+
<% if Auth.configuration.recaptcha %>
|
12
|
+
<%= recaptcha_tags %>
|
13
|
+
<% end %>
|
14
|
+
</div>
|
15
|
+
|
16
|
+
<%= f.submit "Submit" %>
|
17
|
+
|
18
|
+
<% end %>
|
@@ -0,0 +1,64 @@
|
|
1
|
+
<%= render :partial => "auth/modals/resource_errors.js.erb", locals: {resource: resource} %>
|
2
|
+
<% if resource.errors.size == 0 %>
|
3
|
+
$("#login_content").html("<%= escape_javascript(render partial: Auth.configuration.auth_resources[resource.class.to_s.capitalize][:additional_login_param_verification_result_partial]) %>");
|
4
|
+
|
5
|
+
var verified = "<%= resource.additional_login_param_confirmed? %>";
|
6
|
+
|
7
|
+
(function poll(counter){
|
8
|
+
setTimeout(function(){
|
9
|
+
$.ajax({
|
10
|
+
beforeSend:function(){
|
11
|
+
//check if verified is true?
|
12
|
+
|
13
|
+
|
14
|
+
},
|
15
|
+
data: {"<%= resource.class.name.downcase.underscore.to_s %>" : {additional_login_param : "<%= resource.additional_login_param.to_s %>", otp: "<%= otp %>"}, intent: "<%= (defined?(intent) != nil) ? intent : "" %>"},
|
16
|
+
url: "<%= Auth.configuration.mount_path %>/<%= resource.class.name.downcase.pluralize.to_s %>/otp_verification_result",
|
17
|
+
error: function(){
|
18
|
+
// clear the verify otp result message.
|
19
|
+
$("#verify_otp_result").html("");
|
20
|
+
//errors are not handled here, because spinner.js
|
21
|
+
//catches any non 200/201 status and interprets it as an error
|
22
|
+
//thereafter directly show_error_modal is called.
|
23
|
+
//i could have written logic specific for otp_verification_result, by checking if it is there in the request_url, but did not do so, because otp is not always going to be in the engine, so otp should not be hardcoded anywhere.
|
24
|
+
//the error lands up being shown inside show_error_modal, by means of json parsing the incoming string, and showing json[:errors] as the error message.
|
25
|
+
},
|
26
|
+
success: function(data){
|
27
|
+
if(counter == null){
|
28
|
+
counter = 0;
|
29
|
+
}
|
30
|
+
counter++;
|
31
|
+
if(data["verified"] == true){
|
32
|
+
|
33
|
+
// in case of unlock or forgot password.
|
34
|
+
if(data["intent_verification_message"] != null){
|
35
|
+
$("#verify_otp_result").html(data["intent_verification_message"]);
|
36
|
+
}
|
37
|
+
// in case of normal sign up procedure.
|
38
|
+
else{
|
39
|
+
$("#verify_otp_result").html("Your account was successfully verified. Sign In to continue");
|
40
|
+
}
|
41
|
+
/***
|
42
|
+
hide the additional login param block if its additional_login_param value is the same as whatever is this resource's.
|
43
|
+
***/
|
44
|
+
var confirmed_additional_login_param = "<%= resource.additional_login_param %>";
|
45
|
+
if(confirmed_additional_login_param == $("#additional_login_param_resend_block").attr("data-additional-login-param")){
|
46
|
+
$("#additional_login_param_resend_block").hide();
|
47
|
+
}
|
48
|
+
|
49
|
+
}
|
50
|
+
else{
|
51
|
+
|
52
|
+
if(counter < 10){
|
53
|
+
poll(counter);
|
54
|
+
}
|
55
|
+
|
56
|
+
|
57
|
+
}
|
58
|
+
},
|
59
|
+
dataType: "json"
|
60
|
+
});
|
61
|
+
}, 3000);
|
62
|
+
})();
|
63
|
+
|
64
|
+
<% end %>
|