anonymise 0.0.2

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: bbd2148a3efac4ce8415cbda3a2268555d26970ce9e8b1b841b605cfb8811d38
4
+ data.tar.gz: ce0a9e4ee889ae1ce34bf728520ac88ba1b5828979a077527b129a73bd3b00cf
5
+ SHA512:
6
+ metadata.gz: 5325050df93de863a6214beb29f30d1ec6f51d7123ae566eebdc8f67ab5bc5badc3a88e96ca9130e6623aefe31a8fa16e666458c770ba3eaf11e344e7d0a4c15
7
+ data.tar.gz: 557420fed9eaa07c2a649d36c0f4b9b2858519de668de1181357b6cdb847fc93632d45848f91b66875184ae738377cd409f484beb0cfb23f69ab48fd95cff2c0
data/.gitignore ADDED
@@ -0,0 +1,10 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+ /.idea
data/.rspec ADDED
@@ -0,0 +1 @@
1
+ --require spec_helper
data/.ruby-gemset ADDED
@@ -0,0 +1 @@
1
+ anonymise
data/.ruby-version ADDED
@@ -0,0 +1 @@
1
+ 2.5.1
@@ -0,0 +1,74 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ In the interest of fostering an open and welcoming environment, we as
6
+ contributors and maintainers pledge to making participation in our project and
7
+ our community a harassment-free experience for everyone, regardless of age, body
8
+ size, disability, ethnicity, gender identity and expression, level of experience,
9
+ nationality, personal appearance, race, religion, or sexual identity and
10
+ orientation.
11
+
12
+ ## Our Standards
13
+
14
+ Examples of behavior that contributes to creating a positive environment
15
+ include:
16
+
17
+ * Using welcoming and inclusive language
18
+ * Being respectful of differing viewpoints and experiences
19
+ * Gracefully accepting constructive criticism
20
+ * Focusing on what is best for the community
21
+ * Showing empathy towards other community members
22
+
23
+ Examples of unacceptable behavior by participants include:
24
+
25
+ * The use of sexualized language or imagery and unwelcome sexual attention or
26
+ advances
27
+ * Trolling, insulting/derogatory comments, and personal or political attacks
28
+ * Public or private harassment
29
+ * Publishing others' private information, such as a physical or electronic
30
+ address, without explicit permission
31
+ * Other conduct which could reasonably be considered inappropriate in a
32
+ professional setting
33
+
34
+ ## Our Responsibilities
35
+
36
+ Project maintainers are responsible for clarifying the standards of acceptable
37
+ behavior and are expected to take appropriate and fair corrective action in
38
+ response to any instances of unacceptable behavior.
39
+
40
+ Project maintainers have the right and responsibility to remove, edit, or
41
+ reject comments, commits, code, wiki edits, issues, and other contributions
42
+ that are not aligned to this Code of Conduct, or to ban temporarily or
43
+ permanently any contributor for other behaviors that they deem inappropriate,
44
+ threatening, offensive, or harmful.
45
+
46
+ ## Scope
47
+
48
+ This Code of Conduct applies both within project spaces and in public spaces
49
+ when an individual is representing the project or its community. Examples of
50
+ representing a project or community include using an official project e-mail
51
+ address, posting via an official social media account, or acting as an appointed
52
+ representative at an online or offline event. Representation of a project may be
53
+ further defined and clarified by project maintainers.
54
+
55
+ ## Enforcement
56
+
57
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
+ reported by contacting the project team at thirunjuguna@outlook.com. All
59
+ complaints will be reviewed and investigated and will result in a response that
60
+ is deemed necessary and appropriate to the circumstances. The project team is
61
+ obligated to maintain confidentiality with regard to the reporter of an incident.
62
+ Further details of specific enforcement policies may be posted separately.
63
+
64
+ Project maintainers who do not follow or enforce the Code of Conduct in good
65
+ faith may face temporary or permanent repercussions as determined by other
66
+ members of the project's leadership.
67
+
68
+ ## Attribution
69
+
70
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
+ available at [http://contributor-covenant.org/version/1/4][version]
72
+
73
+ [homepage]: http://contributor-covenant.org
74
+ [version]: http://contributor-covenant.org/version/1/4/
data/Gemfile ADDED
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ source 'https://rubygems.org'
4
+
5
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2019 Thiru Njuguna
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,54 @@
1
+ # Anonymise
2
+
3
+ Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/anonymise`. To experiment with that code, run `bin/console` for an interactive prompt.
4
+
5
+
6
+ ## Installation
7
+
8
+ Add this line to your application's Gemfile:
9
+
10
+ ```ruby
11
+ gem 'anonymise'
12
+ ```
13
+
14
+ And then execute:
15
+
16
+ $ bundle
17
+
18
+ Or install it yourself as:
19
+
20
+ $ gem install anonymise
21
+ Create `anonymise.yml` file in your local machine
22
+ Add below code to `/anonymise.yml`
23
+ ```$xslt
24
+ {
25
+ name: ["first_name","last_name","name"],
26
+ internet: ["email","url"],
27
+ address: ["street"]
28
+ }
29
+ ```
30
+ `anonymise.yml` file will holder customer column names that need to be anonymised.
31
+ The column names are group in categories according to [Faker class names](https://github.com/faker-ruby/faker#default)
32
+
33
+ ## Usage
34
+ ```$xslt
35
+ $ bundle exec rake anonymise:start db:dbname path:path_to_anonymise.yml
36
+ ```
37
+
38
+ ## Development
39
+
40
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
41
+
42
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
43
+
44
+ ## Contributing
45
+
46
+ Bug reports and pull requests are welcome on GitHub at https://github.com/thirunjuguna/anonymise. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
47
+
48
+ ## License
49
+
50
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
51
+
52
+ ## Code of Conduct
53
+
54
+ Everyone interacting in the Anonymise project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/thirunjuguna/anonymise/blob/master/CODE_OF_CONDUCT.md).
data/Rakefile ADDED
@@ -0,0 +1,4 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'bundler/gem_tasks'
4
+ require 'anonymise'
data/anonymise.gemspec ADDED
@@ -0,0 +1,35 @@
1
+ # frozen_string_literal: true
2
+
3
+ lib = File.expand_path('lib', __dir__)
4
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
5
+ require 'anonymise/version'
6
+
7
+ Gem::Specification.new do |spec|
8
+ spec.name = 'anonymise'
9
+ spec.version = Anonymise::VERSION
10
+ spec.authors = ['Thiru Njuguna']
11
+ spec.email = ['thirunjuguna@outlook.com']
12
+
13
+ spec.summary = 'anonymise'
14
+ spec.description = 'Helps you fake anonymise your postgres database'
15
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
16
+ spec.bindir = 'bin'
17
+ spec.executables = ['anonymise']
18
+ spec.require_paths = ['lib']
19
+
20
+ spec.homepage = 'http://github.com/thirunjuguna/anonymise'
21
+ spec.license = 'MIT'
22
+
23
+ spec.metadata['allowed_push_host'] = 'https://rubygems.org'
24
+
25
+ spec.metadata['homepage_uri'] = spec.homepage
26
+ spec.metadata['source_code_uri'] = spec.homepage
27
+
28
+ spec.add_development_dependency 'bundler', '~> 2.1.2'
29
+ spec.add_development_dependency 'colorize', '0.8.1'
30
+ spec.add_development_dependency 'faker', '2.9.0'
31
+ spec.add_development_dependency 'pg', '1.1.4'
32
+ spec.add_development_dependency 'rake', '~> 10.0'
33
+ spec.add_development_dependency 'rspec', '~> 3.0'
34
+ spec.add_development_dependency 'thor', '1.0.1'
35
+ end
data/anonymise.yml ADDED
@@ -0,0 +1 @@
1
+ {
2
  name: ["first_name","last_name","name"],
1
3
  internet: ["email","url"],
2
4
  address: ["street"]
data/bin/anonymise ADDED
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+
4
+ $LOAD_PATH.unshift(File.expand_path(File.join(File.dirname(__FILE__), '..', 'lib')))
5
+ require 'anonymise'
6
+ Anonymise::Command.start
data/bin/console ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+
4
+ require 'bundler/setup'
5
+ require 'anonymise'
6
+
7
+ require 'irb'
8
+ IRB.start(__FILE__)
data/bin/setup ADDED
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
@@ -0,0 +1,89 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'faker'
4
+ require 'pg'
5
+ require 'colorize'
6
+ module Anonymise
7
+ class DbFaker
8
+ def initialize(db_args, path)
9
+ @db_args = db_args
10
+ @path = path
11
+ end
12
+
13
+ def fake
14
+ tables.each do |table|
15
+ next if excluded_tables.include?(table['table_name'])
16
+
17
+ puts "Anonymising #{table['table_name']}_table".colorize(:green)
18
+ columns.each do |key, values|
19
+ values.each do |column|
20
+ next unless column_exists?(table['table_name'], column)
21
+
22
+ available_data = connection.exec("select * from #{table['table_name']}")
23
+ available_data.each do |record|
24
+ klass_data = Object.const_get("Faker::#{key.capitalize}").send(column.to_sym)
25
+
26
+ unless column == 'email'
27
+ klass_data = klass_data.gsub(/[^a-z ]/, '')
28
+ end
29
+ connection.exec("UPDATE #{table['table_name']} SET #{column}='#{klass_data}' WHERE id='#{record['id']}'")
30
+ end
31
+ end
32
+ end
33
+ end
34
+ connection&.close
35
+ end
36
+
37
+ private
38
+
39
+ def connection
40
+ @connection ||= PG.connect @db_args
41
+ rescue PG::Error => e
42
+ puts e.message.colorize(:red)
43
+ end
44
+
45
+ def columns
46
+ @columns ||= if configured_columns.nil?
47
+ {
48
+ name: %w[
49
+ first_name
50
+ last_name
51
+ name
52
+ ],
53
+ internet: %w[
54
+ email
55
+ url
56
+ ]
57
+ }
58
+ else
59
+ configured_columns
60
+ end
61
+ end
62
+
63
+ def configured_columns
64
+ @configured_columns ||= if !@path.nil? && File.exist?(@path)
65
+ YAML.safe_load(File.open(@path))
66
+ else
67
+ []
68
+ end
69
+ end
70
+
71
+ def tables
72
+ @tables ||= connection.exec "SELECT table_name FROM information_schema.tables
73
+ WHERE table_schema = 'public'"
74
+ end
75
+
76
+ def excluded_tables
77
+ @excluded_tables ||= %w[schema_migrations ar_internal_metadata]
78
+ end
79
+
80
+ def column_exists?(table, column)
81
+ res = connection.exec('SELECT TRUE FROM pg_attribute WHERE attrelid = (SELECT c.oid
82
+ FROM pg_class c JOIN pg_namespace n ON n.oid = c.relnamespace
83
+ WHERE n.nspname = CURRENT_SCHEMA() AND c.relname =\''"#{table}"'\')
84
+ AND attname = \''"#{column}"'\' AND NOT attisdropped AND attnum > 0')
85
+ records_count = res.count
86
+ records_count.positive?
87
+ end
88
+ end
89
+ end
@@ -0,0 +1,49 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'anonymise/db_faker'
4
+ module Anonymise
5
+ class Invoke < Thor::Group
6
+ include Thor::Actions
7
+
8
+ desc 'Anonymise DB'
9
+
10
+ argument :opt, type: :hash, desc: 'Options'
11
+
12
+ def db_name
13
+ if opt['db'].nil?
14
+ puts 'Database name to anonymise is required'.colorize(:red)
15
+ exit
16
+ end
17
+ @db_name ||= opt['db']
18
+ end
19
+
20
+ def user
21
+ @user ||= opt['user']
22
+ end
23
+
24
+ def password
25
+ @password ||= opt['password']
26
+ end
27
+
28
+ def port
29
+ @port ||= opt['port']
30
+ end
31
+
32
+ def host
33
+ @host ||= opt['host']
34
+ end
35
+
36
+ def setup
37
+ db_args = {
38
+ dbname: @db_name,
39
+ user: @user,
40
+ password: @password,
41
+ port: @port,
42
+ host: @host
43
+ }
44
+ path = opt['path']
45
+ klass = Anonymise::DbFaker.new(db_args, path)
46
+ klass.fake
47
+ end
48
+ end
49
+ end
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Anonymise
4
+ VERSION = '0.0.2'
5
+ end
data/lib/anonymise.rb ADDED
@@ -0,0 +1,26 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'rake'
4
+ require 'faker'
5
+ require 'pg'
6
+ require 'colorize'
7
+ require 'thor'
8
+ require 'thor/group'
9
+ require 'anonymise/invoke'
10
+ require 'anonymise/version'
11
+ module Anonymise
12
+ class Command < Thor
13
+ desc '-v', 'Show Anonymise version'
14
+ map %w[-v --version] => :version
15
+
16
+ def version
17
+ say "Anonymise version #{Anonymise::VERSION}"
18
+ end
19
+
20
+ register Anonymise::Invoke, 'start', 'db:db_name path:path_to_config_file', 'Anonymise Database'
21
+
22
+ def self.exit_on_failure
23
+ true
24
+ end
25
+ end
26
+ end
metadata ADDED
@@ -0,0 +1,163 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: anonymise
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.2
5
+ platform: ruby
6
+ authors:
7
+ - Thiru Njuguna
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2019-12-26 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: 2.1.2
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: 2.1.2
27
+ - !ruby/object:Gem::Dependency
28
+ name: colorize
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - '='
32
+ - !ruby/object:Gem::Version
33
+ version: 0.8.1
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - '='
39
+ - !ruby/object:Gem::Version
40
+ version: 0.8.1
41
+ - !ruby/object:Gem::Dependency
42
+ name: faker
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - '='
46
+ - !ruby/object:Gem::Version
47
+ version: 2.9.0
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - '='
53
+ - !ruby/object:Gem::Version
54
+ version: 2.9.0
55
+ - !ruby/object:Gem::Dependency
56
+ name: pg
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - '='
60
+ - !ruby/object:Gem::Version
61
+ version: 1.1.4
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - '='
67
+ - !ruby/object:Gem::Version
68
+ version: 1.1.4
69
+ - !ruby/object:Gem::Dependency
70
+ name: rake
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '10.0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '10.0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: rspec
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: '3.0'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: '3.0'
97
+ - !ruby/object:Gem::Dependency
98
+ name: thor
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - '='
102
+ - !ruby/object:Gem::Version
103
+ version: 1.0.1
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - '='
109
+ - !ruby/object:Gem::Version
110
+ version: 1.0.1
111
+ description: Helps you fake anonymise your postgres database
112
+ email:
113
+ - thirunjuguna@outlook.com
114
+ executables:
115
+ - anonymise
116
+ extensions: []
117
+ extra_rdoc_files: []
118
+ files:
119
+ - ".gitignore"
120
+ - ".rspec"
121
+ - ".ruby-gemset"
122
+ - ".ruby-version"
123
+ - CODE_OF_CONDUCT.md
124
+ - Gemfile
125
+ - LICENSE.txt
126
+ - README.md
127
+ - Rakefile
128
+ - anonymise.gemspec
129
+ - anonymise.yml
130
+ - bin/anonymise
131
+ - bin/console
132
+ - bin/setup
133
+ - lib/anonymise.rb
134
+ - lib/anonymise/db_faker.rb
135
+ - lib/anonymise/invoke.rb
136
+ - lib/anonymise/version.rb
137
+ homepage: http://github.com/thirunjuguna/anonymise
138
+ licenses:
139
+ - MIT
140
+ metadata:
141
+ allowed_push_host: https://rubygems.org
142
+ homepage_uri: http://github.com/thirunjuguna/anonymise
143
+ source_code_uri: http://github.com/thirunjuguna/anonymise
144
+ post_install_message:
145
+ rdoc_options: []
146
+ require_paths:
147
+ - lib
148
+ required_ruby_version: !ruby/object:Gem::Requirement
149
+ requirements:
150
+ - - ">="
151
+ - !ruby/object:Gem::Version
152
+ version: '0'
153
+ required_rubygems_version: !ruby/object:Gem::Requirement
154
+ requirements:
155
+ - - ">="
156
+ - !ruby/object:Gem::Version
157
+ version: '0'
158
+ requirements: []
159
+ rubygems_version: 3.0.6
160
+ signing_key:
161
+ specification_version: 4
162
+ summary: anonymise
163
+ test_files: []