hcutil 0.0.5 → 0.1.0

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: 75708b9ea3e3a9c429f6751f4042e5bb88d5a71d
4
- data.tar.gz: 25d93fb505e9e4223625703e1df565e82465cbc4
3
+ metadata.gz: cda8f8722f1082df41310321a8247b8d774faa9a
4
+ data.tar.gz: 5735490131e3f9a06e4e2530fcbccbad902edb66
5
5
  SHA512:
6
- metadata.gz: 0a54a3ac1d443ae8da94430cb3bc81aedc84546d921817c9c19532d7c0e8724ecddbbe1e2a0d53ecc93a1268219551ac46a5c5228f09271c3dca88f19d665b0e
7
- data.tar.gz: 242c3a08d8576e52144a7a5622c9048d0565c6e24b6b8ed24f170efa8d828c54c1fd61b12cac3c9061b08e8f11a8e9f2ea2a2d9a52996ec4f3b917703ac7a251
6
+ metadata.gz: 237efc41d13f825978b7b2be90dbb4b94ecf53233c0cc642b664aae9e8bb6c3f923013f1d6063aa0262bc16d4509aa3b3bcca02cb6f756c453425e9aa6083a4a
7
+ data.tar.gz: c3f95714e3a609b3b9ddf790db4e57c2dc35e16a23e1c6c0e0224702b779859440789dea14c5ef862407cbf791ba767b25a02efee1531dd9cc75cb03ece8ce2f
@@ -1,5 +1,7 @@
1
1
  require 'hcutil/errors'
2
2
  require 'hcutil/op_base'
3
+ require 'uri'
4
+ require 'cgi'
3
5
 
4
6
  module HCUtil
5
7
 
@@ -10,32 +12,77 @@ module HCUtil
10
12
  @num_items = @options[:num_items] ||25
11
13
  end
12
14
 
13
- def copy
14
- room_id = 0
15
+ def get_room_id(start_index=0)
16
+
17
+ uri = 'https://api.hipchat.com/v2/room'
18
+
19
+ # First, try to get the room directly by name
20
+ if start_index == 0
21
+ param_arg = {
22
+ :accept => :json,
23
+ :params => {
24
+ 'auth_token' => @auth.auth_token
25
+ }
26
+ }
27
+ uri_direct = uri + URI.escape("/#{@room_name}")
28
+ RestClient.get(uri_direct, param_arg) do |response, request, result|
29
+ if result.is_a? Net::HTTPSuccess
30
+ json = JSON.parse(response.body)
31
+ if json['id']
32
+ room_id = json['id']
33
+ $stderr.puts("Room '#{@room_name}' has ID #{room_id}") if @verbose
34
+ return room_id
35
+ end
36
+ end
37
+ end
38
+ end
15
39
 
16
40
  param_arg = {
17
41
  :accept => :json,
18
42
  :params => {
19
- :auth_token => @auth.auth_token
43
+ 'auth_token' => @auth.auth_token,
44
+ 'start-index' => start_index,
45
+ 'max-results' => 100
20
46
  }
21
47
  }
22
- uri = 'https://api.hipchat.com/v2/room'
48
+
49
+ room_id = 0
50
+
23
51
  RestClient.get(uri, param_arg) do |response, request, result|
24
52
  if result.is_a? Net::HTTPSuccess
25
53
  json = JSON.parse(response.body)
26
- items = json['items']
27
- items.each do |item|
28
- if item['name'] == @room_name
29
- room_id = item['id']
30
- $stderr.puts("Room '#{@room_name}' has ID #{room_id}") if @verbose
31
- break
54
+ if json['items']
55
+ items = json['items']
56
+ items.each do |item|
57
+ if item['name'] == @room_name
58
+ room_id = item['id']
59
+ $stderr.puts("Room '#{@room_name}' has ID #{room_id}") if @verbose
60
+ break
61
+ end
62
+ end
63
+ links = json['links']
64
+ if room_id == 0 and not links.nil?
65
+ next_uri = links['next']
66
+ unless next_uri.nil_or_empty?
67
+ query = URI.parse(next_uri).query
68
+ query_params = CGI.parse(query)
69
+ start_index = query_params['start-index'].first
70
+ $stderr.puts("finding '#{@room_name}' with start_index #{start_index}") if @verbose
71
+ return get_room_id(start_index)
72
+ end
32
73
  end
74
+ else
75
+ raise(Errors::CopierError, "Room with name '#{@room_name}' could not be found - could not parse JSON")
33
76
  end
34
77
  else
35
78
  raise(Errors::RESTError.new(result, uri, response))
36
79
  end
37
80
  end
81
+ return room_id
82
+ end
38
83
 
84
+ def copy
85
+ room_id = get_room_id
39
86
  if room_id == 0
40
87
  raise(Errors::CopierError, "Room with name '#{@room_name}' could not be found")
41
88
  end
@@ -1,3 +1,3 @@
1
1
  module HCUtil
2
- VERSION = '0.0.5'.freeze
2
+ VERSION = '0.1.0'.freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hcutil
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5
4
+ version: 0.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Luke Bakken
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-04-03 00:00:00.000000000 Z
11
+ date: 2014-05-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thor