vine_api 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: e1385c72b719b9fe0436ba7b2f3673b716f2da96
4
+ data.tar.gz: f10bac641a0b713d73a7927e6c029823749fb172
5
+ SHA512:
6
+ metadata.gz: b0e91c5c4538fd60d1be3e8ce3915d4bf6e290bdb92655371fa3a4b0e47f097e975213abbae176e0b60a950ab46041d8bd8b048510b03e37191b4be50dfcc257
7
+ data.tar.gz: 59c1ea4a63ecc752f255cd0ba71f2151de18a1262969a92de5fcc9bb9f5e94dcb3567e66761c7cb0c80b48b2f4255f85ced8de98aae92b7aae72a38c85137158
data/.gitignore ADDED
@@ -0,0 +1,17 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
data/Gemfile ADDED
@@ -0,0 +1,6 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in vine_api.gemspec
4
+ gemspec
5
+ gem 'faraday'
6
+ gem 'faraday_middleware'
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 Asano Yuuki
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,28 @@
1
+ # VineApi
2
+ This repository is ruby-gem for vine api.
3
+
4
+ ## Installation
5
+
6
+ Add this line to your application's Gemfile:
7
+
8
+ gem 'vine_api'
9
+
10
+ And then execute:
11
+
12
+ $ bundle
13
+
14
+ Or install it yourself as:
15
+
16
+ $ gem install vine_api
17
+
18
+ ## Usage
19
+
20
+ TODO: Write usage instructions here
21
+
22
+ ## Contributing
23
+
24
+ 1. Fork it
25
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
26
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
27
+ 4. Push to the branch (`git push origin my-new-feature`)
28
+ 5. Create new Pull Request
data/Rakefile ADDED
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
@@ -0,0 +1,92 @@
1
+ # -*- coding: utf-8 -*-
2
+ require 'faraday'
3
+ require 'faraday_middleware'
4
+
5
+ module VineApi
6
+ # このmoduleを読み込んで中のメソッドを実行
7
+ module Request
8
+ def get(path, params = {})
9
+ request(:get, path, params)
10
+ end
11
+
12
+ def post(path, params = {})
13
+ request(:post, path, params)
14
+ end
15
+
16
+ def put(path, params = {})
17
+ request(:put, path, params)
18
+ end
19
+
20
+ def delete(path, params = {})
21
+ request(:delete, path, params)
22
+ end
23
+
24
+ private
25
+ def request(http_method, path, params = {})
26
+ #Faradayオブジェクトのsendを使ってる
27
+ response = connection.send(http_method.to_sym, path, params) do |request|
28
+ request[:vine_session_id] = @key if @key
29
+ end
30
+
31
+ response.body['data']
32
+ end
33
+
34
+ def connection
35
+ options = {
36
+ :url => 'https://api.vineapp.com/',
37
+ :headers => {
38
+ :accept => 'application/json',
39
+ :user_agent => "com.vine.iphone/1.0.3 (unknown, iPhone OS 6.1.0, iPhone, Scale/2.000000)",
40
+ },
41
+ :request => {
42
+ :open_timeout => 5,
43
+ :timeout => 10,
44
+ },
45
+ :ssl => {
46
+ :verify => true
47
+ },
48
+ }
49
+
50
+ Faraday.new(options) do |builder|
51
+ builder.response :raise_error
52
+ # builder.response :mashify
53
+ builder.response :json
54
+ builder.request :url_encoded
55
+ builder.adapter :net_http
56
+ end
57
+ end
58
+ end
59
+ class VineError < StandardError
60
+ end
61
+
62
+ module Response
63
+ class RaiseError < Faraday::Response::Middleware
64
+ def on_complete(env)
65
+ case env[:status].to_i
66
+ when 400...600
67
+ raise VineApi::VineError.new(error_message(env))
68
+ end
69
+ end
70
+
71
+ private
72
+
73
+ def error_message(env)
74
+ [
75
+ env[:method].to_s.upcase,
76
+ env[:url].to_s,
77
+ env[:status],
78
+ error_body(env[:body])
79
+ ].join(': ')
80
+ end
81
+
82
+ def error_body(body)
83
+ if body.nil?
84
+ nil
85
+ elsif body['error']
86
+ body['error']
87
+ end
88
+ end
89
+ end
90
+ end
91
+ Faraday.register_middleware :response, :raise_error => lambda { VineApi::Response::RaiseError }
92
+ end
@@ -0,0 +1,42 @@
1
+ require 'vine_api/request'
2
+ require 'faraday'
3
+ require 'faraday_middleware'
4
+
5
+ module VineApi
6
+ class User
7
+ include VineApi::Request
8
+
9
+ def initialize(email, password)
10
+ data = post('/users/authenticate', :username => email, :password => password)
11
+ @key = data['key']
12
+ end
13
+
14
+ def profile
15
+ get('/users/me')
16
+ end
17
+
18
+ def timeline(user_id)
19
+ get("/timelines/users/#{user_id}")
20
+ end
21
+
22
+ def tag(tag)
23
+ get("/timelines/tags/#{tag}")
24
+ end
25
+
26
+ def notifications(user_id)
27
+ get("/users/#{user_id}/pendingNotificationsCount")
28
+ end
29
+
30
+ def popular(user_id = nil)
31
+ if user_id
32
+ get("/users/profiles/#{user_id}")
33
+ else
34
+ get('/users/me')
35
+ end
36
+ end
37
+
38
+ def logout
39
+ delete('/users/authenticate')
40
+ end
41
+ end
42
+ end
@@ -0,0 +1,3 @@
1
+ module VineApi
2
+ VERSION = "0.0.1"
3
+ end
data/lib/vine_api.rb ADDED
@@ -0,0 +1,6 @@
1
+ require "vine_api/version"
2
+ require "vine_api/user"
3
+
4
+ module VineApi
5
+
6
+ end
@@ -0,0 +1,8 @@
1
+ require 'rubygems'
2
+
3
+ # カスタムマッチャを書きたかったらここに。
4
+ RSpec::Matchers.define :my_matcher do |expected|
5
+ match do |actual|
6
+ true
7
+ end
8
+ end
data/vine_api.gemspec ADDED
@@ -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 'vine_api/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "vine_api"
8
+ spec.version = VineApi::VERSION
9
+ spec.authors = ["Asano Yuuki"]
10
+ spec.email = ["yuuki.1224.softtennis@gmail.com"]
11
+ spec.description = %q{This gem is for vine api}
12
+ spec.summary = %q{This gem is for vine api}
13
+ spec.homepage = ""
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
+ spec.add_development_dependency "rspec"
24
+ spec.add_development_dependency "faraday"
25
+ spec.add_development_dependency "faraday_middleware"
26
+ end
metadata ADDED
@@ -0,0 +1,127 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: vine_api
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Asano Yuuki
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-01-01 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: rspec
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - '>='
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :development
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: faraday
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - '>='
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - '>='
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: faraday_middleware
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - '>='
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - '>='
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ description: This gem is for vine api
84
+ email:
85
+ - yuuki.1224.softtennis@gmail.com
86
+ executables: []
87
+ extensions: []
88
+ extra_rdoc_files: []
89
+ files:
90
+ - .gitignore
91
+ - Gemfile
92
+ - LICENSE.txt
93
+ - README.md
94
+ - Rakefile
95
+ - lib/vine_api.rb
96
+ - lib/vine_api/request.rb
97
+ - lib/vine_api/user.rb
98
+ - lib/vine_api/version.rb
99
+ - spec/spec_helper.rb
100
+ - vine_api.gemspec
101
+ homepage: ''
102
+ licenses:
103
+ - MIT
104
+ metadata: {}
105
+ post_install_message:
106
+ rdoc_options: []
107
+ require_paths:
108
+ - lib
109
+ required_ruby_version: !ruby/object:Gem::Requirement
110
+ requirements:
111
+ - - '>='
112
+ - !ruby/object:Gem::Version
113
+ version: '0'
114
+ required_rubygems_version: !ruby/object:Gem::Requirement
115
+ requirements:
116
+ - - '>='
117
+ - !ruby/object:Gem::Version
118
+ version: '0'
119
+ requirements: []
120
+ rubyforge_project:
121
+ rubygems_version: 2.0.0
122
+ signing_key:
123
+ specification_version: 4
124
+ summary: This gem is for vine api
125
+ test_files:
126
+ - spec/spec_helper.rb
127
+ has_rdoc: