tiny-redis 0.0.6 → 0.0.11

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 296d4a807a3c3b5e48431861ee59db71ab270deb37010204277a7bd6935d3417
4
- data.tar.gz: b8df4e1e70c27b9c3e16855f6aed442c382fe08f01151de7167bb6ac136bd417
3
+ metadata.gz: 8c236e078a3ad9d288d914e7d5fc619e96f4433cef270f98b855a2386fcf5d36
4
+ data.tar.gz: 9338b6fe43cb44d45fcedc9a467dcc084c20c54cf5725db638fc1d9b7e40dace
5
5
  SHA512:
6
- metadata.gz: 58e6454be3bd2c63fc2044e9b28a1ced1612eef0f23126936b95e0228a667c8860b50fa12a667125dfa8b69663e70f5b24c7d48d8df8ede8d52a7d57ac40ef88
7
- data.tar.gz: 7b0a4758ced66d46eae7a477b10aceb582f54afc2716bca057aadf61c64f65c8cc9ed44800ec881e165aaddd2356a6f64149c6212430b783993a51f44a9cb4b8
6
+ metadata.gz: 645f66c4ef3977ba17641e754df5b073b626a0e619343a0fac6375dd80effc93d2e4e424b6e6307dc05de018f4a9976783a33a54cd96755212b4297ec86663a0
7
+ data.tar.gz: c477d52f392bf03bbbdf36fe06bb9e8219bfd89151a53995232c7de5da1c452741f1e1ec18db32ab8658785300d5f491a5ad5c48103d9543df226b8f5d8660a7
@@ -0,0 +1,20 @@
1
+ Copyright 2020 Pavel Zaitsev
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,39 @@
1
+ ### tiny-redis
2
+
3
+ Tiny Redis - encrypted barebones JSON formatted orm.
4
+ Encryption is Rails Credentials based.
5
+
6
+ Steps to use:
7
+ ```
8
+ add to Gemfile:
9
+ gem 'tiny-redis'
10
+
11
+ bundle install
12
+
13
+ rails g tiny_redis
14
+
15
+ this will install initalizer that creates a pool of redis connections
16
+ ```
17
+
18
+ ## How to use
19
+
20
+ ```
21
+ class User
22
+ include Tiny::Redis
23
+
24
+ attr_accessor :email
25
+ alias_method :index, :email # this will tie your records method to indexing parameter
26
+ end
27
+ ```
28
+ Set up credentials:
29
+ ```
30
+ rails credentials:edit --environment development
31
+
32
+ add:
33
+ user:
34
+ encryptkey: abcdabcdabcdadbvabcdabcdabcdadbv
35
+ ```
36
+
37
+ Now your records in redis are encrypted. If you wish for more security you can remove config/master.key after server starts. And investigate SE Linux address space protection so hacker can't pry encryption key from the app so easily.
38
+
39
+ Have fun! 🎉
@@ -0,0 +1,27 @@
1
+ begin
2
+ require 'bundler/setup'
3
+ rescue LoadError
4
+ puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
5
+ end
6
+
7
+ require 'rdoc/task'
8
+
9
+ RDoc::Task.new(:rdoc) do |rdoc|
10
+ rdoc.rdoc_dir = 'rdoc'
11
+ rdoc.title = 'Tiny::Redis'
12
+ rdoc.options << '--line-numbers'
13
+ rdoc.rdoc_files.include('README.md')
14
+ rdoc.rdoc_files.include('lib/**/*.rb')
15
+ end
16
+
17
+ require 'bundler/gem_tasks'
18
+
19
+ require 'rake/testtask'
20
+
21
+ Rake::TestTask.new(:test) do |t|
22
+ t.libs << 'test'
23
+ t.pattern = 'test/**/*_test.rb'
24
+ t.verbose = false
25
+ end
26
+
27
+ task default: :test
@@ -0,0 +1,4 @@
1
+ # desc "Explaining what the task does"
2
+ # task :tiny_redis do
3
+ # # Task goes here
4
+ # end
@@ -0,0 +1,53 @@
1
+ require "tiny/redis/railtie"
2
+ require 'redis'
3
+ require 'connection_pool'
4
+
5
+ module Tiny
6
+ module Redis
7
+
8
+ def self.included(klass)
9
+ klass.extend(ClassMethods)
10
+ end
11
+
12
+ def save(filter)
13
+ key, crypt = self.class.setup(index)
14
+
15
+ $redis.with do |r|
16
+ r.set(key, crypt.encrypt_and_sign(self.to_json(except: filter)))
17
+ end
18
+ end
19
+
20
+ module ClassMethods
21
+ def load(index)
22
+ key, crypt = setup(index)
23
+
24
+ $redis.with do |r|
25
+ encrypted = r.get(key)
26
+ return nil if encrypted.nil?
27
+ JSON.parse(crypt.decrypt_and_verify(encrypted), object_class: self)
28
+ end
29
+ end
30
+
31
+ def setup(index)
32
+ key = Digest::SHA1.hexdigest(index)
33
+ encrypt_key = Rails.application.credentials.user[:encryptkey]
34
+ crypt = ActiveSupport::MessageEncryptor.new(encrypt_key)
35
+ return [key, crypt]
36
+ end
37
+ end
38
+
39
+ attr_accessor :errors
40
+ def initialize(params = {})
41
+ @errors = ActiveModel::Errors.new(self)
42
+
43
+ params.present? && params.each do |k,v|
44
+ self[k] = v
45
+ end
46
+ end
47
+
48
+ def []=(key, value)
49
+ return if key == 'errors' # PATCH if error sneaks in, ruins whole validation process
50
+ send("#{key}=", value)
51
+ end
52
+ end
53
+ end
@@ -0,0 +1,6 @@
1
+ module Tiny
2
+ module Redis
3
+ class Railtie < ::Rails::Railtie
4
+ end
5
+ end
6
+ end
@@ -0,0 +1,5 @@
1
+ module Tiny
2
+ module Redis
3
+ VERSION = '0.0.11'
4
+ end
5
+ end
metadata CHANGED
@@ -1,69 +1,81 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tiny-redis
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.6
4
+ version: 0.0.11
5
5
  platform: ruby
6
6
  authors:
7
7
  - Pavel Zaitsev
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-07-25 00:00:00.000000000 Z
11
+ date: 2020-07-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
- name: activemodel
14
+ name: rails
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '6.0'
19
+ version: 6.0.3
20
+ - - ">="
21
+ - !ruby/object:Gem::Version
22
+ version: 6.0.3.2
20
23
  type: :runtime
21
24
  prerelease: false
22
25
  version_requirements: !ruby/object:Gem::Requirement
23
26
  requirements:
24
27
  - - "~>"
25
28
  - !ruby/object:Gem::Version
26
- version: '6.0'
29
+ version: 6.0.3
30
+ - - ">="
31
+ - !ruby/object:Gem::Version
32
+ version: 6.0.3.2
27
33
  - !ruby/object:Gem::Dependency
28
- name: connection_pool
34
+ name: redis
29
35
  requirement: !ruby/object:Gem::Requirement
30
36
  requirements:
31
37
  - - "~>"
32
38
  - !ruby/object:Gem::Version
33
- version: 2.2.3
39
+ version: '4.2'
34
40
  type: :runtime
35
41
  prerelease: false
36
42
  version_requirements: !ruby/object:Gem::Requirement
37
43
  requirements:
38
44
  - - "~>"
39
45
  - !ruby/object:Gem::Version
40
- version: 2.2.3
46
+ version: '4.2'
41
47
  - !ruby/object:Gem::Dependency
42
- name: redis
48
+ name: connection_pool
43
49
  requirement: !ruby/object:Gem::Requirement
44
50
  requirements:
45
51
  - - "~>"
46
52
  - !ruby/object:Gem::Version
47
- version: '4.2'
53
+ version: 2.2.3
48
54
  type: :runtime
49
55
  prerelease: false
50
56
  version_requirements: !ruby/object:Gem::Requirement
51
57
  requirements:
52
58
  - - "~>"
53
59
  - !ruby/object:Gem::Version
54
- version: '4.2'
55
- description: tiny opinionated ORM for model objects, encryption provided.
56
- email: pavel@arslogi.ca
60
+ version: 2.2.3
61
+ description: Encrypted Redis ORM for rails, active record style
62
+ email:
63
+ - pavel@arslogi.ca
57
64
  executables: []
58
65
  extensions: []
59
66
  extra_rdoc_files: []
60
67
  files:
61
- - lib/tiny-redis.rb
62
- homepage: http://blog.arslogi.ca/tiny-redis
68
+ - MIT-LICENSE
69
+ - README.md
70
+ - Rakefile
71
+ - lib/tasks/tiny/redis_tasks.rake
72
+ - lib/tiny/redis.rb
73
+ - lib/tiny/redis/railtie.rb
74
+ - lib/tiny/redis/version.rb
75
+ homepage: https://blog.arslogi.ca/
63
76
  licenses:
64
77
  - MIT
65
- metadata:
66
- source_code_uri: https://github.com/pavelz/tiny-redis
78
+ metadata: {}
67
79
  post_install_message:
68
80
  rdoc_options: []
69
81
  require_paths:
@@ -82,5 +94,5 @@ requirements: []
82
94
  rubygems_version: 3.0.6
83
95
  signing_key:
84
96
  specification_version: 4
85
- summary: tiny redis encrypted orm
97
+ summary: encrypted redis orm
86
98
  test_files: []
@@ -1,50 +0,0 @@
1
- require 'connection_pool'
2
- require 'redis'
3
-
4
- module TinyRedis
5
- def self.included(klass)
6
- klass.extend(ClassMethods)
7
- end
8
-
9
- def save(filter)
10
- key, crypt = self.class.setup(index)
11
-
12
- $redis.with do |r|
13
- r.set(key, crypt.encrypt_and_sign(self.to_json(except: filter)))
14
- end
15
- end
16
-
17
- module ClassMethods
18
- def load(index)
19
- key, crypt = setup(index)
20
-
21
- $redis.with do |r|
22
- encrypted = r.get(key)
23
- return nil if encrypted.nil?
24
- JSON.parse(crypt.decrypt_and_verify(encrypted), object_class: self)
25
- end
26
- end
27
-
28
- def setup(index)
29
- key = Digest::SHA1.hexdigest(index)
30
- encrypt_key = Rails.application.credentials.user[:encryptkey]
31
- crypt = ActiveSupport::MessageEncryptor.new(encrypt_key)
32
- return [key, crypt]
33
- end
34
- end
35
-
36
- attr_accessor :errors
37
- def initialize(params = {})
38
- @errors = ActiveModel::Errors.new(self)
39
-
40
- params.present? && params.each do |k,v|
41
- self[k] = v
42
- end
43
- end
44
-
45
- def []=(key, value)
46
- return if key == 'errors' # PATCH if error sneaks in, ruins whole validation process
47
- send("#{key}=", value)
48
- end
49
- end
50
-