two_percent 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: 4f53693df02a8df3cf51bee1e388a7cf906cf102f9bc2a6dcbcc32ea452573ae
4
+ data.tar.gz: ff471ecd9cdb05937625bbcf4b727680e0f825a38db684d31b39980555d291a5
5
+ SHA512:
6
+ metadata.gz: 83b9bb1632b295c695b713d3a38510ab7b3a4ed03c8628aeb65c10d8adff9cd25a702590cd38066d459b6df054fe6af906ffd4ac3847d4b3663dd6f1b24662a7
7
+ data.tar.gz: 6f9992d6ca99572635d318a7f9b90174f57ec5ffede4a60a6cb2646838cfad7cdcf33bd3de17a1941320bbaa8dd468f2e7474a0381597718cd045e1032474a8a
data/MIT-LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright Power Home Remodeling Group, LLC
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.
data/Rakefile ADDED
@@ -0,0 +1,13 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "bundler/setup"
4
+
5
+ require "bundler/gem_tasks"
6
+
7
+ require "rspec/core/rake_task"
8
+ RSpec::Core::RakeTask.new(:spec)
9
+
10
+ require "rubocop/rake_task"
11
+ RuboCop::RakeTask.new(:rubocop)
12
+
13
+ task default: %i[rubocop spec]
@@ -0,0 +1,6 @@
1
+ # frozen_string_literal: true
2
+
3
+ module TwoPercent
4
+ class ApplicationController < ActionController::API
5
+ end
6
+ end
@@ -0,0 +1,35 @@
1
+ # frozen_string_literal: true
2
+
3
+ module TwoPercent
4
+ class ScimController < ApplicationController
5
+ def create
6
+ TwoPercent::CreateEvent.create(resource: params[:resource_type], params: scim_params)
7
+
8
+ head :ok
9
+ end
10
+
11
+ def update
12
+ TwoPercent::UpdateEvent.create(resource: params[:resource_type], id: params[:id], params: scim_params)
13
+
14
+ head :ok
15
+ end
16
+
17
+ def replace
18
+ TwoPercent::ReplaceEvent.create(resource: params[:resource_type], id: params[:id], params: scim_params)
19
+
20
+ head :ok
21
+ end
22
+
23
+ def destroy
24
+ TwoPercent::DeleteEvent.create(resource: params[:resource_type], id: params[:id])
25
+
26
+ head :ok
27
+ end
28
+
29
+ private
30
+
31
+ def scim_params
32
+ params.except(:controller, :action, :resource_type, :id).as_json.deep_symbolize_keys
33
+ end
34
+ end
35
+ end
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ module TwoPercent
4
+ class ApplicationEvent < AetherObservatory::EventBase
5
+ event_prefix "two_percent.scim"
6
+ end
7
+ end
@@ -0,0 +1,11 @@
1
+ # frozen_string_literal: true
2
+
3
+ module TwoPercent
4
+ class CreateEvent < ApplicationEvent
5
+ event_name "create.all"
6
+ event_name { "create.#{resource}" }
7
+
8
+ attribute :resource
9
+ attribute :params
10
+ end
11
+ end
@@ -0,0 +1,11 @@
1
+ # frozen_string_literal: true
2
+
3
+ module TwoPercent
4
+ class DeleteEvent < ApplicationEvent
5
+ event_name "delete.all"
6
+ event_name { "delete.#{resource}" }
7
+
8
+ attribute :resource
9
+ attribute :id
10
+ end
11
+ end
@@ -0,0 +1,12 @@
1
+ # frozen_string_literal: true
2
+
3
+ module TwoPercent
4
+ class ReplaceEvent < ApplicationEvent
5
+ event_name "replace.all"
6
+ event_name { "replace.#{resource}" }
7
+
8
+ attribute :resource
9
+ attribute :id
10
+ attribute :params
11
+ end
12
+ end
@@ -0,0 +1,12 @@
1
+ # frozen_string_literal: true
2
+
3
+ module TwoPercent
4
+ class UpdateEvent < ApplicationEvent
5
+ event_name "update.all"
6
+ event_name { "update.#{resource}" }
7
+
8
+ attribute :resource
9
+ attribute :id
10
+ attribute :params
11
+ end
12
+ end
data/config/routes.rb ADDED
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ TwoPercent::Engine.routes.draw do
4
+ post "/:resource_type" => "scim#create"
5
+ patch "/:resource_type/:id" => "scim#update"
6
+ put "/:resource_type/:id" => "scim#replace"
7
+ delete "/:resource_type/:id" => "scim#destroy"
8
+ end
@@ -0,0 +1,6 @@
1
+ # frozen_string_literal: true
2
+
3
+ # desc "Explaining what the task does"
4
+ # task :two_percent do
5
+ # # Task goes here
6
+ # end
@@ -0,0 +1,20 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "two_percent"
4
+
5
+ module TwoPercent
6
+ class Engine < ::Rails::Engine
7
+ isolate_namespace TwoPercent
8
+ config.generators.api_only = true
9
+
10
+ initializer "two_percent.scim_json" do
11
+ mime_type = "application/scim+json"
12
+
13
+ Mime::Type.register mime_type, :scim
14
+
15
+ ActionDispatch::Request.parameter_parsers[Mime::Type.lookup(mime_type).symbol] = ->(body) do
16
+ JSON.parse(body) if body
17
+ end
18
+ end
19
+ end
20
+ end
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module TwoPercent
4
+ VERSION = "0.1.0"
5
+ end
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "aether_observatory"
4
+
5
+ require "two_percent/version"
6
+
7
+ module TwoPercent
8
+ # Your code goes here...
9
+ end
metadata ADDED
@@ -0,0 +1,97 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: two_percent
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Carlos Palhares
8
+ - Katie Edgar
9
+ - Dan Smith
10
+ - Denis Zablotskii
11
+ autorequire:
12
+ bindir: bin
13
+ cert_chain: []
14
+ date: 2025-03-25 00:00:00.000000000 Z
15
+ dependencies:
16
+ - !ruby/object:Gem::Dependency
17
+ name: aether_observatory
18
+ requirement: !ruby/object:Gem::Requirement
19
+ requirements:
20
+ - - ">="
21
+ - !ruby/object:Gem::Version
22
+ version: '1.0'
23
+ type: :runtime
24
+ prerelease: false
25
+ version_requirements: !ruby/object:Gem::Requirement
26
+ requirements:
27
+ - - ">="
28
+ - !ruby/object:Gem::Version
29
+ version: '1.0'
30
+ - !ruby/object:Gem::Dependency
31
+ name: rails
32
+ requirement: !ruby/object:Gem::Requirement
33
+ requirements:
34
+ - - ">="
35
+ - !ruby/object:Gem::Version
36
+ version: '6.1'
37
+ type: :runtime
38
+ prerelease: false
39
+ version_requirements: !ruby/object:Gem::Requirement
40
+ requirements:
41
+ - - ">="
42
+ - !ruby/object:Gem::Version
43
+ version: '6.1'
44
+ description: Adds a thin SCIM interface, and delegates the actions taken on write
45
+ calls to observers
46
+ email:
47
+ - carlos.palhares@powerhrg.com
48
+ - katie.edgar@powerhrg.com
49
+ - dsmith@powerhrg.com
50
+ - denis.zablotskii@powerhrg.com
51
+ executables: []
52
+ extensions: []
53
+ extra_rdoc_files: []
54
+ files:
55
+ - MIT-LICENSE
56
+ - Rakefile
57
+ - app/controllers/two_percent/application_controller.rb
58
+ - app/controllers/two_percent/scim_controller.rb
59
+ - app/events/two_percent/application_event.rb
60
+ - app/events/two_percent/create_event.rb
61
+ - app/events/two_percent/delete_event.rb
62
+ - app/events/two_percent/replace_event.rb
63
+ - app/events/two_percent/update_event.rb
64
+ - config/routes.rb
65
+ - lib/tasks/two_percent_tasks.rake
66
+ - lib/two_percent.rb
67
+ - lib/two_percent/engine.rb
68
+ - lib/two_percent/version.rb
69
+ homepage: https://github.com/powerhome/power-tools
70
+ licenses:
71
+ - MIT
72
+ metadata:
73
+ homepage_uri: https://github.com/powerhome/power-tools
74
+ source_code_uri: https://github.com/powerhome/power-tools
75
+ changelog_uri: https://github.com/powerhome/power-tools/blob/main/packages/two_percent/docs/CHANGELOG.md
76
+ rubygems_mfa_required: 'true'
77
+ post_install_message:
78
+ rdoc_options: []
79
+ require_paths:
80
+ - lib
81
+ required_ruby_version: !ruby/object:Gem::Requirement
82
+ requirements:
83
+ - - ">="
84
+ - !ruby/object:Gem::Version
85
+ version: '0'
86
+ required_rubygems_version: !ruby/object:Gem::Requirement
87
+ requirements:
88
+ - - ">="
89
+ - !ruby/object:Gem::Version
90
+ version: '0'
91
+ requirements: []
92
+ rubygems_version: 3.5.22
93
+ signing_key:
94
+ specification_version: 4
95
+ summary: Adds a thin SCIM interface, and delegates the actions taken on write calls
96
+ to observers
97
+ test_files: []