omniauth-photobucket 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.
- data/.gitignore +17 -0
- data/Gemfile +3 -0
- data/LICENSE +22 -0
- data/README.md +46 -0
- data/Rakefile +2 -0
- data/lib/omniauth/photobucket/version.rb +5 -0
- data/lib/omniauth/photobucket.rb +3 -0
- data/lib/omniauth/strategies/photobucket.rb +36 -0
- data/lib/omniauth-photobucket.rb +1 -0
- data/omniauth-photobucket.gemspec +23 -0
- metadata +87 -0
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2012 Zef Houssney
|
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,46 @@
|
|
1
|
+
# OmniAuth Photobucket
|
2
|
+
|
3
|
+
A Photobucket strategy for OmniAuth 1.0.
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
gem 'omniauth-photobucket'
|
10
|
+
|
11
|
+
And then run `bundle`.
|
12
|
+
|
13
|
+
## Usage
|
14
|
+
|
15
|
+
```ruby
|
16
|
+
use OmniAuth::Builder do
|
17
|
+
provider 'photobucket', PHOTOBUCKET_KEY, PHOTOBUCKET_SECRET
|
18
|
+
end
|
19
|
+
|
20
|
+
# or in your devise config:
|
21
|
+
config.omniauth :photobucket, PHOTOBUCKET_KEY, PHOTOBUCKET_SECRET
|
22
|
+
```
|
23
|
+
|
24
|
+
## Auth Hash Schema
|
25
|
+
|
26
|
+
The following information is provided back to you for this provider:
|
27
|
+
|
28
|
+
```ruby
|
29
|
+
{
|
30
|
+
provider: 'photobucket',
|
31
|
+
uid: 'photobucket_username',
|
32
|
+
info: {
|
33
|
+
username: 'photbucket_username',
|
34
|
+
url: 'http://s1234.photobucket.com/albums/s123/photobucket_username'
|
35
|
+
},
|
36
|
+
credentials: {
|
37
|
+
token: 'the_token',
|
38
|
+
secret: 'the_secret'
|
39
|
+
},
|
40
|
+
extra: {
|
41
|
+
# check this out for a few other small things
|
42
|
+
access_token: raw_oauth_access_token_object
|
43
|
+
}
|
44
|
+
}
|
45
|
+
```
|
46
|
+
|
data/Rakefile
ADDED
@@ -0,0 +1,36 @@
|
|
1
|
+
# require 'omniauth/photobucket/version'
|
2
|
+
require 'omniauth-oauth'
|
3
|
+
|
4
|
+
module OmniAuth
|
5
|
+
module Strategies
|
6
|
+
class Photobucket < OmniAuth::Strategies::OAuth
|
7
|
+
unloadable
|
8
|
+
|
9
|
+
option :name, 'photobucket'
|
10
|
+
|
11
|
+
option :client_options, {
|
12
|
+
:site => 'http://api.photobucket.com',
|
13
|
+
:authorize_url => 'http://photobucket.com/apilogin/login',
|
14
|
+
:request_token_path => '/login/request',
|
15
|
+
:access_token_path => '/login/access'
|
16
|
+
}
|
17
|
+
|
18
|
+
uid { raw_info[:username] }
|
19
|
+
|
20
|
+
info do
|
21
|
+
{
|
22
|
+
'username' => raw_info[:username],
|
23
|
+
'url' => raw_info[:homeurl]
|
24
|
+
}
|
25
|
+
end
|
26
|
+
|
27
|
+
extra do
|
28
|
+
raw_info
|
29
|
+
end
|
30
|
+
|
31
|
+
def raw_info
|
32
|
+
access_token.params
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
@@ -0,0 +1 @@
|
|
1
|
+
require 'omniauth/photobucket'
|
@@ -0,0 +1,23 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
# require File.expand_path('../lib/omniauth/photobucket/version', __FILE__)
|
3
|
+
$:.push File.expand_path('../lib', __FILE__)
|
4
|
+
require 'omniauth/photobucket/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |gem|
|
7
|
+
gem.name = "omniauth-photobucket"
|
8
|
+
gem.description = 'Photobucket strategy for OmniAuth'
|
9
|
+
gem.summary = gem.description
|
10
|
+
gem.homepage = "https://github.com/zef/omniauth-photobucket"
|
11
|
+
|
12
|
+
gem.authors = ["Zef Houssney"]
|
13
|
+
gem.email = ["zef@madebykiwi.com"]
|
14
|
+
|
15
|
+
gem.version = Omniauth::Photobucket::VERSION
|
16
|
+
gem.files = `git ls-files`.split($\)
|
17
|
+
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
18
|
+
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
19
|
+
gem.require_paths = ["lib"]
|
20
|
+
|
21
|
+
gem.add_runtime_dependency 'omniauth', '~> 1.0'
|
22
|
+
gem.add_runtime_dependency 'oauth'
|
23
|
+
end
|
metadata
ADDED
@@ -0,0 +1,87 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: omniauth-photobucket
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Zef Houssney
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2012-05-15 00:00:00.000000000Z
|
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: oauth
|
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: Photobucket strategy for OmniAuth
|
47
|
+
email:
|
48
|
+
- zef@madebykiwi.com
|
49
|
+
executables: []
|
50
|
+
extensions: []
|
51
|
+
extra_rdoc_files: []
|
52
|
+
files:
|
53
|
+
- .gitignore
|
54
|
+
- Gemfile
|
55
|
+
- LICENSE
|
56
|
+
- README.md
|
57
|
+
- Rakefile
|
58
|
+
- lib/omniauth-photobucket.rb
|
59
|
+
- lib/omniauth/photobucket.rb
|
60
|
+
- lib/omniauth/photobucket/version.rb
|
61
|
+
- lib/omniauth/strategies/photobucket.rb
|
62
|
+
- omniauth-photobucket.gemspec
|
63
|
+
homepage: https://github.com/zef/omniauth-photobucket
|
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.19
|
84
|
+
signing_key:
|
85
|
+
specification_version: 3
|
86
|
+
summary: Photobucket strategy for OmniAuth
|
87
|
+
test_files: []
|