operate_do 0.1.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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: eb96f21d59bf8d815368c54374b139e5a8818f980119ce5fae6dca4e251ff992
4
+ data.tar.gz: e68765cdf3028124a0627e3e9fc35dd578ccd7c69ca14e2c8d12d489feb0e588
5
+ SHA512:
6
+ metadata.gz: d819bb6f645184704cadc4176f8c85e9b47c9b2e75f706188a3ff5295f93e573e215c47af60fef18af4bc18f332a048106ea9440e44f90509bbc97cb638462d0
7
+ data.tar.gz: bfde8c1f33c6c10422d6e81f909a07d9b8bb879927adb3383e7015fddf6b3aa364f926d1b83b556401f48c3875c850db8d71ec6e1b7b9b8962f432bc493366bb
data/.gitignore ADDED
@@ -0,0 +1,12 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+
11
+ # rspec failure tracking
12
+ .rspec_status
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --format documentation
2
+ --color
data/.travis.yml ADDED
@@ -0,0 +1,5 @@
1
+ sudo: false
2
+ language: ruby
3
+ rvm:
4
+ - 2.4.2
5
+ before_install: gem install bundler -v 1.15.4
@@ -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 takkanm@gmail.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,6 @@
1
+ source "https://rubygems.org"
2
+
3
+ git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
4
+
5
+ # Specify your gem's dependencies in operate_do.gemspec
6
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2017 takkanm
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,132 @@
1
+ # OperateDo
2
+
3
+ PerateDo provides a simple way to manage thread-local variable which represents the operator of a transaction.
4
+
5
+
6
+ ## Installation
7
+
8
+ Add this line to your application's Gemfile:
9
+
10
+ ```ruby
11
+ gem 'operate_do'
12
+ ```
13
+
14
+ And then execute:
15
+
16
+ $ bundle
17
+
18
+ Or install it yourself as:
19
+
20
+ $ gem install operate_do
21
+
22
+ ## Usage
23
+
24
+ First, include OperateDo::Operator into the class which represents a operator.
25
+
26
+ ```ruby
27
+ class Admin
28
+ include OperateDo::Operator
29
+ end
30
+ ```
31
+
32
+ `OperateDo::Operator` provides `operate` and `self_operate` methods.
33
+
34
+ `operate` methods accept block. `OperateDo.current_operator` is `operate` method reciver takes a block.
35
+
36
+ While the block is being executed, `OperateDo.current_operator` returns current operator, the receiver of this method calling.
37
+
38
+ ```ruby
39
+ admin = Admin.new # => #<Admin:0x007ff02b235cf8>
40
+
41
+ admin.operate do
42
+ OperateDo.current_operator # => #<Admin:0x007ff02b235cf8>
43
+ end
44
+ ```
45
+
46
+ Since it's a thread-local, you can get it in everywhere. For example, when you call `admin.operate do...` in the rails' controller layer then you can get the `OperateDo.current_operator` from the model layer.
47
+
48
+ `operate` method can nest.
49
+ Of cource, `operate` can be nested, like nested transactions.
50
+
51
+ ```ruby
52
+ admin1 = Admin.new
53
+ admin2 = Admin.new
54
+
55
+ admin1.operate do
56
+ OperateDo.current_operator == admin1 # => true
57
+ admin2.operate do
58
+ OperateDo.current_operator == admin2 # => true
59
+ end
60
+ OperateDo.current_operator == admin1 # => true
61
+ end
62
+ ```
63
+
64
+ OperateDo has a flexible logging mechanism. If you logging with operator, you can use `OperateDo.write` method.
65
+
66
+ ```ruby
67
+ admin.operate do
68
+ OperateDo.write 'a resource is being modified'
69
+ end
70
+
71
+ # => I, [2017-10-04T07:13:15.713900 #21515] INFO -- : 2017/10/04/ 07:13:15 - #<Admin:0x007ff02b235cf8> has operated : call in admin blcok
72
+ ```
73
+
74
+ `OperateDo.write` uses `OperateDo::Logger` is a wrapper of Ruby's Logger by default.
75
+
76
+ You can create your custome logger and use it by setting.
77
+
78
+ Your custome logger class expect and implements `flush!` method.
79
+ `flush!` method recive array of `OperateDo::Message`.
80
+ A logger class is expected to implement `flush!` method. This method receives an array of `OperateDo::Message`.
81
+
82
+ ```ruby
83
+ class StringIOLogger
84
+ def initialize(io_object)
85
+ @io_object = io_object
86
+ end
87
+
88
+ def flush!(messages)
89
+ messages.each do |message|
90
+ @io_object.puts [
91
+ message.operate_at.strftime('%Y/%m/%d/ %H:%M:%S'),
92
+ "#{message.operator.operate_inspect} has operated : #{message.message}"
93
+ ].join(" - ")
94
+ end
95
+ end
96
+ end
97
+ ```
98
+
99
+ And then, set `OperateDo.configure`.
100
+
101
+ ```ruby
102
+ logger_string = StringIO.new
103
+
104
+ OperateDo.configure do |config|
105
+ config.logger = StringIOLogger
106
+ config.logger_initialize_proc = -> { logger_string }
107
+ end
108
+ admin.operate do
109
+ OperateDo.write 'call in admin blcok'
110
+ end
111
+
112
+ logger_string.rewind
113
+ logger_string.read # => 2017/10/04/ 07:47:57 - #<Admin:0x007f9f6695cc40> has operated : a resource is being modified
114
+ ```
115
+
116
+ ## Development
117
+
118
+ 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.
119
+
120
+ 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).
121
+
122
+ ## Contributing
123
+
124
+ Bug reports and pull requests are welcome on GitHub at https://github.com/esminc/operate_do. 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.
125
+
126
+ ## License
127
+
128
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
129
+
130
+ ## Code of Conduct
131
+
132
+ Everyone interacting in the OperateDo project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/esminc/operate_do/blob/master/CODE_OF_CONDUCT.md).
data/Rakefile ADDED
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "operate_do"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start(__FILE__)
data/bin/setup ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,3 @@
1
+ module OperateDo
2
+ VERSION = "0.1.0"
3
+ end
data/lib/operate_do.rb ADDED
@@ -0,0 +1,171 @@
1
+ require "operate_do/version"
2
+ require 'logger'
3
+
4
+ module OperateDo
5
+ OPERATE_DO_KEY = :operate_do_operator
6
+
7
+ class Config
8
+ attr_reader :logger_class, :logger_initialize_proc
9
+
10
+ def initialize
11
+ @logger_class = OperateDo::Logger
12
+ @logger_initialize_proc = nil
13
+ end
14
+
15
+ def logger=(logger_class)
16
+ @logger_class = logger_class
17
+ end
18
+
19
+ def logger_initialize_proc=(initialize_proc)
20
+ @logger_initialize_proc = initialize_proc
21
+ end
22
+ end
23
+
24
+
25
+ class Logger
26
+ def initialize(logger_instance = ::Logger.new(STDOUT))
27
+ logger_insance ||= ::Logger.new(STDOUT)
28
+ @logger_instance = logger_instance
29
+ end
30
+
31
+ def flush!(messages)
32
+ messages.each do |message|
33
+ @logger_instance.log log_level, build_message(message)
34
+ end
35
+ end
36
+
37
+ def build_message(message)
38
+ [
39
+ message.operate_at.strftime('%Y/%m/%d/ %H:%M:%S'),
40
+ "#{message.operator.operate_inspect} has operated : #{message.message}"
41
+ ].join(" - ")
42
+ end
43
+
44
+ def log_level
45
+ ::Logger::INFO
46
+ end
47
+ end
48
+
49
+ class Message
50
+ attr_reader :operator, :message, :operate_at
51
+
52
+ def initialize(operator, message, operate_at)
53
+ @operator = operator
54
+ @message = message
55
+ @operate_at = operate_at
56
+ end
57
+ end
58
+
59
+ class Recorder
60
+ def initialize
61
+ @operators = []
62
+ @messages = []
63
+ end
64
+
65
+ def push_operator(operator)
66
+ @operators.push operator
67
+ end
68
+
69
+ def pop_operator
70
+ @operators.pop
71
+ end
72
+
73
+ def current_operator
74
+ @operators.last
75
+ end
76
+
77
+ def write(message, operate_at = Time.now)
78
+ @messages << OperateDo::Message.new(current_operator, message, operate_at)
79
+ end
80
+
81
+ def flush_message!
82
+ OperateDo.current_logger.flush!(@messages)
83
+ @messages.clear
84
+ end
85
+ end
86
+
87
+ class << self
88
+ def configure
89
+ @config ||= OperateDo::Config.new
90
+ yield @config if block_given?
91
+ end
92
+
93
+ def current_logger
94
+ configure unless @config
95
+ @current_logger ||= setup_logger
96
+ end
97
+
98
+ private def setup_logger
99
+ if @config.logger_initialize_proc
100
+ @config.logger_class.new(@config.logger_initialize_proc.call)
101
+ else
102
+ @config.logger_class.new
103
+ end
104
+ end
105
+
106
+ def push_operator(operator)
107
+ Thread.current[OPERATE_DO_KEY] ||= OperateDo::Recorder.new
108
+ Thread.current[OPERATE_DO_KEY].push_operator operator
109
+ end
110
+
111
+ def pop_operator
112
+ Thread.current[OPERATE_DO_KEY].pop_operator
113
+ end
114
+
115
+ def current_operator
116
+ Thread.current[OPERATE_DO_KEY]&.current_operator
117
+ end
118
+
119
+ def flush_message!
120
+ Thread.current[OPERATE_DO_KEY].flush_message!
121
+ end
122
+
123
+ def write(message, operate_at = Time.now)
124
+ Thread.current[OPERATE_DO_KEY].write(message, operate_at)
125
+ end
126
+ end
127
+
128
+ class OperateProxy
129
+ def initialize(operator)
130
+ @operator = operator
131
+ end
132
+
133
+
134
+ private
135
+
136
+ def method_missing(method_name, *args, &block)
137
+ ret_val = nil
138
+
139
+ @operator.operate do
140
+ ret_val = @operator.__send__(method_name, *args, &block)
141
+ end
142
+
143
+ ret_val
144
+ end
145
+
146
+ def respond_to_missing?(symbol, include_private)
147
+ @operator.__send__(:respond_to_missing?, symbol, include_private)
148
+ end
149
+ end
150
+
151
+ module Operator
152
+ def operate
153
+ OperateDo.push_operator self
154
+
155
+ begin
156
+ yield
157
+ ensure
158
+ OperateDo.pop_operator
159
+ OperateDo.flush_message! unless OperateDo.current_operator
160
+ end
161
+ end
162
+
163
+ def self_operate
164
+ OperateDo::OperateProxy.new(self)
165
+ end
166
+
167
+ def operate_inspect
168
+ inspect
169
+ end
170
+ end
171
+ end
@@ -0,0 +1,27 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path("../lib", __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require "operate_do/version"
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "operate_do"
8
+ spec.version = OperateDo::VERSION
9
+ spec.authors = ["takkanm"]
10
+ spec.email = ["takkanm@gmail.com"]
11
+
12
+ spec.summary = %q{operate_do is audit logger}
13
+ spec.description = %q{operate_do is audit logger}
14
+ spec.homepage = "https://github.com/esminc/operate_do"
15
+ spec.license = "MIT"
16
+
17
+ spec.files = `git ls-files -z`.split("\x0").reject do |f|
18
+ f.match(%r{^(test|spec|features)/})
19
+ end
20
+ spec.bindir = "exe"
21
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
22
+ spec.require_paths = ["lib"]
23
+
24
+ spec.add_development_dependency "bundler", "~> 1.15"
25
+ spec.add_development_dependency "rake", "~> 10.0"
26
+ spec.add_development_dependency "rspec", "~> 3.0"
27
+ end
metadata ADDED
@@ -0,0 +1,99 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: operate_do
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - takkanm
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2017-10-24 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: '1.15'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.15'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rspec
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '3.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '3.0'
55
+ description: operate_do is audit logger
56
+ email:
57
+ - takkanm@gmail.com
58
+ executables: []
59
+ extensions: []
60
+ extra_rdoc_files: []
61
+ files:
62
+ - ".gitignore"
63
+ - ".rspec"
64
+ - ".travis.yml"
65
+ - CODE_OF_CONDUCT.md
66
+ - Gemfile
67
+ - LICENSE.txt
68
+ - README.md
69
+ - Rakefile
70
+ - bin/console
71
+ - bin/setup
72
+ - lib/operate_do.rb
73
+ - lib/operate_do/version.rb
74
+ - operate_do.gemspec
75
+ homepage: https://github.com/esminc/operate_do
76
+ licenses:
77
+ - MIT
78
+ metadata: {}
79
+ post_install_message:
80
+ rdoc_options: []
81
+ require_paths:
82
+ - lib
83
+ required_ruby_version: !ruby/object:Gem::Requirement
84
+ requirements:
85
+ - - ">="
86
+ - !ruby/object:Gem::Version
87
+ version: '0'
88
+ required_rubygems_version: !ruby/object:Gem::Requirement
89
+ requirements:
90
+ - - ">="
91
+ - !ruby/object:Gem::Version
92
+ version: '0'
93
+ requirements: []
94
+ rubyforge_project:
95
+ rubygems_version: 2.6.14
96
+ signing_key:
97
+ specification_version: 4
98
+ summary: operate_do is audit logger
99
+ test_files: []