two_percent 0.1.0 → 0.2.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4f53693df02a8df3cf51bee1e388a7cf906cf102f9bc2a6dcbcc32ea452573ae
4
- data.tar.gz: ff471ecd9cdb05937625bbcf4b727680e0f825a38db684d31b39980555d291a5
3
+ metadata.gz: 3141327371c4843aa100b88da07804dbb16aaafe4f80315a9a68bcda88ef7b80
4
+ data.tar.gz: d7fb152e1cb4b68c3ae763ccd9e641cf159447acf1e299e4bbf316496a11cade
5
5
  SHA512:
6
- metadata.gz: 83b9bb1632b295c695b713d3a38510ab7b3a4ed03c8628aeb65c10d8adff9cd25a702590cd38066d459b6df054fe6af906ffd4ac3847d4b3663dd6f1b24662a7
7
- data.tar.gz: 6f9992d6ca99572635d318a7f9b90174f57ec5ffede4a60a6cb2646838cfad7cdcf33bd3de17a1941320bbaa8dd468f2e7474a0381597718cd045e1032474a8a
6
+ metadata.gz: 27d1a9e34f7e1527052c169769786203c4284282e7d79241d4008adf64aaae567879d8d3d441bb9d842d884b5f5a771b89e3bedd08ce779b8c5e18ebe9b804f6
7
+ data.tar.gz: a3a7e6d5bbbbe602008ddc0b1096a643999c676bcd14849403bd3e636fca996e3bf84285e81c742806fe90f6556f86a628b4af5ab8e39a7d0cf99cca0fda51b1
@@ -2,6 +2,8 @@
2
2
 
3
3
  module TwoPercent
4
4
  class ScimController < ApplicationController
5
+ before_action :authenticate
6
+
5
7
  def create
6
8
  TwoPercent::CreateEvent.create(resource: params[:resource_type], params: scim_params)
7
9
 
@@ -31,5 +33,9 @@ module TwoPercent
31
33
  def scim_params
32
34
  params.except(:controller, :action, :resource_type, :id).as_json.deep_symbolize_keys
33
35
  end
36
+
37
+ def authenticate
38
+ instance_exec(&TwoPercent.config.authenticate)
39
+ end
34
40
  end
35
41
  end
@@ -0,0 +1,35 @@
1
+ # frozen_string_literal: true
2
+
3
+ module TwoPercent
4
+ include ActiveSupport::Configurable
5
+
6
+ # Configuration options
7
+
8
+ #
9
+ # Authentication configuration. This defaults to true, meaning that the SCIM
10
+ # endpoints are open to the public.
11
+ #
12
+ # To authenticate requests, set this configuration to a lambda that will receive
13
+ # the request and return true if the request is authenticated.
14
+ #
15
+ # Raising an exception will also prevent the execution of the request, but the
16
+ # exception will not be caught and should be handled by the application middlewares.
17
+ #
18
+ # I.e.:
19
+ #
20
+ # TwoPercent.configure do |config|
21
+ # config.authenticate = ->(*) { authenticate_request }
22
+ # end
23
+ #
24
+ # I.e:
25
+ #
26
+ # TwoPercent.configure do |config|
27
+ # config.authenticate = ->(request) do
28
+ # request.env["warden"].authenticate!
29
+ # end
30
+ # end
31
+ #
32
+ config_accessor :authenticate do
33
+ ->(*) { true }
34
+ end
35
+ end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module TwoPercent
4
- VERSION = "0.1.0"
4
+ VERSION = "0.2.0"
5
5
  end
data/lib/two_percent.rb CHANGED
@@ -3,6 +3,7 @@
3
3
  require "aether_observatory"
4
4
 
5
5
  require "two_percent/version"
6
+ require "two_percent/configuration"
6
7
 
7
8
  module TwoPercent
8
9
  # Your code goes here...
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: two_percent
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Carlos Palhares
@@ -11,7 +11,7 @@ authors:
11
11
  autorequire:
12
12
  bindir: bin
13
13
  cert_chain: []
14
- date: 2025-03-25 00:00:00.000000000 Z
14
+ date: 2025-03-27 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: aether_observatory
@@ -64,6 +64,7 @@ files:
64
64
  - config/routes.rb
65
65
  - lib/tasks/two_percent_tasks.rake
66
66
  - lib/two_percent.rb
67
+ - lib/two_percent/configuration.rb
67
68
  - lib/two_percent/engine.rb
68
69
  - lib/two_percent/version.rb
69
70
  homepage: https://github.com/powerhome/power-tools