omniauth-tapjoy 1.2.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +17 -0
- data/.rvmrc +1 -0
- data/Gemfile +4 -0
- data/LICENSE +22 -0
- data/README.md +54 -0
- data/Rakefile +2 -0
- data/lib/omniauth/strategies/tapjoy.rb +27 -0
- data/lib/omniauth/tapjoy/version.rb +5 -0
- data/lib/omniauth/tapjoy.rb +2 -0
- data/omniauth-tapjoy.gemspec +21 -0
- metadata +87 -0
data/.gitignore
ADDED
data/.rvmrc
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
rvm 1.9.2@tapjoy
|
data/Gemfile
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2012 Jeff Dickey
|
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,54 @@
|
|
1
|
+
# omniauth-tapjoy
|
2
|
+
|
3
|
+
This is an omniauth plugin that can be used to connect to Tapjoy.
|
4
|
+
|
5
|
+
## Installation with Devise
|
6
|
+
|
7
|
+
If you are using Devise, this is how you can use Tapjoy as your OAUTH provider.
|
8
|
+
|
9
|
+
Add this line to your application's Gemfile:
|
10
|
+
|
11
|
+
```ruby
|
12
|
+
gem 'omniauth-tapjoy'
|
13
|
+
```
|
14
|
+
|
15
|
+
And then execute:
|
16
|
+
|
17
|
+
$ bundle
|
18
|
+
|
19
|
+
Add this line to `config/intializers/devise.rb`:
|
20
|
+
|
21
|
+
```ruby
|
22
|
+
config.omniauth :tapjoy, 'TAPJOY_KEY', 'TAPJOY_SECRET'
|
23
|
+
```
|
24
|
+
|
25
|
+
Add a callback controller to be run after the user is authenticated: `app/controllers/users/omniauth_callbacks_controller.rb`
|
26
|
+
|
27
|
+
```ruby
|
28
|
+
class Users::OmniauthCallbacksController < Devise::OmniauthCallbacksController
|
29
|
+
def tapjoy
|
30
|
+
user = request.env["omniauth.auth"]["info"]
|
31
|
+
@user = User.find_or_initialize_by_email(user["email"].downcase)
|
32
|
+
@user.first_name = user["first_name"]
|
33
|
+
@user.last_name = user["last_name"]
|
34
|
+
@user.save!
|
35
|
+
|
36
|
+
flash[:notice] = I18n.t "devise.omniauth_callbacks.success", kind: "Tapjoy"
|
37
|
+
sign_in_and_redirect @user, :event => :authentication
|
38
|
+
finished('sign_up_text')
|
39
|
+
end
|
40
|
+
end
|
41
|
+
```
|
42
|
+
|
43
|
+
Set the route to use the callback you just created:
|
44
|
+
|
45
|
+
```ruby
|
46
|
+
devise_for :users, controllers: { omniauth_callbacks: "users/omniauth_callbacks" }
|
47
|
+
```
|
48
|
+
|
49
|
+
If you aren't using Devise, you can either connect to the oauth server directly,
|
50
|
+
or directly use omniauth: [https://github.com/intridea/omniauth](https://github.com/intridea/omniauth)
|
51
|
+
|
52
|
+
## Example
|
53
|
+
|
54
|
+
For an example of this in use, check the wheeler board: [https://github.com/Tapjoy/wheeler_board](https://github.com/Tapjoy/wheeler_board)
|
data/Rakefile
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
require 'omniauth/strategies/oauth2'
|
2
|
+
|
3
|
+
module OmniAuth
|
4
|
+
module Strategies
|
5
|
+
class Tapjoy < OmniAuth::Strategies::OAuth2
|
6
|
+
option :name, :tapjoy
|
7
|
+
|
8
|
+
option :client_options, {
|
9
|
+
:site => "http://oauth.tapjoy.com",
|
10
|
+
:authorize_path => "/oauth/authorize"
|
11
|
+
}
|
12
|
+
|
13
|
+
uid { raw_info["id"] }
|
14
|
+
|
15
|
+
info do
|
16
|
+
{
|
17
|
+
:email => raw_info["email"],
|
18
|
+
:name => raw_info["name"]
|
19
|
+
}
|
20
|
+
end
|
21
|
+
|
22
|
+
def raw_info
|
23
|
+
@raw_info ||= access_token.get('/api/v1/me.json').parsed
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
@@ -0,0 +1,21 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
$:.push File.expand_path("../lib", __FILE__)
|
3
|
+
require "omniauth/tapjoy"
|
4
|
+
|
5
|
+
Gem::Specification.new do |gem|
|
6
|
+
gem.authors = ["Jeff Dickey"]
|
7
|
+
gem.email = ["jeff@dickey.xxx"]
|
8
|
+
gem.description = %q{An omniauth provider to connect to Tapjoy}
|
9
|
+
gem.summary = %q{An omniauth provider to connect to Tapjoy}
|
10
|
+
gem.homepage = "http://oauth.tapjoy.com"
|
11
|
+
|
12
|
+
gem.files = `git ls-files`.split($\)
|
13
|
+
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
14
|
+
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
15
|
+
gem.name = "omniauth-tapjoy"
|
16
|
+
gem.require_paths = ["lib"]
|
17
|
+
gem.version = OmniAuth::Tapjoy::VERSION
|
18
|
+
|
19
|
+
gem.add_dependency 'omniauth', '~> 1.0'
|
20
|
+
gem.add_runtime_dependency 'omniauth-oauth2'
|
21
|
+
end
|
metadata
ADDED
@@ -0,0 +1,87 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: omniauth-tapjoy
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.2.0
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Jeff Dickey
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2012-06-07 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: omniauth
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ~>
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: '1.0'
|
22
|
+
type: :runtime
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ~>
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '1.0'
|
30
|
+
- !ruby/object:Gem::Dependency
|
31
|
+
name: omniauth-oauth2
|
32
|
+
requirement: !ruby/object:Gem::Requirement
|
33
|
+
none: false
|
34
|
+
requirements:
|
35
|
+
- - ! '>='
|
36
|
+
- !ruby/object:Gem::Version
|
37
|
+
version: '0'
|
38
|
+
type: :runtime
|
39
|
+
prerelease: false
|
40
|
+
version_requirements: !ruby/object:Gem::Requirement
|
41
|
+
none: false
|
42
|
+
requirements:
|
43
|
+
- - ! '>='
|
44
|
+
- !ruby/object:Gem::Version
|
45
|
+
version: '0'
|
46
|
+
description: An omniauth provider to connect to Tapjoy
|
47
|
+
email:
|
48
|
+
- jeff@dickey.xxx
|
49
|
+
executables: []
|
50
|
+
extensions: []
|
51
|
+
extra_rdoc_files: []
|
52
|
+
files:
|
53
|
+
- .gitignore
|
54
|
+
- .rvmrc
|
55
|
+
- Gemfile
|
56
|
+
- LICENSE
|
57
|
+
- README.md
|
58
|
+
- Rakefile
|
59
|
+
- lib/omniauth/strategies/tapjoy.rb
|
60
|
+
- lib/omniauth/tapjoy.rb
|
61
|
+
- lib/omniauth/tapjoy/version.rb
|
62
|
+
- omniauth-tapjoy.gemspec
|
63
|
+
homepage: http://oauth.tapjoy.com
|
64
|
+
licenses: []
|
65
|
+
post_install_message:
|
66
|
+
rdoc_options: []
|
67
|
+
require_paths:
|
68
|
+
- lib
|
69
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
70
|
+
none: false
|
71
|
+
requirements:
|
72
|
+
- - ! '>='
|
73
|
+
- !ruby/object:Gem::Version
|
74
|
+
version: '0'
|
75
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
76
|
+
none: false
|
77
|
+
requirements:
|
78
|
+
- - ! '>='
|
79
|
+
- !ruby/object:Gem::Version
|
80
|
+
version: '0'
|
81
|
+
requirements: []
|
82
|
+
rubyforge_project:
|
83
|
+
rubygems_version: 1.8.21
|
84
|
+
signing_key:
|
85
|
+
specification_version: 3
|
86
|
+
summary: An omniauth provider to connect to Tapjoy
|
87
|
+
test_files: []
|