sudo_rails 0.5.0 → 0.6.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c66a5cac3194830858e3456856ddd5d25124e6309496d7766860789ff790204d
4
- data.tar.gz: 53306beab517248b4aa56d75aaaec2dd446d3db934d761c08b0b5a1749d91c8b
3
+ metadata.gz: cde0b8c08400028fee437eac2352ebfeb2676209ef14fc55ce1da3f407a10072
4
+ data.tar.gz: 5d150b96bc25cc3366d2d498a4883a3e0a75c56b80b400b35f985791eb27aca4
5
5
  SHA512:
6
- metadata.gz: e0ced3873a7a304d4d00133d9b799898165e77cf4e35328541cadf17d5206e8993cc38f31f8387c52feab276f5be5c88f060b329e91bd39c114189427b8714f6
7
- data.tar.gz: dcb5c808819fd2c954c5913254749bf1408f93e122b73997ca3221c071ca75604ab7c02d9c4e1892cbfe37b4e28959d80c065bbefe816655777f7cac152bf6cf
6
+ metadata.gz: 4b7fd91b40ad9d1659943ad5ebcb2a160462aa1bc019d1c332a7f36bf82cd7ea404336523c14e4b40d0ee6d6efafb61433407e6d6160e653da40a4673e13d9b0
7
+ data.tar.gz: f16c2166aea71899e9b7c8f051ee991e9bbe1e17a18366b16db48b55f029f4a76124f5bccbdf4d02626a4526f8f7d620a5bdced0370caaff5e27383567d10181
data/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright 2019 Marc Anguera Insa @markets
1
+ Copyright 2019-2020 Marc Anguera Insa @markets
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining
4
4
  a copy of this software and associated documentation files (the
data/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # Sudo Rails
2
2
 
3
3
  [![Gem](https://img.shields.io/gem/v/sudo_rails.svg?style=flat-square)](https://rubygems.org/gems/sudo_rails)
4
- [![Build Status](https://travis-ci.org/markets/sudo_rails.svg)](https://travis-ci.org/markets/sudo_rails)
4
+ [![Build Status](https://travis-ci.com/markets/sudo_rails.svg?branch=master)](https://travis-ci.com/markets/sudo_rails)
5
5
  [![Maintainability](https://api.codeclimate.com/v1/badges/322350adc7ab052beccb/maintainability)](https://codeclimate.com/github/markets/sudo_rails/maintainability)
6
6
 
7
7
  > Sudo mode for your Rails controllers
@@ -83,6 +83,8 @@ Using the `custom_logo`, `primary_color` and `background_color` options, you can
83
83
 
84
84
  See some [examples here](support/images/).
85
85
 
86
+ **NOTE** If you are using your own layout, don't forget to render the flash messages in that layout. You can do something like [this](app/views/sudo_rails/_flash_alert.html.erb).
87
+
86
88
  ### Confirmation strategy
87
89
 
88
90
  You should define how to validate the password using the `confirm_strategy` option. It must be a `lambda`, which will receive 2 arguments: the controller instance (`context`) and the password from the user.
@@ -2,7 +2,7 @@ body {
2
2
  text-align: center;
3
3
  font-family: Helvetica, Arial, sans-serif;
4
4
  background-color: #ececec;
5
- transform: translateY(20%);
5
+ margin: 0 auto;
6
6
  }
7
7
 
8
8
  a {
@@ -13,6 +13,10 @@ input {
13
13
  -webkit-appearance: none;
14
14
  }
15
15
 
16
+ .sudo-container {
17
+ transform: translateY(25%);
18
+ }
19
+
16
20
  .sudo-header {
17
21
  margin: 2em auto;
18
22
 
@@ -54,4 +58,11 @@ input {
54
58
  .sudo-tip {
55
59
  margin-top: 2em;
56
60
  font-size: 14px;
57
- }
61
+ }
62
+
63
+ .sudo-alert {
64
+ background: #000;
65
+ color: #fff;
66
+ padding: 10px;
67
+ font-weight: bold;
68
+ }
@@ -3,8 +3,10 @@ module SudoRails
3
3
  before_action :sudo_enabled?
4
4
 
5
5
  def confirm
6
- if request.post? && SudoRails.confirm?(self, params[:password])
6
+ if SudoRails.confirm?(self, params[:password])
7
7
  session[:sudo_session] = Time.zone.now.to_s
8
+ else
9
+ flash[:alert] = I18n.t('sudo_rails.invalid_pass')
8
10
  end
9
11
 
10
12
  redirect_to params[:target_path]
@@ -7,6 +7,9 @@
7
7
  <%= render 'sudo_rails/inject_custom_styles' if SudoRails.custom_styles? %>
8
8
  </head>
9
9
  <body>
10
- <%= yield %>
10
+ <%= render 'sudo_rails/flash_alert' %>
11
+ <div class="sudo-container">
12
+ <%= yield %>
13
+ </div>
11
14
  </body>
12
15
  </html>
@@ -0,0 +1,5 @@
1
+ <% if flash[:alert].present? %>
2
+ <div class="sudo-alert">
3
+ <span><%= flash[:alert] %></span>
4
+ </div>
5
+ <% end %>
@@ -4,6 +4,11 @@
4
4
  background-color: <%= SudoRails.background_color %>;
5
5
  color: <%= SudoRails.color_contrast(SudoRails.background_color) %>;
6
6
  }
7
+
8
+ .sudo-alert {
9
+ background-color: <%= SudoRails.color_contrast(SudoRails.background_color) %>;
10
+ color: <%= SudoRails.background_color %>;
11
+ }
7
12
  <% end %>
8
13
 
9
14
  <% if SudoRails.primary_color.present? %>
@@ -16,4 +21,4 @@
16
21
  color: <%= SudoRails.color_contrast(SudoRails.primary_color) %>;
17
22
  }
18
23
  <% end %>
19
- </style>
24
+ </style>
@@ -4,6 +4,7 @@ en:
4
4
  button: Confirm password
5
5
  password: Password
6
6
  forgot_pass: Forgot your password?
7
+ invalid_pass: Invalid password
7
8
  tip: |-
8
9
  You are entering <b>sudo mode</b>.<br>
9
10
  We won’t ask for your password again for <i>%{session_duration}</i>.
@@ -10,7 +10,7 @@ module SudoRails
10
10
 
11
11
  initializer 'sudo_rails.routes' do |app|
12
12
  app.routes.append do
13
- match '/sudo_rails/confirm' => 'sudo_rails/application#confirm', via: [:get, :post]
13
+ post '/sudo_rails/confirm' => 'sudo_rails/application#confirm'
14
14
  end
15
15
  end
16
16
 
@@ -1,3 +1,3 @@
1
1
  module SudoRails
2
- VERSION = "0.5.0"
2
+ VERSION = "0.6.0"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sudo_rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - markets
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-07-17 00:00:00.000000000 Z
11
+ date: 2020-12-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -65,6 +65,7 @@ files:
65
65
  - app/assets/stylesheets/sudo_rails/application.scss
66
66
  - app/controllers/sudo_rails/application_controller.rb
67
67
  - app/views/layouts/sudo_rails/application.html.erb
68
+ - app/views/sudo_rails/_flash_alert.html.erb
68
69
  - app/views/sudo_rails/_inject_custom_styles.html.erb
69
70
  - app/views/sudo_rails/confirm_form.html.erb
70
71
  - config/locales/en.yml
@@ -94,8 +95,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
94
95
  - !ruby/object:Gem::Version
95
96
  version: '0'
96
97
  requirements: []
97
- rubyforge_project:
98
- rubygems_version: 2.7.6
98
+ rubygems_version: 3.0.3
99
99
  signing_key:
100
100
  specification_version: 4
101
101
  summary: Sudo mode for Rails