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,13 @@
|
|
1
|
+
<h1>New Auth Shopping Payment</h1>
|
2
|
+
|
3
|
+
<% if @auth_shopping_payment.refund.nil? || @auth_shopping_payment.refund == false %>
|
4
|
+
<% if @auth_shopping_payment.is_gateway? %>
|
5
|
+
<%= render :partial => "gateway.html.erb" %>
|
6
|
+
<% else %>
|
7
|
+
<%= render :partial => "cash_card_cheque.html.erb" %>
|
8
|
+
<% end %>
|
9
|
+
<% else %>
|
10
|
+
<%= render :partial => "refund.html.erb" %>
|
11
|
+
<% end %>
|
12
|
+
|
13
|
+
<%= link_to 'Back', payments_path %>
|
@@ -0,0 +1,36 @@
|
|
1
|
+
<p id="notice"><%= notice %></p>
|
2
|
+
|
3
|
+
<% @auth_shopping_payment.attributes_to_show.each do |k,v| %>
|
4
|
+
<div>
|
5
|
+
<span><%= k.to_s + ":" %></span><span><%= @auth_shopping_payment.send("#{k}") %></span>
|
6
|
+
</div>
|
7
|
+
<% end %>
|
8
|
+
|
9
|
+
<!-- should show the cash change if and only if -->
|
10
|
+
<% if @auth_shopping_payment.is_cash? && current_signed_in_resource.is_admin? %>
|
11
|
+
<span>Change To Give the Customer is: </span>
|
12
|
+
<%= @auth_shopping_payment.cash_change %>
|
13
|
+
<% end %>
|
14
|
+
|
15
|
+
|
16
|
+
<%= render :partial => "proceed_to_gateway_or_verify_payment.html.erb" %>
|
17
|
+
|
18
|
+
|
19
|
+
|
20
|
+
|
21
|
+
|
22
|
+
<% if current_signed_in_resource.is_admin? %>
|
23
|
+
<!-- provide the option to approve the payment -->
|
24
|
+
<%= render :partial => "approve_payment.html.erb" %>
|
25
|
+
<% end %>
|
26
|
+
|
27
|
+
|
28
|
+
<%= render :partial => "show_payment_receipt.html.erb" %>
|
29
|
+
|
30
|
+
<%= render :partial => "create_discount_coupon.html.erb" %>
|
31
|
+
|
32
|
+
|
33
|
+
|
34
|
+
|
35
|
+
<%= link_to 'Edit', edit_payment_path(@auth_shopping_payment) %> |
|
36
|
+
<%= link_to 'Back', payments_path %>
|
@@ -0,0 +1,27 @@
|
|
1
|
+
<%= form_for(@auth_shopping_product, url: @auth_shopping_product.new_record? ? products_path : product_path(@auth_shopping_product), method: @auth_shopping_product.new_record? ? :post : :put) do |f| %>
|
2
|
+
<% if @auth_shopping_product.errors.any? %>
|
3
|
+
<div id="error_explanation">
|
4
|
+
<h2><%= pluralize(@auth_shopping_product.errors.count, "error") %> prohibited this auth_shopping_product from being saved:</h2>
|
5
|
+
|
6
|
+
<ul>
|
7
|
+
<% @auth_shopping_product.errors.full_messages.each do |message| %>
|
8
|
+
<li><%= message %></li>
|
9
|
+
<% end %>
|
10
|
+
</ul>
|
11
|
+
</div>
|
12
|
+
<% end %>
|
13
|
+
<div class="form_fields">
|
14
|
+
<% @auth_shopping_product.class.attribute_names.keep_if{|c| !@auth_shopping_product.field_names_to_skip_while_making_form.include? c.to_s}.each do |attr| %>
|
15
|
+
<%=
|
16
|
+
text_field :product, attr.to_sym , :value => @auth_shopping_product.send("#{attr}")
|
17
|
+
%>
|
18
|
+
<%=
|
19
|
+
label :product, attr.to_sym
|
20
|
+
%>
|
21
|
+
|
22
|
+
<% end %>
|
23
|
+
</div>
|
24
|
+
<div class="actions">
|
25
|
+
<%= f.submit %>
|
26
|
+
</div>
|
27
|
+
<% end %>
|
@@ -0,0 +1,48 @@
|
|
1
|
+
<p id="notice"><%= notice %></p>
|
2
|
+
|
3
|
+
<h1>Listing Auth Shopping Products</h1>
|
4
|
+
|
5
|
+
<table>
|
6
|
+
<thead>
|
7
|
+
<tr>
|
8
|
+
<!-- id number, this will also hold links to edit and destroy. -->
|
9
|
+
<th>Number</th>
|
10
|
+
<th>Id Number</th>
|
11
|
+
<!-- get the names of the other fields to be shown-->
|
12
|
+
<% @auth_shopping_products.first.attributes_to_show.each do |attr| %>
|
13
|
+
<th><%= attr %></th>
|
14
|
+
<% end %>
|
15
|
+
</tr>
|
16
|
+
</thead>
|
17
|
+
|
18
|
+
<tbody>
|
19
|
+
<% @auth_shopping_products.each_with_index {|auth_shopping_product,key| %>
|
20
|
+
<tr>
|
21
|
+
<td><%= key + 1 %></td>
|
22
|
+
<td>
|
23
|
+
<div>
|
24
|
+
<%= link_to auth_shopping_product.id.to_s, product_path(auth_shopping_product) %>
|
25
|
+
</div>
|
26
|
+
<div>
|
27
|
+
<!-- add destory and edit options here -->
|
28
|
+
<!-- end -->
|
29
|
+
<span><%= link_to 'Edit', edit_product_path(auth_shopping_product) %></span>
|
30
|
+
<span><%= link_to 'Destroy', product_path(auth_shopping_product), method: :delete, data: { confirm: 'Are you sure?' } %></span>
|
31
|
+
<!-- here how to show a button, and how to change the form id's so that it uses the object id, -->
|
32
|
+
<span>
|
33
|
+
<% @auth_shopping_cart_item = create_cart_item_from_product(auth_shopping_product) %>
|
34
|
+
<%= render :partial => "auth/shopping/cart_items/form.html.erb", locals:{show_fields: "no"} %>
|
35
|
+
</span>
|
36
|
+
</div>
|
37
|
+
</td>
|
38
|
+
<% @auth_shopping_products.first.attributes_to_show.each do |attr| %>
|
39
|
+
<td><%= auth_shopping_product.send("#{attr}") %></td>
|
40
|
+
<% end %>
|
41
|
+
</tr>
|
42
|
+
<% } %>
|
43
|
+
</tbody>
|
44
|
+
</table>
|
45
|
+
|
46
|
+
<br>
|
47
|
+
|
48
|
+
<%= link_to 'New Product', new_product_path %>
|
@@ -0,0 +1,12 @@
|
|
1
|
+
<p id="notice"><%= notice %></p>
|
2
|
+
<div class="fields">
|
3
|
+
|
4
|
+
<% @auth_shopping_product.attributes_to_show.each do |attr| %>
|
5
|
+
|
6
|
+
|
7
|
+
<div><%= @auth_shopping_product.send("#{attr}") %></div>
|
8
|
+
|
9
|
+
<% end %>
|
10
|
+
</div>
|
11
|
+
<%= link_to 'Edit', edit_product_path(@auth_shopping_product) %> |
|
12
|
+
<%= link_to 'Back', products_path %>
|
@@ -0,0 +1 @@
|
|
1
|
+
<%= @auth_shopping_product.to_json.html_safe %>
|
@@ -0,0 +1,12 @@
|
|
1
|
+
<% if resource.errors.size > 0 %>
|
2
|
+
<% resource.errors.each do |attrib,message| %>
|
3
|
+
var resource_name = "<%= resource.class.name.underscore %>";
|
4
|
+
var field_id = resource_name + "_" + "<%= attrib %>";
|
5
|
+
invalidate_input_field(field_id,"<%= message.html_safe %>");
|
6
|
+
<% end %>
|
7
|
+
<% else %>
|
8
|
+
$("#login_title").hide();
|
9
|
+
$("#login_content").html("<%= escape_javascript(render partial:'auth/modals/unlock_success_content.html.erb', locals: {resource: resource}) %>").show();
|
10
|
+
$("#login_footer").hide();
|
11
|
+
<% end %>
|
12
|
+
open_sign_in_modal_if_closed();
|
@@ -0,0 +1,14 @@
|
|
1
|
+
<h2>Resend unlock instructions</h2>
|
2
|
+
|
3
|
+
<%= form_for(resource, as: resource_name, url: unlock_path(resource_name), html: { method: :post }) do |f| %>
|
4
|
+
<%= devise_error_messages! %>
|
5
|
+
|
6
|
+
<div class="field">
|
7
|
+
<%= f.label :email %><br />
|
8
|
+
<%= f.email_field :email, autofocus: true %>
|
9
|
+
</div>
|
10
|
+
|
11
|
+
<div class="actions">
|
12
|
+
<%= f.submit "Resend unlock instructions" %>
|
13
|
+
</div>
|
14
|
+
<% end %>
|
@@ -0,0 +1,17 @@
|
|
1
|
+
$("#login_title").show().html("Unlock Your Account");
|
2
|
+
$("#login_content").html("<%= escape_javascript(render partial:'auth/modals/unlock_content.html.erb', locals: {resource: resource}) %>").show();
|
3
|
+
$("#login_footer").html("<%= escape_javascript(render partial: 'auth/modals/login_navigation_options.html.erb', locals: {resource: resource}) %>").show();
|
4
|
+
toggle_oauth();
|
5
|
+
toggle_sign_up_text("Sign In or Sign Up");
|
6
|
+
$("#show_sign_up").show();
|
7
|
+
$("#forgot_password").hide();
|
8
|
+
$("#resend_confirmation_email").hide();
|
9
|
+
//remove the remote from the user_email validation settings, if it is ther.
|
10
|
+
try{
|
11
|
+
var validator = new WJ_Validator(val_settings("email"),"materialize",true);
|
12
|
+
}
|
13
|
+
catch(err){
|
14
|
+
console.log(err);
|
15
|
+
}
|
16
|
+
open_sign_in_modal_if_closed();
|
17
|
+
|
@@ -0,0 +1,8 @@
|
|
1
|
+
<div class="card">
|
2
|
+
<div>Email: <%= result.email %> </div>
|
3
|
+
<div>Mobile: <%= result.additional_login_param %> </div>
|
4
|
+
<% if current_signed_in_resource.is_admin? %>
|
5
|
+
<%= link_to "Set As Current User", main_app.set_proxy_resource_profiles_path(:resource => result.class.name.downcase.pluralize, :id => result.id.to_s), :remote => true, :method => :post %>
|
6
|
+
<%= link_to "See User Options", main_app.profile_path(:resource => result.class.name.downcase.pluralize, :id => result.id.to_s) %>
|
7
|
+
<% end %>
|
8
|
+
</div>
|
@@ -0,0 +1,54 @@
|
|
1
|
+
<%= render :partial => 'auth/users/profiles/user_data.html.erb', locals: {:resource => @resource} %>
|
2
|
+
<div class="teal left" style="border-radius:10px;width:48%;box-shadow: 0 3px 2px rgba(0, 0, 0, 0.3); ">
|
3
|
+
<div class="row m-0-bottom p-0-bottom center p-30-right p-30-left" style="padding-left:40px; padding-right:40px; padding-top:10px; padding-bottom:0px; border-radius:5px;">
|
4
|
+
<div class="col l12 m12 s12">
|
5
|
+
<div class="row">
|
6
|
+
<img src="/assets/auth/profile.jpg" class="shadow"/>
|
7
|
+
|
8
|
+
<div class="row m-20-top">
|
9
|
+
<div class="white teal-text center fw-400" style="padding: 9px 5px 9px 5px; border:2px solid white; border-radius:5px; width:70%; margin-left:15%;">
|
10
|
+
<span>Aditya Kanabar</span>
|
11
|
+
</div>
|
12
|
+
</div>
|
13
|
+
|
14
|
+
<div class="row m-20-top">
|
15
|
+
<div class="white teal-text center fw-400" style="padding: 9px 5px 9px 5px; border:2px solid white;border-radius:5px;width:70%; margin-left:15%;">
|
16
|
+
<span>Social Entrepreneur, Founder Weebly.com</span>
|
17
|
+
</div>
|
18
|
+
</div>
|
19
|
+
<div class="row m-20-top fw-400" style="width:70%; margin-left:15%;">
|
20
|
+
<div class="white teal-text left" style="padding: 9px 5px 9px 5px; border:2px solid white; border-right-color: #009688; border-top-left-radius: 5px; border-bottom-left-radius: 5px; width:50%;">
|
21
|
+
|
22
|
+
232 Followers
|
23
|
+
</div>
|
24
|
+
<div class="white teal-text left" style="padding: 9px 5px 9px 5px; border:2px solid white;border-top-right-radius: 5px; border-bottom-right-radius: 5px; width:50%;">
|
25
|
+
|
26
|
+
2.1k Following
|
27
|
+
</div>
|
28
|
+
</div>
|
29
|
+
<div class="row m-20-top center m-0-bottom">
|
30
|
+
<a class="btn-floating btn-large waves-effect waves-light white lighten-2"><i class="material-icons teal-text">add</i></a>
|
31
|
+
<div class="white-text fw-400 fs-12 m-5-top">
|
32
|
+
Follow
|
33
|
+
</div>
|
34
|
+
</div>
|
35
|
+
</div>
|
36
|
+
</div>
|
37
|
+
</div>
|
38
|
+
</div>
|
39
|
+
<div class="left" style="border-radius:5px; width:48%; margin-left:2%; border:2px solid white;box-shadow: 0 3px 2px rgba(0, 0, 0, 0.3);">
|
40
|
+
<div class="custom-calendar-wrap">
|
41
|
+
<div id="custom-inner" class="custom-inner">
|
42
|
+
<div class="custom-header clearfix">
|
43
|
+
<div>
|
44
|
+
<span id="custom-prev" class="custom-prev"></span>
|
45
|
+
<span id="custom-next" class="custom-next"></span>
|
46
|
+
</div>
|
47
|
+
<h2 id="custom-month" class="custom-month"></h2>
|
48
|
+
<h3 id="custom-year" class="custom-year"></h3>
|
49
|
+
</div>
|
50
|
+
<div id="calendar" class="fc-calendar-container"></div>
|
51
|
+
</div>
|
52
|
+
</div>
|
53
|
+
</div>
|
54
|
+
<!-- <div id="get_activities" style="cursor:pointer;">get_activities</div> -->
|
@@ -0,0 +1,17 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>Hi Bitch</title>
|
5
|
+
<%= stylesheet_link_tag "auth/application", media: "all" %>
|
6
|
+
<%= stylesheet_link_tag "https://fonts.googleapis.com/icon?family=Material+Icons", media: "all" %>
|
7
|
+
<%= javascript_include_tag "auth/application" %>
|
8
|
+
<%= csrf_meta_tags %>
|
9
|
+
</head>
|
10
|
+
<body>
|
11
|
+
<%= render :partial => "layouts/auth/navbar/navbar.html.erb" %>
|
12
|
+
<div class="container">
|
13
|
+
<%= yield %>
|
14
|
+
</div>
|
15
|
+
<%= render :partial => "layouts/auth/modals.html.erb" %>
|
16
|
+
</body>
|
17
|
+
</html>
|
@@ -0,0 +1,49 @@
|
|
1
|
+
<div class="row">
|
2
|
+
<div class="navbar-fixed">
|
3
|
+
<nav class="teal">
|
4
|
+
<div class="nav-wrapper">
|
5
|
+
<!-- should yield a nav-bar-left if it is there, otherwise take the below thing -->
|
6
|
+
<% if content_for?(:navbar_left) %>
|
7
|
+
<%= content_for(:navbar_left) %>
|
8
|
+
<% else %>
|
9
|
+
<a href="/" class="brand-logo"><%= Auth.configuration.brand_name %></a>
|
10
|
+
<%= render :partial => 'layouts/auth/navbar/progress_spinner.html.erb' %>
|
11
|
+
<% end %>
|
12
|
+
|
13
|
+
<!-- search bar -->
|
14
|
+
|
15
|
+
<!-- end search bar -->
|
16
|
+
|
17
|
+
<% if content_for?(:navbar_right) %>
|
18
|
+
<%= content_for(:navbar_right) %>
|
19
|
+
<% else %>
|
20
|
+
<ul class="right hide-on-med-and-down">
|
21
|
+
<span id="personalization">
|
22
|
+
<%= render :partial => "layouts/auth/navbar/personalization.html.erb" %>
|
23
|
+
</span>
|
24
|
+
</ul>
|
25
|
+
<% end %>
|
26
|
+
</div>
|
27
|
+
</nav>
|
28
|
+
</div>
|
29
|
+
<% if content_for?(:proxy_user) %>
|
30
|
+
|
31
|
+
<% else %>
|
32
|
+
<div id="proxy_user"></div>
|
33
|
+
<% end %>
|
34
|
+
</div>
|
35
|
+
|
36
|
+
|
37
|
+
|
38
|
+
<% if content_for?(:search_bar) %>
|
39
|
+
|
40
|
+
<% else %>
|
41
|
+
<%= render :partial => "auth/search/search_bar.html.erb" %>
|
42
|
+
<% end %>
|
43
|
+
|
44
|
+
<% if content_for?(:search_results) %>
|
45
|
+
|
46
|
+
<% else %>
|
47
|
+
<%= render :partial => "auth/search/search_results.html.erb" %>
|
48
|
+
<% end %>
|
49
|
+
|
@@ -0,0 +1,17 @@
|
|
1
|
+
<% if current_res && resource_in_navbar?(current_res)%>
|
2
|
+
<span id="personalization_nav_links">
|
3
|
+
<%= content_for(:personalization_nav_links) if content_for?(:personalization_nav_links) %>
|
4
|
+
</span>
|
5
|
+
<li data-resource-singular="<%= current_res.class.name.downcase %>" data-resource="<%= Auth.configuration.mount_path[1..-1] + "/" +current_res.class.name.downcase.pluralize %>"><%= link_to "Account Settings", edit_res_registration_path,:class => "profile_nav_option" %></li>
|
6
|
+
<li data-resource-singular="<%= current_res.class.name.downcase %>" data-resource="<%= Auth.configuration.mount_path[1..-1] + "/" +current_res.class.name.downcase.pluralize %>"><%= link_to "Profile", profile_path(current_res.id),{:class => "profile_nav_option"} %></li>
|
7
|
+
<li><%= link_to('Sign Out', destroy_res_session_path, :method => :delete, id: "sign_out") %></li>
|
8
|
+
<% else %>
|
9
|
+
<% if Auth.configuration.enable_sign_in_modals %>
|
10
|
+
<% Auth.configuration.auth_resources.keys.each do |res| %>
|
11
|
+
<% if Auth.configuration.auth_resources[res][:nav_bar] %>
|
12
|
+
<li class="sign_in_nav_option" data-resource-singular="<%=res.downcase %>" data-resource="<%= Auth.configuration.mount_path[1..-1] + "/" + res.downcase.pluralize %>"><a href="#">Sign In</a></li>
|
13
|
+
<% end %>
|
14
|
+
<% end %>
|
15
|
+
<% end %>
|
16
|
+
<% end %>
|
17
|
+
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<div class="preloader-wrapper small active m-5-left" style="vertical-align:middle; height:18px; width:18px; display:none;" id="progress_circle">
|
2
|
+
<div class="spinner-layer spinner-white-only">
|
3
|
+
<div class="circle-clipper left">
|
4
|
+
<div class="circle"></div>
|
5
|
+
</div><div class="gap-patch">
|
6
|
+
<div class="circle"></div>
|
7
|
+
</div><div class="circle-clipper right">
|
8
|
+
<div class="circle"></div>
|
9
|
+
</div>
|
10
|
+
</div>
|
11
|
+
</div>
|
@@ -0,0 +1 @@
|
|
1
|
+
<%= yield %>
|
@@ -0,0 +1,36 @@
|
|
1
|
+
module ActiveModel
|
2
|
+
module Validations
|
3
|
+
UrlValidator.class_eval do
|
4
|
+
def validate_each(record, attribute, value)
|
5
|
+
url = nil
|
6
|
+
uri = nil
|
7
|
+
if value.is_a? Array
|
8
|
+
value.each do |v|
|
9
|
+
begin
|
10
|
+
url = ensure_protocol(v)
|
11
|
+
uri = Addressable::URI.parse(url)
|
12
|
+
rescue
|
13
|
+
invalid = true
|
14
|
+
end
|
15
|
+
end
|
16
|
+
else
|
17
|
+
begin
|
18
|
+
url = ensure_protocol(value[0])
|
19
|
+
uri = Addressable::URI.parse(url)
|
20
|
+
rescue
|
21
|
+
invalid = true
|
22
|
+
end
|
23
|
+
end
|
24
|
+
|
25
|
+
|
26
|
+
|
27
|
+
unless !invalid && valid_scheme?(uri.scheme) && valid_host?(uri.host) && valid_path?(uri.path)
|
28
|
+
record.errors[attribute] << ( "#{value.to_s} contains invalid URLS")
|
29
|
+
end
|
30
|
+
|
31
|
+
|
32
|
+
end
|
33
|
+
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|