configurable_engine 2.0.2 → 3.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/app/controllers/configurable_engine/application_controller.rb +3 -1
- data/app/controllers/configurable_engine/configurables_controller.rb +2 -0
- data/app/models/configurable.rb +46 -42
- data/config/routes.rb +3 -1
- data/lib/configurable_engine/configurables_controller_methods.rb +10 -8
- data/lib/configurable_engine/engine.rb +3 -1
- data/lib/configurable_engine/version.rb +3 -1
- data/lib/configurable_engine.rb +2 -0
- data/lib/generators/configurable_engine/install_generator.rb +11 -10
- data/lib/generators/configurable_engine/templates/migration.rb +3 -1
- metadata +16 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 283cf61227a97ab17df548eced982e91abac7fc66d8c14e69814376772d466cf
|
4
|
+
data.tar.gz: d39aaf3799d5be3f7ea5f652a6b66c546e9ab9d3b78ae0221429574c9b6215cd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e545213eecab5c9d38d076ccbfcf23b7ff40e02b1f70b712521e50be7932d72a513173ee22211e92a046186fd95d5207c80bcff63fb94f3cfa799981c49342bf
|
7
|
+
data.tar.gz: c866f492aa4c716e0b17f658fcc3a7c259455d6b765049af2fcbcfd975daab3e2e2781633035abda509d5b811d23dad6e8968ac1059e4116a51334fb0bf5461d
|
data/CHANGELOG.md
CHANGED
data/app/models/configurable.rb
CHANGED
@@ -1,14 +1,12 @@
|
|
1
|
-
|
2
|
-
serialize :value
|
1
|
+
# frozen_string_literal: true
|
3
2
|
|
3
|
+
class Configurable < ActiveRecord::Base
|
4
4
|
after_save :invalidate_cache, if: -> { ConfigurableEngine::Engine.config.use_cache }
|
5
5
|
after_destroy :invalidate_cache, if: -> { ConfigurableEngine::Engine.config.use_cache }
|
6
6
|
|
7
|
-
|
8
|
-
validates_uniqueness_of :name
|
7
|
+
validates :name, presence: true, uniqueness: { case_sensitive: true }
|
9
8
|
|
10
9
|
validate :type_of_value
|
11
|
-
before_save :serialize_value
|
12
10
|
|
13
11
|
def self.defaults
|
14
12
|
@defaults ||= HashWithIndifferentAccess.new(
|
@@ -19,7 +17,7 @@ class Configurable < ActiveRecord::Base
|
|
19
17
|
end
|
20
18
|
|
21
19
|
def self.keys
|
22
|
-
|
20
|
+
defaults.collect { |k, _v| k.to_s }.sort
|
23
21
|
end
|
24
22
|
|
25
23
|
def self.[]=(key, value)
|
@@ -27,7 +25,10 @@ class Configurable < ActiveRecord::Base
|
|
27
25
|
if exisiting
|
28
26
|
exisiting.update_attribute(:value, value)
|
29
27
|
else
|
30
|
-
create
|
28
|
+
create do |c|
|
29
|
+
c.name = key.to_s
|
30
|
+
c.value = Configurable.value_for_serialization key, value
|
31
|
+
end
|
31
32
|
end
|
32
33
|
end
|
33
34
|
|
@@ -38,23 +39,21 @@ class Configurable < ActiveRecord::Base
|
|
38
39
|
def self.[](key)
|
39
40
|
return parse_value key, defaults[key][:default] unless table_exists?
|
40
41
|
|
41
|
-
value
|
42
|
-
|
42
|
+
value = false
|
43
|
+
found = false
|
44
|
+
database_finder = lambda do
|
43
45
|
config = find_by_name(key)
|
44
|
-
found =
|
46
|
+
found = !config.nil?
|
45
47
|
value = config.try(:value)
|
46
48
|
end
|
47
49
|
|
48
|
-
|
49
50
|
if ConfigurableEngine::Engine.config.use_cache
|
50
51
|
found = Rails.cache.exist?(cache_key(key))
|
51
52
|
if found
|
52
53
|
value = Rails.cache.fetch(cache_key(key))
|
53
54
|
else
|
54
55
|
database_finder.call
|
55
|
-
if found
|
56
|
-
Rails.cache.write cache_key(key), value
|
57
|
-
end
|
56
|
+
Rails.cache.write cache_key(key), value if found
|
58
57
|
end
|
59
58
|
else
|
60
59
|
database_finder.call
|
@@ -64,9 +63,7 @@ class Configurable < ActiveRecord::Base
|
|
64
63
|
value
|
65
64
|
else
|
66
65
|
parse_value(key, defaults[key][:default]).tap do |val|
|
67
|
-
if ConfigurableEngine::Engine.config.use_cache
|
68
|
-
Rails.cache.write cache_key(key), val
|
69
|
-
end
|
66
|
+
Rails.cache.write cache_key(key), val if ConfigurableEngine::Engine.config.use_cache
|
70
67
|
end
|
71
68
|
end
|
72
69
|
end
|
@@ -75,10 +72,10 @@ class Configurable < ActiveRecord::Base
|
|
75
72
|
self.class.parse_value name, super
|
76
73
|
end
|
77
74
|
|
78
|
-
def self.parse_value
|
75
|
+
def self.parse_value(key, value)
|
79
76
|
case defaults[key][:type]
|
80
77
|
when 'boolean'
|
81
|
-
[true, 1,
|
78
|
+
[true, 1, '1', 't', 'true'].include?(value)
|
82
79
|
when 'decimal'
|
83
80
|
value ||= 0
|
84
81
|
BigDecimal(value.to_s)
|
@@ -94,32 +91,30 @@ class Configurable < ActiveRecord::Base
|
|
94
91
|
when 'date'
|
95
92
|
if value.is_a? Date
|
96
93
|
value
|
97
|
-
|
98
|
-
|
94
|
+
elsif value.present?
|
95
|
+
Date.parse(value)
|
99
96
|
end
|
100
97
|
else
|
101
98
|
value
|
102
99
|
end
|
103
100
|
end
|
104
101
|
|
105
|
-
def self.serialized_value
|
102
|
+
def self.serialized_value(key)
|
106
103
|
value_for_serialization key, self[key]
|
107
104
|
end
|
108
105
|
|
109
106
|
def self.value_for_serialization(key, value)
|
110
107
|
if defaults[key][:type] == 'list' && value.is_a?(Array)
|
111
|
-
if value.all? {|entry| entry.is_a? Array}
|
112
|
-
value = value.collect {|entry| entry.join ','}
|
113
|
-
end
|
108
|
+
value = value.collect { |entry| entry.join ',' } if value.all? { |entry| entry.is_a? Array }
|
114
109
|
value.join("\n")
|
115
110
|
else
|
116
111
|
value.to_s
|
117
|
-
end.gsub("\r\n","\n")
|
112
|
+
end.gsub("\r\n", "\n")
|
118
113
|
end
|
119
114
|
|
120
115
|
def self.method_missing(name, *args)
|
121
116
|
name_stripped = name.to_s.sub(/[\?=]$/, '')
|
122
|
-
if
|
117
|
+
if keys.include?(name_stripped)
|
123
118
|
if name.to_s.end_with?('=')
|
124
119
|
self[name_stripped] = args.first
|
125
120
|
else
|
@@ -134,21 +129,30 @@ class Configurable < ActiveRecord::Base
|
|
134
129
|
|
135
130
|
def type_of_value
|
136
131
|
return unless name
|
132
|
+
|
137
133
|
valid = case Configurable.defaults[name][:type]
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
134
|
+
when 'boolean'
|
135
|
+
[true, 1, '1', 'true', false, 0, '0', 'false'].include?(value)
|
136
|
+
when 'decimal'
|
137
|
+
begin
|
138
|
+
BigDecimal(value)
|
139
|
+
rescue StandardError
|
140
|
+
false
|
141
|
+
end
|
142
|
+
when 'integer'
|
143
|
+
begin
|
144
|
+
Integer(value)
|
145
|
+
rescue StandardError
|
146
|
+
false
|
147
|
+
end
|
148
|
+
when 'list'
|
149
|
+
value.is_a?(Array)
|
150
|
+
when 'date'
|
151
|
+
value.is_a?(Date)
|
152
|
+
else
|
153
|
+
true
|
154
|
+
end
|
155
|
+
errors.add(:value, I18n.t('activerecord.errors.messages.invalid')) unless valid
|
152
156
|
end
|
153
157
|
|
154
158
|
def serialize_value
|
@@ -156,6 +160,6 @@ class Configurable < ActiveRecord::Base
|
|
156
160
|
end
|
157
161
|
|
158
162
|
def invalidate_cache
|
159
|
-
Rails.cache.delete(Configurable.cache_key
|
163
|
+
Rails.cache.delete(Configurable.cache_key(name))
|
160
164
|
end
|
161
165
|
end
|
data/config/routes.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
module ConfigurableEngine
|
2
4
|
module ConfigurablesControllerMethods
|
3
5
|
def show
|
@@ -7,16 +9,16 @@ module ConfigurableEngine
|
|
7
9
|
|
8
10
|
def update
|
9
11
|
failures = Configurable
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
12
|
+
.keys.map do |key|
|
13
|
+
Configurable.find_by_name(key) ||
|
14
|
+
Configurable.create { |c| c.name = key }
|
15
|
+
end.reject do |configurable|
|
16
|
+
configurable.value = params[configurable.name]
|
17
|
+
configurable.save
|
18
|
+
end
|
17
19
|
|
18
20
|
if failures.empty?
|
19
|
-
redirect_to(action: :show, :
|
21
|
+
redirect_to(action: :show, notice: 'Changes successfully updated')
|
20
22
|
else
|
21
23
|
flash[:error] = failures.flat_map(&:errors).flat_map(&:full_messages).join(',')
|
22
24
|
redirect_to(action: :show)
|
data/lib/configurable_engine.rb
CHANGED
@@ -1,21 +1,22 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
require 'rails/generators'
|
2
4
|
module ConfigurableEngine
|
3
|
-
class InstallGenerator < Rails::Generators::Base
|
4
|
-
|
5
|
-
|
5
|
+
class InstallGenerator < Rails::Generators::Base
|
6
|
+
include Rails::Generators::Migration
|
6
7
|
|
7
|
-
|
8
|
+
def self.source_root
|
8
9
|
@source_root ||= File.join(File.dirname(__FILE__), 'templates')
|
9
|
-
|
10
|
-
|
11
|
-
|
10
|
+
end
|
11
|
+
|
12
|
+
def self.next_migration_number(dirname)
|
12
13
|
if ActiveRecord::Base.timestamped_migrations
|
13
|
-
Time.now.utc.strftime(
|
14
|
+
Time.now.utc.strftime('%Y%m%d%H%M%S')
|
14
15
|
else
|
15
|
-
|
16
|
+
format('%.3d', (current_migration_number(dirname) + 1))
|
16
17
|
end
|
17
18
|
end
|
18
|
-
|
19
|
+
|
19
20
|
def create_migration_file
|
20
21
|
copy_file 'configurable.yml', 'config/configurable.yml'
|
21
22
|
migration_template 'migration.rb', 'db/migrate/create_configurables.rb'
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
class CreateConfigurables < ActiveRecord::Migration[5.2]
|
2
4
|
def self.up
|
3
5
|
create_table :configurables do |t|
|
@@ -6,7 +8,7 @@ class CreateConfigurables < ActiveRecord::Migration[5.2]
|
|
6
8
|
|
7
9
|
t.timestamps
|
8
10
|
end
|
9
|
-
|
11
|
+
|
10
12
|
add_index :configurables, :name
|
11
13
|
end
|
12
14
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: configurable_engine
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 3.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Paul Campbell
|
@@ -9,22 +9,28 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 1980-01-01 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rails
|
16
16
|
requirement: !ruby/object:Gem::Requirement
|
17
17
|
requirements:
|
18
|
-
- - "
|
18
|
+
- - ">="
|
19
19
|
- !ruby/object:Gem::Version
|
20
|
-
version:
|
20
|
+
version: 7.0.0
|
21
|
+
- - "<"
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: 8.0.0
|
21
24
|
type: :runtime
|
22
25
|
prerelease: false
|
23
26
|
version_requirements: !ruby/object:Gem::Requirement
|
24
27
|
requirements:
|
25
|
-
- - "
|
28
|
+
- - ">="
|
29
|
+
- !ruby/object:Gem::Version
|
30
|
+
version: 7.0.0
|
31
|
+
- - "<"
|
26
32
|
- !ruby/object:Gem::Version
|
27
|
-
version:
|
33
|
+
version: 8.0.0
|
28
34
|
description: 'Configurable is a Rails 4 engine that allows you to set up config variables
|
29
35
|
in a config file, specifying default values for all environmentspec. These variables
|
30
36
|
can then be set on a per-app basis using a user facing configuration screen. '
|
@@ -54,7 +60,8 @@ files:
|
|
54
60
|
homepage: http://github.com/paulca/configurable_engine
|
55
61
|
licenses:
|
56
62
|
- MIT
|
57
|
-
metadata:
|
63
|
+
metadata:
|
64
|
+
rubygems_mfa_required: 'true'
|
58
65
|
post_install_message:
|
59
66
|
rdoc_options: []
|
60
67
|
require_paths:
|
@@ -70,8 +77,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
70
77
|
- !ruby/object:Gem::Version
|
71
78
|
version: '0'
|
72
79
|
requirements: []
|
73
|
-
rubygems_version: 3.
|
80
|
+
rubygems_version: 3.5.22
|
74
81
|
signing_key:
|
75
82
|
specification_version: 4
|
76
|
-
summary: Database-backed configuration for Rails
|
83
|
+
summary: Database-backed configuration for Rails 7, with defaults from config file.
|
77
84
|
test_files: []
|