egov_utils 0.6.4 → 0.7.1

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: 15c9bb03cd2bb748b5d32a2ff051bd1083028d19f4c69c65637112722b871bcf
4
- data.tar.gz: c160099429bee03754890907732dce50704f0430cb3bebcb2b3912f64d03a0ce
3
+ metadata.gz: d0fb4d51f6f37b8c70952049ec7570dec41ad52272155c457f24a3326223319b
4
+ data.tar.gz: b689068162ba29eed688e46a44ebb92286634187854c29aa73d1e898f53abc69
5
5
  SHA512:
6
- metadata.gz: 3833e1edb4557b8d67b3c102f3861c86f965ae9530f04af2ea37b654a13cc88b67f2f8a195675e243c46ea5e785765e58449a1c8e4f60466ddc0e139eb531de2
7
- data.tar.gz: 2c678e87567ac4ee0a774463a0f92ccb93c973c380675db3b8400e0519eaa9a3923943ed5fce5dbef597d55e771759aaeac842fb8b332f1eef9227035a751d77
6
+ metadata.gz: c58af4cd7c8f02e87536fb5b5f0b347b4d03ddfc326a93c8e705627b3631d064206fc0fccef02e72f45b40f6679f6de048c36044230273a9964aead64f441ec5
7
+ data.tar.gz: ed7a4cc54856c518f91b35791974700f3485af6210899a7c940e7eb75114800a4f3104368ba4db650646ac8fd73d6a51817902430c2dc9fe0c7d900f399fa7fb
@@ -4,9 +4,9 @@ require_dependency "egov_utils/auth_source"
4
4
  module EgovUtils
5
5
  class UsersController < ApplicationController
6
6
 
7
- skip_before_action :require_login, only: [:new, :create, :confirm]
7
+ skip_before_action :require_login, only: [:new, :create, :confirm, :edit, :update]
8
8
 
9
- load_and_authorize_resource only: [:index, :new, :create, :show, :destroy]
9
+ load_and_authorize_resource only: [:index, :new, :create, :show, :destroy, :edit, :update]
10
10
 
11
11
  def index
12
12
  providers
@@ -46,6 +46,15 @@ module EgovUtils
46
46
  def show
47
47
  end
48
48
 
49
+ def edit
50
+ end
51
+
52
+ def update
53
+ @user.update(update_params)
54
+
55
+ redirect_to users_path, notice: t('activerecord.successful.messages.updated', model: User.model_name.human)
56
+ end
57
+
49
58
  def destroy
50
59
  @user.destroy
51
60
  redirect_to users_path, notice: t('activerecord.successful.messages.destroyed', model: User.model_name.human)
@@ -92,5 +101,9 @@ module EgovUtils
92
101
  params_to_permit << :generate_password if current_user.logged?
93
102
  params.require(:user).permit(*params_to_permit)
94
103
  end
104
+
105
+ def update_params
106
+ params.require(:user).permit(:days_before_inactive)
107
+ end
95
108
  end
96
109
  end
@@ -63,7 +63,16 @@ module EgovUtils
63
63
  end
64
64
  end
65
65
  end
66
- user.update_column(:last_login_at, Time.now) if user && !user.new_record? && user.active?
66
+
67
+ if user && !user.new_record?
68
+ # Check last login
69
+ if user.days_before_inactive && user.last_login_at < (Time.now - user.days_before_inactive.days)
70
+ user.update_column(active: false)
71
+ end
72
+
73
+ user.update_column(:last_login_at, Time.now) if user.active?
74
+ end
75
+
67
76
  user
68
77
  end
69
78
 
@@ -98,25 +98,27 @@ $ ->
98
98
  <% schema.columns.each do |col| %>
99
99
  <%= raw column_for_grid(grid, col) %>
100
100
  <% end %>
101
- <% if can?(:update, schema.model) || (local_assigns.fetch(:allow_delete, false) && can?(:destroy, schema.model)) %>
102
- {
103
- width: 150
104
- title: "<%= t('label_actions') %>"
105
- buttons: [
106
- <% if can?(:read, schema.model) %>
107
- <% local_assigns.fetch(:downloads, {}).each do |format, label| %>
108
- { cls: 'btn btn-sm btn-secondary <%= "download-button-#{format}" %>', caption: '<%= label %>', click: prepareDownload('<%= format %>') },
101
+ <% unless local_assigns.fetch(:disable_actions, false) %>
102
+ <% if can?(:update, schema.model) || (local_assigns.fetch(:allow_delete, false) && can?(:destroy, schema.model)) %>
103
+ {
104
+ width: 150
105
+ title: "<%= t('label_actions') %>"
106
+ buttons: [
107
+ <% if can?(:read, schema.model) %>
108
+ <% local_assigns.fetch(:downloads, {}).each do |format, label| %>
109
+ { cls: 'btn btn-sm btn-secondary <%= "download-button-#{format}" %>', caption: '<%= label %>', click: prepareDownload('<%= format %>') },
110
+ <% end %>
109
111
  <% end %>
110
- <% end %>
111
- <% if can?(:update, schema.model) %>
112
- {cls: 'btn btn-sm btn-primary', caption: '<%= t('label_edit') %>', click: editRecord},
113
- <% end %>
114
- <%= additional_grid_edit_buttons(schema) %>
115
- <% if local_assigns.fetch(:allow_delete, false) && can?(:destroy, schema.model) %>
116
- {commandName: 'delete', caption: '<%= t('label_delete') %>'}
117
- <% end %>
118
- ]
119
- }
112
+ <% if can?(:update, schema.model) %>
113
+ {cls: 'btn btn-sm btn-primary', caption: '<%= t('label_edit') %>', click: editRecord},
114
+ <% end %>
115
+ <%= additional_grid_edit_buttons(schema) %>
116
+ <% if local_assigns.fetch(:allow_delete, false) && can?(:destroy, schema.model) %>
117
+ {commandName: 'delete', caption: '<%= t('label_delete') %>'}
118
+ <% end %>
119
+ ]
120
+ }
121
+ <% end %>
120
122
  <% end %>
121
123
  ],
122
124
  sorting:
@@ -23,6 +23,8 @@
23
23
  = button_to(t('label_delete'), user_path(user), method: :delete, class: 'btn btn-warning btn-sm')
24
24
  - if can?(:manage, user) && user.password_change_possible?
25
25
  = link_to(t('label_change_password'), new_password_path(user), class: 'btn btn-secondary btn-sm')
26
+ - if can?(:edit, user)
27
+ = link_to(t('label_edit'), edit_user_path(user), class: 'btn btn-secondary btn-sm')
26
28
  - unless user.active?
27
29
  = button_to(t('label_approve'), approve_user_path(user), class: 'btn btn-primary btn-sm')
28
30
 
@@ -0,0 +1,4 @@
1
+ = bootstrap_form_for(@user) do |f|
2
+ = f.text_field :days_before_inactive
3
+ .form-actions
4
+ = f.submit
@@ -90,6 +90,7 @@ cs:
90
90
 
91
91
  model_attributes: &my_attributes
92
92
  egov_utils/user:
93
+ days_before_inactive: Počet dní od posledního přihlášení před deaktivací
93
94
  login: Přihlašovací email
94
95
  mail: E-mail
95
96
  password_confirmation: Potvrzení hesla
@@ -137,6 +138,7 @@ cs:
137
138
 
138
139
  model_help_messages: &my_help_messages
139
140
  egov_utils/user:
141
+ days_before_inactive: Pokud ponecháte pole prázdné, uživatelský účet nebude expirovat.
140
142
  generate_password: Heslo bude vygenerováno a posláno uživateli na e-mail, při prvním přihlášení bude heslo muset změnit.
141
143
 
142
144
 
@@ -154,6 +156,8 @@ cs:
154
156
  mail: E-mailová adresa
155
157
 
156
158
  submits: &my_submits
159
+ user:
160
+ update: Aktualizovat uživatele
157
161
  password_change:
158
162
  submit: Změnit heslo
159
163
 
@@ -0,0 +1,5 @@
1
+ class AddDaysBeforeInactiveToEgovUtilsUsers < ActiveRecord::Migration[6.1]
2
+ def change
3
+ add_column :egov_utils_users, :days_before_inactive, :integer, default: 365
4
+ end
5
+ end
@@ -1,3 +1,3 @@
1
1
  module EgovUtils
2
- VERSION = '0.6.4'
2
+ VERSION = '0.7.1'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: egov_utils
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.4
4
+ version: 0.7.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ondřej Ezr
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-12-09 00:00:00.000000000 Z
11
+ date: 2022-04-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -581,6 +581,7 @@ files:
581
581
  - app/views/egov_utils/users/_form.html.haml
582
582
  - app/views/egov_utils/users/_ldap_search.html.haml
583
583
  - app/views/egov_utils/users/_users_tab.html.haml
584
+ - app/views/egov_utils/users/edit.html.haml
584
585
  - app/views/egov_utils/users/index.html.haml
585
586
  - app/views/egov_utils/users/new.html.haml
586
587
  - app/views/egov_utils/users/show.html.haml
@@ -613,6 +614,7 @@ files:
613
614
  - db/migrate/20180403141531_join_people_tables.rb
614
615
  - db/migrate/20180403150556_create_egov_utils_legal_people.rb
615
616
  - db/migrate/20180424143207_add_titles_to_natural_people.rb
617
+ - db/migrate/20220331113917_add_days_before_inactive_to_egov_utils_users.rb
616
618
  - lib/azahara_schema_currency.rb
617
619
  - lib/azahara_schema_currency/aggregation_attribute_patch.rb
618
620
  - lib/azahara_schema_currency/association_attribute_patch.rb