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 +4 -4
- data/app/controllers/two_percent/scim_controller.rb +6 -0
- data/lib/two_percent/configuration.rb +35 -0
- data/lib/two_percent/version.rb +1 -1
- data/lib/two_percent.rb +1 -0
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3141327371c4843aa100b88da07804dbb16aaafe4f80315a9a68bcda88ef7b80
|
4
|
+
data.tar.gz: d7fb152e1cb4b68c3ae763ccd9e641cf159447acf1e299e4bbf316496a11cade
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
data/lib/two_percent/version.rb
CHANGED
data/lib/two_percent.rb
CHANGED
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.
|
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-
|
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
|