openam_errbit 0.0.1

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
+ SHA1:
3
+ metadata.gz: 362bfecf1f9c560a784bf50985ae39f14c4bc161
4
+ data.tar.gz: 3feaa3fccb00b2a3cf268ceb217cdb2d3f53a29b
5
+ SHA512:
6
+ metadata.gz: be1bf4f19fedab632b15256728382c5399a39ccb215389b0fbd1d87744811963b4376eb07132c680db14f3baedc8a6d192845ef32fb2fb330c0acd859399df33
7
+ data.tar.gz: ff459c1c2271d8be8ebf542a5438917ee5059e1f9b08635ac7b9cd95f493a2f3ea820bf2906f660dea2b60d9d540c2ceafcf12e2435cd4412dba788fb867d621
data/Gemfile ADDED
@@ -0,0 +1,6 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in errbit_plugin.gemspec
4
+ gemspec
5
+
6
+ gem 'openam_auth'
data/LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2013 Errbit
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
6
+ this software and associated documentation files (the "Software"), to deal in
7
+ the Software without restriction, including without limitation the rights to
8
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
9
+ the Software, and to permit persons to whom the Software is furnished to do so,
10
+ subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ 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, FITNESS
17
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
18
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
19
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
20
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2013 Cyril Mougel
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,37 @@
1
+ # OpenamErrbit
2
+
3
+ Integration of Errbit with Openam using OpenamAuth (https://github.com/jnsolutions/openam_auth)
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'openam_errbit'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install openam_errbit
18
+
19
+ ### Using
20
+
21
+ 1. install the gem (as described above)
22
+ 2. create a file in `config/initializers`
23
+
24
+ ```ruby
25
+ #config/initializers/openam_config.rb
26
+ OpenamConfig.config do
27
+ openam_url <Path to your openam server>
28
+ end
29
+ ```
30
+
31
+ ## Contributing
32
+
33
+ 1. Fork it
34
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
35
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
36
+ 4. Push to the branch (`git push origin my-new-feature`)
37
+ 5. Create new Pull Request
data/Rakefile ADDED
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
@@ -0,0 +1,13 @@
1
+ module OpenamErrbit
2
+ module SessionsControllerDecorator
3
+ extend ActiveSupport::Concern
4
+
5
+ included do
6
+ def destroy
7
+ openam_logout(current_user.token)
8
+ puts " in destroyaction"
9
+ redirect_to :root
10
+ end
11
+ end
12
+ end
13
+ end
@@ -0,0 +1,32 @@
1
+ module OpenamErrbit
2
+ module UserDecorator
3
+ extend ActiveSupport::Concern
4
+
5
+ included do
6
+ field :token, type: String
7
+ field :uid, type: String
8
+
9
+ def self.existing_user_by_token(token)
10
+ where(token: token).first if token
11
+ end
12
+
13
+ def self.update_openam_user(token, hash)
14
+ if user = where({username: hash.fetch('uid'){raise 'uid key is missing'}.first}).first
15
+ user.update_attribute(:token, token)
16
+ else
17
+ user = self.new(openam_user_hash(hash, token))
18
+ user.save(validate: false)
19
+ end
20
+ user
21
+ end
22
+
23
+ def self.openam_user_hash(hash, token)
24
+ uid = hash.fetch('uid').first
25
+ full_name = hash.fetch('cn').first
26
+ email = hash.fetch('mail').first
27
+ { uid: uid, name: full_name, email: email, token: token}
28
+ end
29
+ end
30
+ end
31
+ end
32
+
@@ -0,0 +1,3 @@
1
+ module OpenamErrbit
2
+ VERSION = "0.0.1"
3
+ end
@@ -0,0 +1,17 @@
1
+ require 'rails'
2
+ require 'openam_auth'
3
+
4
+ module OpenamErrbit
5
+ class Railtie < Rails::Railtie
6
+ config.after_initialize do
7
+ User.send(:include, OpenamErrbit::UserDecorator)
8
+ Devise::SessionsController.send(:include, OpenamErrbit::SessionsControllerDecorator)
9
+ ApplicationController.send(:include, OpenamAuth::Authenticate)
10
+ end
11
+ end
12
+ end
13
+
14
+ require "openam_errbit/version"
15
+ require "openam_errbit/user_decorator"
16
+ require "openam_errbit/sessions_controller_decorator"
17
+
@@ -0,0 +1,26 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'openam_errbit/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "openam_errbit"
8
+ spec.version = OpenamErrbit::VERSION
9
+ spec.authors = ["Krzysztof Kotlarek"]
10
+ spec.email = ["kotlarek.krzysztof@gmail.com"]
11
+ spec.description = %q{OpenAM authentication for Errbit}
12
+ spec.summary = %q{OpenAM authentication for Errbit}
13
+ spec.homepage = "https://github.com/jnsolutions/openam_errbit"
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files`.split($/)
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_development_dependency "bundler", "~> 1.3"
22
+ spec.add_development_dependency "rake"
23
+
24
+ spec.add_dependency "openam_auth"
25
+ spec.add_runtime_dependency "railties", "~> 3.2"
26
+ end
metadata ADDED
@@ -0,0 +1,110 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: openam_errbit
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Krzysztof Kotlarek
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-04-22 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.3'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: '1.3'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - '>='
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - '>='
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: openam_auth
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - '>='
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - '>='
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: railties
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ~>
60
+ - !ruby/object:Gem::Version
61
+ version: '3.2'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ~>
67
+ - !ruby/object:Gem::Version
68
+ version: '3.2'
69
+ description: OpenAM authentication for Errbit
70
+ email:
71
+ - kotlarek.krzysztof@gmail.com
72
+ executables: []
73
+ extensions: []
74
+ extra_rdoc_files: []
75
+ files:
76
+ - Gemfile
77
+ - LICENSE
78
+ - LICENSE.txt
79
+ - README.md
80
+ - Rakefile
81
+ - lib/openam_errbit.rb
82
+ - lib/openam_errbit/sessions_controller_decorator.rb
83
+ - lib/openam_errbit/user_decorator.rb
84
+ - lib/openam_errbit/version.rb
85
+ - openam_errbit.gemspec
86
+ homepage: https://github.com/jnsolutions/openam_errbit
87
+ licenses:
88
+ - MIT
89
+ metadata: {}
90
+ post_install_message:
91
+ rdoc_options: []
92
+ require_paths:
93
+ - lib
94
+ required_ruby_version: !ruby/object:Gem::Requirement
95
+ requirements:
96
+ - - '>='
97
+ - !ruby/object:Gem::Version
98
+ version: '0'
99
+ required_rubygems_version: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - '>='
102
+ - !ruby/object:Gem::Version
103
+ version: '0'
104
+ requirements: []
105
+ rubyforge_project:
106
+ rubygems_version: 2.0.3
107
+ signing_key:
108
+ specification_version: 4
109
+ summary: OpenAM authentication for Errbit
110
+ test_files: []