ruboty-ymcrawl 0.0.9 → 0.0.10
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/lib/ruboty/ymcrawl/crawler.rb +3 -1
- data/lib/ruboty/ymcrawl/dropbox.rb +51 -49
- data/lib/ruboty/ymcrawl/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 31d298b0ab54b65da14e718d3ad8d53007ef40e4
|
4
|
+
data.tar.gz: 184ceb684b99333e82bcf7bd3b4ea5d2d541afc3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f1937b672c42823e24a32aff409e31019408a83c7c7db4375aae097d6ea445d79b767464659b9d2a463cf9e7819801ad61f505f6f4e0950b7b90ea3dc935ffa8
|
7
|
+
data.tar.gz: 01239dd7251abf62ceed5493bc316d12d7d53d3c15880c6e79fb777ec290b11753ef32a60fe8fa8429d0aaee43f8be251267c86bbd8471351cc36dc1ee094a46
|
@@ -4,7 +4,8 @@ require 'kconv'
|
|
4
4
|
require 'addressable/uri'
|
5
5
|
require 'singleton'
|
6
6
|
|
7
|
-
module
|
7
|
+
module Ruboty
|
8
|
+
module YMCrawl
|
8
9
|
# URLに関する処理をまとめたクラス
|
9
10
|
class URLUtil
|
10
11
|
def self.normalize_url(url)
|
@@ -206,3 +207,4 @@ module YMCrawl
|
|
206
207
|
end
|
207
208
|
end
|
208
209
|
end
|
210
|
+
end
|
@@ -1,60 +1,62 @@
|
|
1
1
|
# Install this the SDK with "gem install dropbox-sdk"
|
2
2
|
require 'dropbox_sdk'
|
3
|
-
module
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
def login(arg_access_token = nil)
|
14
|
-
if not @client.nil?
|
15
|
-
puts "already logged in!"
|
16
|
-
return @access_token
|
3
|
+
module Ruboty
|
4
|
+
module YMCrawl
|
5
|
+
class DropboxManager
|
6
|
+
|
7
|
+
def initialize(app_key, app_sec)
|
8
|
+
@app_key = app_key
|
9
|
+
@app_sec = app_sec
|
10
|
+
@client = nil
|
11
|
+
@access_token = nil
|
17
12
|
end
|
18
13
|
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
14
|
+
def login(arg_access_token = nil)
|
15
|
+
if not @client.nil?
|
16
|
+
puts "already logged in!"
|
17
|
+
return @access_token
|
18
|
+
end
|
19
|
+
|
20
|
+
@access_token = arg_access_token
|
21
|
+
begin
|
22
|
+
@client = DropboxClient.new(@access_token)
|
23
|
+
puts "account info: #{@client.account_info()}"
|
24
|
+
return @access_token
|
25
|
+
rescue DropboxError => ex
|
26
|
+
puts "---- access token is invalid ----"
|
27
|
+
return nil
|
28
|
+
end
|
29
|
+
end
|
30
|
+
|
31
|
+
def get_auth_code_url
|
32
|
+
puts "web_auth is nil!!!!" if @web_auth == nil
|
33
|
+
@web_auth = DropboxOAuth2FlowNoRedirect.new(@app_key, @app_sec)
|
34
|
+
authorize_url = @web_auth.start()
|
27
35
|
end
|
28
|
-
end
|
29
|
-
|
30
|
-
def get_auth_code_url
|
31
|
-
puts "web_auth is nil!!!!" if @web_auth == nil
|
32
|
-
@web_auth = DropboxOAuth2FlowNoRedirect.new(@app_key, @app_sec)
|
33
|
-
authorize_url = @web_auth.start()
|
34
|
-
end
|
35
|
-
|
36
|
-
def get_access_token(auth_code)
|
37
|
-
@web_auth.finish(auth_code)[0]
|
38
|
-
end
|
39
|
-
|
40
|
-
def put(command)
|
41
|
-
fname = command[0]
|
42
36
|
|
43
|
-
|
44
|
-
|
45
|
-
new_name = command[1]
|
46
|
-
else
|
47
|
-
new_name = File.basename(fname)
|
37
|
+
def get_access_token(auth_code)
|
38
|
+
@web_auth.finish(auth_code)[0]
|
48
39
|
end
|
49
40
|
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
41
|
+
def put(command)
|
42
|
+
fname = command[0]
|
43
|
+
|
44
|
+
#If the user didn't specifiy the file name, just use the name of the file on disk
|
45
|
+
if command[1]
|
46
|
+
new_name = command[1]
|
47
|
+
else
|
48
|
+
new_name = File.basename(fname)
|
49
|
+
end
|
50
|
+
|
51
|
+
if fname && !fname.empty? && File.exists?(fname) && (File.ftype(fname) == 'file') && File.stat(fname).readable?
|
52
|
+
#This is where we call the the Dropbox Client
|
53
|
+
pp @client.put_file(new_name, open(fname))
|
54
|
+
else
|
55
|
+
puts "couldn't find the file #{ fname }"
|
56
|
+
end
|
55
57
|
end
|
56
|
-
end
|
57
58
|
|
58
|
-
|
59
|
-
|
59
|
+
def get_share_link(path) @client.shares(path) end
|
60
|
+
end
|
61
|
+
end
|
60
62
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ruboty-ymcrawl
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.10
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- mpk
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-12-
|
11
|
+
date: 2014-12-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: addressable
|