ruboty-ymcrawl 0.0.6 → 0.0.7

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ea1d989c5526677956936addee55490757533f9a
4
- data.tar.gz: 41101becd4e9515d337e730938028c4f4663551c
3
+ metadata.gz: 016d31aacb5f6c4a6ce96fa1d1eae935c36181fb
4
+ data.tar.gz: c85f92a669b58f2502198af60a5abaf42e18a3c2
5
5
  SHA512:
6
- metadata.gz: 5c33085fc07136a59fdbbbac8c54c4d944f1e9acf3806c17de7d5745f9839ff3204044f142e5e01b6664940c0458b9858514002a87e2c133d1e38862fbbd1c25
7
- data.tar.gz: 2416b4b54faa90ba3858bc7d46565755b49e3dfc817492d76bf9f2e28a04e1a24a97462f9b21a7960fde80e3022f83c45550d35ac07341594355630b7e97288a
6
+ metadata.gz: e5f8e1070adf2a2788feea9772896fd7e9c64961c341294ace4b54b4c0f29348e64cb538c6e9c10cf8b5d33d2d482e04560444d624b8aef79d5d88faabdf582a
7
+ data.tar.gz: 6a60710ffe1cf883ad133810b5d004a659c4d501b2ac88b778acbcb69cc045d4bbc93dcdbaa1733e94338d541f3580dc8b42684d94a4ec22dac20153f88b0101
@@ -1,8 +1,6 @@
1
1
  require_relative '../ymcrawl/main'
2
2
  require 'singleton'
3
3
 
4
- puts "hello form ruboty/handlers/ymcrawl.rb"
5
-
6
4
  module Ruboty
7
5
  module Handlers
8
6
 
@@ -21,18 +19,17 @@ module Ruboty
21
19
  class YMCrawl < Base
22
20
  on(/hello\z/i, name: "hello", description: "Return hello")
23
21
 
24
- def hello(message)
25
- message.reply("hello!!")
26
- end
27
- end
28
-
29
- class Crawl < Base
30
22
  on(
31
23
  /crawl ?(?<url>.+)?\z/i,
32
24
  name: "crawl",
33
25
  description: "crawl image"
34
26
  )
35
27
 
28
+ def hello(message)
29
+ message.reply("hello!!")
30
+ end
31
+
32
+
36
33
  def get_access_token_message(url)
37
34
  return "You don't have access token.
38
35
  1. Go to: #{url}
@@ -66,9 +63,7 @@ module Ruboty
66
63
  message.reply(ex)
67
64
  end
68
65
  end
69
- end
70
66
 
71
- class VerifyAuthCode < Base
72
67
  on(
73
68
  /dropbox:auth ?(?<auth_code>.+)?\z/i,
74
69
  name: "verify_auth_code",
@@ -84,7 +79,68 @@ module Ruboty
84
79
  message.reply("You added access token!")
85
80
  message.reply("Try clawling again!")
86
81
  end
82
+
87
83
  end
88
84
 
85
+ # class Crawl < Base
86
+ # on(
87
+ # /crawl ?(?<url>.+)?\z/i,
88
+ # name: "crawl",
89
+ # description: "crawl image"
90
+ # )
91
+
92
+ # def get_access_token_message(url)
93
+ # return "You don't have access token.
94
+ # 1. Go to: #{url}
95
+ # 2. Click \"Allow\" (you might have to log in first).
96
+ # 3. reply to bot as \"@bot dropbox:auth (auth_code) \""
97
+ # end
98
+
99
+ # def crawl(message)
100
+ # url = (message[:url] == nil) ? "-- please set url --" : message[:url]
101
+ # begin
102
+ # crawl = CrawlManager.instance.get_crawl
103
+ # uploader = crawl.get_uploader
104
+
105
+ # # upload先がlocal以外かつアクセストークンが取得されていない場合は、取得先URLを示して終了
106
+ # if not uploader.access_token? and uploader.get_name != "local"
107
+ # message.reply( get_access_token_message( uploader.get_access_token_url ) )
108
+ # return nil
109
+ # end
110
+
111
+ # message.reply("rubot is crawling from #{url}")
112
+ # zip_paths = crawl.start([url])
113
+ # message.reply("get zip file => #{zip_paths}")
114
+ # rescue URI::InvalidURIError => ex
115
+ # puts ex
116
+ # message.reply("URL is invalid. please retry.")
117
+ # rescue => ex
118
+ # puts "error raise in Crawl.crawl"
119
+ # puts ex
120
+ # message.reply("Sorry, error occurred.")
121
+ # message.reply("Please feedback this error to niboshiporipori@gmail.com")
122
+ # message.reply(ex)
123
+ # end
124
+ # end
125
+ # end
126
+
127
+ # class VerifyAuthCode < Base
128
+ # on(
129
+ # /dropbox:auth ?(?<auth_code>.+)?\z/i,
130
+ # name: "verify_auth_code",
131
+ # description: "add access token by auth code"
132
+ # )
133
+
134
+ # def verify_auth_code(message)
135
+ # auth_code = (message[:auth_code] == nil) ? "-- please set auth_code --" : message[:auth_code]
136
+ # uploader = CrawlManager.instance.get_crawl.get_uploader
137
+ # access_token = uploader.verify_auth_code(auth_code)
138
+ # YMCrawl::DataManager.instance.update_access_token(uploader.get_name, access_token)
139
+
140
+ # message.reply("You added access token!")
141
+ # message.reply("Try clawling again!")
142
+ # end
143
+ # end
144
+
89
145
  end
90
146
  end
@@ -4,5 +4,3 @@ require "ruboty/ymcrawl/crawler"
4
4
  require "ruboty/ymcrawl/dropbox"
5
5
  require "ruboty/ymcrawl/main"
6
6
  require "ruboty/ymcrawl/version"
7
-
8
- puts "in lib/ruboty/ymcrawl.rb"
@@ -1,5 +1,5 @@
1
1
  module Ruboty
2
2
  module Ymcrawl
3
- VERSION = "0.0.6"
3
+ VERSION = "0.0.7"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruboty-ymcrawl
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.6
4
+ version: 0.0.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - mpk