ruby_rabbitmq_janus 3.0.0.pre.336 → 3.0.0.pre.351

Sign up to get free protection for your applications and to get access to all the features.
Files changed (202) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +80 -29
  3. data/bin/ruby_rabbitmq_janus +1 -1
  4. data/config/default.yml +1 -3
  5. data/config/requests/admin/allow_token.json +2 -1
  6. data/config/requests/admin/disallow_token.json +2 -1
  7. data/config/requests/admin/set_session_timeout.json +2 -3
  8. data/config/requests/peer/trickles.json +7 -0
  9. data/lib/rrj/admin.rb +0 -2
  10. data/lib/rrj/errors/error.rb +7 -2
  11. data/lib/rrj/errors/janus/janus.rb +3 -17
  12. data/lib/rrj/errors/janus/messages/message.rb +1 -1
  13. data/lib/rrj/errors/janus/responses/admin.rb +67 -23
  14. data/lib/rrj/errors/janus/responses/base.rb +15 -0
  15. data/lib/rrj/errors/janus/responses/code.rb +41 -0
  16. data/lib/rrj/errors/janus/responses/event.rb +23 -28
  17. data/lib/rrj/errors/janus/responses/standard.rb +43 -32
  18. data/lib/rrj/errors/janus/transactions/transaction.rb +1 -1
  19. data/lib/rrj/errors/process/concurency.rb +1 -1
  20. data/lib/rrj/errors/rabbit/listener/base.rb +8 -1
  21. data/lib/rrj/init.rb +5 -8
  22. data/lib/rrj/janus/janus.rb +6 -6
  23. data/lib/rrj/janus/messages/admin.rb +1 -5
  24. data/lib/rrj/janus/messages/message.rb +0 -10
  25. data/lib/rrj/janus/messages/standard.rb +0 -4
  26. data/lib/rrj/janus/responses/admin.rb +50 -9
  27. data/lib/rrj/janus/responses/error.rb +159 -0
  28. data/lib/rrj/janus/responses/event.rb +14 -14
  29. data/lib/rrj/janus/responses/response.rb +43 -13
  30. data/lib/rrj/janus/responses/standard.rb +46 -14
  31. data/lib/rrj/janus/transactions/admin.rb +0 -6
  32. data/lib/rrj/janus/transactions/handle.rb +0 -10
  33. data/lib/rrj/janus/transactions/session.rb +0 -6
  34. data/lib/rrj/janus/transactions/transaction.rb +0 -2
  35. data/lib/rrj/models/concerns/instances.rb +0 -4
  36. data/lib/rrj/process/concurrency.rb +0 -2
  37. data/lib/rrj/process/event.rb +0 -4
  38. data/lib/rrj/process/event_admin.rb +0 -4
  39. data/lib/rrj/rabbit/base_event.rb +0 -2
  40. data/lib/rrj/rabbit/connect.rb +0 -12
  41. data/lib/rrj/rabbit/listener/base.rb +10 -8
  42. data/lib/rrj/rabbit/listener/from.rb +0 -3
  43. data/lib/rrj/rabbit/listener/from_admin.rb +0 -3
  44. data/lib/rrj/rabbit/propertie.rb +7 -9
  45. data/lib/rrj/rabbit/publisher/admin.rb +0 -4
  46. data/lib/rrj/rabbit/publisher/base.rb +0 -4
  47. data/lib/rrj/rabbit/publisher/exclusive.rb +0 -4
  48. data/lib/rrj/rabbit/publisher/keepalive.rb +0 -4
  49. data/lib/rrj/rabbit/publisher/non_exclusive.rb +0 -4
  50. data/lib/rrj/task.rb +0 -2
  51. data/lib/rrj/tools/bin/config.rb +2 -1
  52. data/lib/rrj/tools/gem/cluster.rb +0 -4
  53. data/lib/rrj/tools/gem/config/queues.rb +0 -5
  54. data/lib/rrj/tools/gem/{log.rb → logger.rb} +0 -0
  55. data/lib/rrj/tools/gem/option.rb +1 -6
  56. data/lib/rrj/tools/gem/requests.rb +0 -2
  57. data/lib/rrj/tools/replaces/admin.rb +2 -5
  58. data/lib/rrj/tools/replaces/handle.rb +0 -6
  59. data/lib/rrj/tools/replaces/replace.rb +0 -10
  60. data/lib/rrj/tools/replaces/session.rb +0 -4
  61. data/lib/rrj/tools/replaces/type.rb +5 -4
  62. data/spec/config/database.rb +1 -2
  63. data/spec/config/initializer.rb +5 -5
  64. data/spec/rrj/ruby_rabbitmq_janus_spec.rb +1 -1
  65. data/spec/ruby_rabbitmq_janus/janus/responses/admin_handles_spec.rb +22 -0
  66. data/spec/ruby_rabbitmq_janus/janus/responses/admin_info_spec.rb +22 -0
  67. data/spec/ruby_rabbitmq_janus/janus/responses/admin_level_spec.rb +22 -0
  68. data/spec/ruby_rabbitmq_janus/janus/responses/admin_libnice_debug_spec.rb +22 -0
  69. data/spec/ruby_rabbitmq_janus/janus/responses/admin_locking_debug_spec.rb +22 -0
  70. data/spec/ruby_rabbitmq_janus/janus/responses/admin_log_colors_spec.rb +22 -0
  71. data/spec/ruby_rabbitmq_janus/janus/responses/admin_log_timestamps_spec.rb +22 -0
  72. data/spec/ruby_rabbitmq_janus/janus/responses/admin_max_nack_queue_spec.rb +22 -0
  73. data/spec/ruby_rabbitmq_janus/janus/responses/admin_no_media_timer_spec.rb +22 -0
  74. data/spec/ruby_rabbitmq_janus/janus/responses/admin_sessions_spec.rb +22 -0
  75. data/spec/ruby_rabbitmq_janus/janus/responses/admin_spec.rb +1 -34
  76. data/spec/ruby_rabbitmq_janus/janus/responses/admin_timeout_spec.rb +22 -0
  77. data/spec/ruby_rabbitmq_janus/janus/responses/event_data_spec.rb +22 -0
  78. data/spec/ruby_rabbitmq_janus/janus/responses/event_event_spec.rb +22 -0
  79. data/spec/ruby_rabbitmq_janus/janus/responses/event_jsep_spec.rb +22 -0
  80. data/spec/ruby_rabbitmq_janus/janus/responses/event_keys_spec.rb +28 -0
  81. data/spec/ruby_rabbitmq_janus/janus/responses/response_spec.rb +27 -15
  82. data/spec/ruby_rabbitmq_janus/janus/responses/standard_data_spec.rb +22 -0
  83. data/spec/ruby_rabbitmq_janus/janus/responses/standard_plugin_data_spec.rb +28 -0
  84. data/spec/ruby_rabbitmq_janus/janus/responses/standard_plugin_spec.rb +22 -0
  85. data/spec/ruby_rabbitmq_janus/janus/responses/standard_sdp_spec.rb +28 -0
  86. data/spec/ruby_rabbitmq_janus/janus/responses/standard_sender_spec.rb +28 -0
  87. data/spec/ruby_rabbitmq_janus/janus/responses/standard_session_id_spec.rb +22 -0
  88. data/spec/ruby_rabbitmq_janus/janus/responses/standard_session_spec.rb +28 -0
  89. data/spec/ruby_rabbitmq_janus/models/janus_instance_spec.rb +7 -2
  90. data/spec/ruby_rabbitmq_janus/rabbit/connect_spec.rb +0 -4
  91. data/spec/ruby_rabbitmq_janus/rabbit/propertie_instance_classic_spec.rb +12 -0
  92. data/spec/ruby_rabbitmq_janus/rabbit/propertie_instance_token_spec.rb +12 -0
  93. data/spec/ruby_rabbitmq_janus/rrj_admin_add_token_spec.rb +31 -0
  94. data/spec/ruby_rabbitmq_janus/rrj_admin_allow_token_spec.rb +43 -0
  95. data/spec/ruby_rabbitmq_janus/rrj_admin_disallow_token_spec.rb +43 -0
  96. data/spec/ruby_rabbitmq_janus/rrj_admin_handle_info_spec.rb +32 -0
  97. data/spec/ruby_rabbitmq_janus/rrj_admin_list_handles_spec.Rb +32 -0
  98. data/spec/ruby_rabbitmq_janus/rrj_admin_list_sessions_spec.rb +25 -0
  99. data/spec/ruby_rabbitmq_janus/rrj_admin_list_tokens_spec.rb +33 -0
  100. data/spec/ruby_rabbitmq_janus/rrj_admin_remove_token_spec.rb +43 -0
  101. data/spec/ruby_rabbitmq_janus/rrj_admin_set_libnice_debug_spec.rb +20 -0
  102. data/spec/ruby_rabbitmq_janus/rrj_admin_set_locking_debug_spec.rb +20 -0
  103. data/spec/ruby_rabbitmq_janus/rrj_admin_set_log_colors_spec.rb +20 -0
  104. data/spec/ruby_rabbitmq_janus/rrj_admin_set_log_level_spec.rb +75 -0
  105. data/spec/ruby_rabbitmq_janus/rrj_admin_set_log_timestamps_spec.rb +20 -0
  106. data/spec/ruby_rabbitmq_janus/rrj_admin_set_max_nack_queue_spec.rb +56 -0
  107. data/spec/ruby_rabbitmq_janus/rrj_admin_set_no_media_timer_spec.rb +47 -0
  108. data/spec/ruby_rabbitmq_janus/rrj_admin_set_session_timeout_spec.rb +47 -0
  109. data/spec/ruby_rabbitmq_janus/rrj_admin_start_pcap_spec.rb +38 -0
  110. data/spec/ruby_rabbitmq_janus/rrj_admin_start_text2pcap_spec.rb +38 -0
  111. data/spec/ruby_rabbitmq_janus/rrj_admin_stop_pcap_spec.rb +43 -0
  112. data/spec/ruby_rabbitmq_janus/rrj_admin_stop_text2pcap_spec.rb +43 -0
  113. data/spec/ruby_rabbitmq_janus/rrj_answer_spec.rb +79 -0
  114. data/spec/ruby_rabbitmq_janus/rrj_attach_spec.rb +56 -0
  115. data/spec/ruby_rabbitmq_janus/rrj_create_spec.rb +25 -0
  116. data/spec/ruby_rabbitmq_janus/rrj_destroy_spec.rb +56 -0
  117. data/spec/ruby_rabbitmq_janus/rrj_detach_spec.rb +56 -0
  118. data/spec/ruby_rabbitmq_janus/rrj_info_spec.rb +36 -0
  119. data/spec/ruby_rabbitmq_janus/rrj_keepalive_spec.rb +56 -0
  120. data/spec/ruby_rabbitmq_janus/rrj_offer_spec.rb +57 -0
  121. data/spec/ruby_rabbitmq_janus/rrj_trickle_spec.rb +41 -0
  122. data/spec/ruby_rabbitmq_janus/rrj_trickles_spec.rb +43 -0
  123. data/spec/ruby_rabbitmq_janus/tools/cluster_spec.rb +12 -7
  124. data/spec/ruby_rabbitmq_janus/tools/config_gem_spec.rb +94 -0
  125. data/spec/ruby_rabbitmq_janus/tools/config_janus_spec.rb +44 -0
  126. data/spec/ruby_rabbitmq_janus/tools/config_queues_spec.rb +34 -0
  127. data/spec/ruby_rabbitmq_janus/tools/config_rabbit_spec.rb +28 -0
  128. data/spec/ruby_rabbitmq_janus/tools/config_spec.rb +4 -77
  129. data/spec/ruby_rabbitmq_janus/tools/replaces/admin_spec.rb +13 -12
  130. data/spec/ruby_rabbitmq_janus/tools/replaces/handle_spec.rb +12 -11
  131. data/spec/ruby_rabbitmq_janus/tools/replaces/replace_spec.rb +15 -14
  132. data/spec/ruby_rabbitmq_janus/tools/replaces/session_spec.rb +12 -11
  133. data/spec/ruby_rabbitmq_janus/tools/type_spec.rb +20 -1
  134. data/spec/spec_helper.rb +23 -8
  135. data/spec/support/examples_admin.rb +43 -0
  136. data/spec/support/examples_base.rb +65 -0
  137. data/spec/support/examples_config.rb +4 -2
  138. data/spec/support/examples_message.rb +4 -2
  139. data/spec/support/initialize_janus_instance.rb +80 -0
  140. data/spec/support/schemas/config/{rabbit_options_admin.json → rabbit_options_admin_instance_classic.json} +0 -0
  141. data/spec/support/schemas/config/{rabbit_options_admin2.json → rabbit_options_admin_instance_token.json} +0 -0
  142. data/spec/support/schemas/config/{rabbit_options.json → rabbit_options_instance_classic.json} +0 -0
  143. data/spec/support/schemas/config/{rabbit_options2.json → rabbit_options_instance_token.json} +0 -0
  144. data/spec/support/schemas/request/admin/set_libnice_debug.json +13 -0
  145. data/spec/support/schemas/request/admin/set_log_colors.json +13 -0
  146. data/spec/support/schemas/request/admin/set_log_level.json +4 -2
  147. data/spec/support/schemas/request/admin/set_log_timestamps.json +13 -0
  148. data/spec/support/schemas/request/admin/set_max_nack_queue.json +13 -0
  149. data/spec/support/schemas/request/admin/set_no_media_timer.json +13 -0
  150. data/spec/support/schemas/request/admin/set_session_timeout.json +13 -0
  151. data/spec/support/schemas/request/peer/trickles.json +13 -0
  152. data/spec/support/sdp.rb +2 -0
  153. data/spec/support/type.rb +9 -7
  154. metadata +93 -55
  155. data/lib/rrj/errors/janus/responses/response.rb +0 -44
  156. data/spec/config/instance.rb +0 -63
  157. data/spec/request/admin/request_add_token_spec.rb +0 -29
  158. data/spec/request/admin/request_allow_token_spec.rb +0 -21
  159. data/spec/request/admin/request_disallow_token_spec.rb +0 -21
  160. data/spec/request/admin/request_handle_info_spec.rb +0 -21
  161. data/spec/request/admin/request_list_handles_spec.rb +0 -20
  162. data/spec/request/admin/request_list_sessions_spec.rb +0 -21
  163. data/spec/request/admin/request_list_tokens_spec.rb +0 -18
  164. data/spec/request/admin/request_remove_token_spec.rb +0 -18
  165. data/spec/request/admin/request_set_libnice_debug_spec.rb +0 -28
  166. data/spec/request/admin/request_set_locking_debug_spec.rb +0 -28
  167. data/spec/request/admin/request_set_log_colors_spec.rb +0 -28
  168. data/spec/request/admin/request_set_log_level_spec.rb +0 -70
  169. data/spec/request/admin/request_set_log_timestamps_spec.rb +0 -28
  170. data/spec/request/admin/request_set_max_nack_queue_spec.rb +0 -28
  171. data/spec/request/admin/request_set_no_media_timer_spec.rb +0 -28
  172. data/spec/request/admin/request_set_session_timeout_spec.rb +0 -35
  173. data/spec/request/admin/request_start_pcap_spec.rb +0 -28
  174. data/spec/request/admin/request_start_text2pcap_spec.rb +0 -27
  175. data/spec/request/admin/request_stop_pcap_spec.rb +0 -21
  176. data/spec/request/admin/request_stop_text2pcap_spec.rb +0 -28
  177. data/spec/request/base/request_attach_spec.rb +0 -27
  178. data/spec/request/base/request_create_spec.rb +0 -22
  179. data/spec/request/base/request_destroy_spec.rb +0 -23
  180. data/spec/request/base/request_detach_spec.rb +0 -27
  181. data/spec/request/base/request_info_spec.rb +0 -22
  182. data/spec/request/base/request_keepalive_spec.rb +0 -23
  183. data/spec/request/peer/request_offer_spec.rb +0 -27
  184. data/spec/request/peer/request_trickle_spec.rb +0 -30
  185. data/spec/request/peer/request_trickles_spec.rb +0 -30
  186. data/spec/responses/admin_handle_info.json +0 -32
  187. data/spec/responses/admin_list_handles.json +0 -4
  188. data/spec/responses/admin_list_sessions.json +0 -4
  189. data/spec/responses/admin_set_libnice_debug.json +0 -4
  190. data/spec/responses/admin_set_locking_debug.json +0 -4
  191. data/spec/responses/admin_set_log_colors.json +0 -4
  192. data/spec/responses/admin_set_log_level.json +0 -4
  193. data/spec/responses/base_info.json +0 -5
  194. data/spec/ruby_rabbitmq_janus/janus/responses/event_spec.rb +0 -26
  195. data/spec/ruby_rabbitmq_janus/janus/responses/standard_spec.rb +0 -44
  196. data/spec/ruby_rabbitmq_janus/rabbit/propertie_2_spec.rb +0 -28
  197. data/spec/ruby_rabbitmq_janus/rabbit/propertie_spec.rb +0 -29
  198. data/spec/ruby_rabbitmq_janus/tools/logger_spec.rb +0 -84
  199. data/spec/support/admin_requester.rb +0 -48
  200. data/spec/support/aruba.rb +0 -3
  201. data/spec/support/examples_request.rb +0 -65
  202. data/spec/support/examples_response.rb +0 -30
@@ -1,43 +1,38 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # @author VAILLANT Jeremy <jeremy.vaillant@dazzl.tv>
4
-
5
3
  module RubyRabbitmqJanus
6
4
  module Errors
7
5
  module Janus
8
- # Define a super class for all error in Janus::Responses::ResponseEvent
9
- class BaseResponseEvent < RubyRabbitmqJanus::Errors::Janus::BaseResponse
10
- def initialize(message)
11
- super "[Event] #{message}"
12
- end
13
- end
6
+ module Responses
7
+ module Event
8
+ class Base < RubyRabbitmqJanus::Errors::Janus::Responses::Base
9
+ def initialize(message)
10
+ super 'Event', message
11
+ end
12
+ end
14
13
 
15
- module ResponseEvent
16
- # Error for Janus::Responses::ResponseEvent#initialize
17
- class Event < RubyRabbitmqJanus::Errors::Janus::BaseResponseEvent
18
- def initializer
19
- super 'Error janus information reading'
14
+ class Event < Base
15
+ def initialize
16
+ super 'Error janus information reading'
17
+ end
20
18
  end
21
- end
22
19
 
23
- # Error for Janus::Responses::ResponseEvent#data
24
- class Data < RubyRabbitmqJanus::Errors::Janus::BaseResponseEvent
25
- def initializer
26
- super 'Error plugin data information reading'
20
+ class Data < Base
21
+ def initialize
22
+ super 'Error plugin data information reading'
23
+ end
27
24
  end
28
- end
29
25
 
30
- # Error for Janus::Responses::ResponseEvent#jsep
31
- class Jsep < RubyRabbitmqJanus::Errors::Janus::BaseResponseEvent
32
- def initializer
33
- super 'Error JSEP information reading'
26
+ class Jsep < Base
27
+ def initialize
28
+ super 'Error JSEP information reading'
29
+ end
34
30
  end
35
- end
36
31
 
37
- # Error for Janus::Responses::ResponseEvent#keys
38
- class Keys < RubyRabbitmqJanus::Errors::Janus::BaseResponseEvent
39
- def initializer
40
- super 'Error session_id and sender information reading'
32
+ class Keys < Base
33
+ def initialize
34
+ super 'Error session_id and sender information reading'
35
+ end
41
36
  end
42
37
  end
43
38
  end
@@ -1,51 +1,62 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # :reek:IrresponsibleModule
4
-
5
3
  module RubyRabbitmqJanus
6
4
  module Errors
7
5
  module Janus
8
- # Define a super class for Janus::Responses::ResponseStandard
9
- class BaseResponseStandard < BaseResponse
10
- def initialize(message, level = :fatal)
11
- super "[Response]#{message}", level
12
- end
13
- end
6
+ module Responses
7
+ module Standard
8
+ class Base < RubyRabbitmqJanus::Errors::Janus::Responses::Base
9
+ def initialize(message)
10
+ super 'Standard', message
11
+ end
12
+ end
14
13
 
15
- module ResponseStandard
16
- class Session < BaseResponseStandard
17
- def initialize
18
- super '[Session] Error reading response session (data_id in response)'
14
+ class Session < Base
15
+ def initialize
16
+ super 'Error reading response session'
17
+ end
19
18
  end
20
- end
21
19
 
22
- class SessionId < BaseResponseStandard
23
- def initialize
24
- super '[SessionId] Error reading response session_id'
20
+ class Sender < Base
21
+ def initialize
22
+ super 'Error reading response sender'
23
+ end
25
24
  end
26
- end
27
25
 
28
- class Plugin < BaseResponseStandard
29
- def initialize
30
- super '[Plugin] Error reading response plugin'
26
+ class SessionId < Base
27
+ def initialize
28
+ super 'Error reading response session_id'
29
+ end
31
30
  end
32
- end
33
31
 
34
- class PluginData < BaseResponseStandard
35
- def initialize
36
- super '[PluginData] Error reading response plugin data'
32
+ class Plugin < Base
33
+ def initialize
34
+ super 'rror reading response plugin'
35
+ end
37
36
  end
38
- end
39
37
 
40
- class Data < BaseResponseStandard
41
- def initialize
42
- super '[Data] Error reading response data'
38
+ class PluginData < Base
39
+ def initialize
40
+ super 'Error reading response plugin data'
41
+ end
42
+ end
43
+
44
+ class Data < Base
45
+ def initialize
46
+ super 'Error reading response data'
47
+ end
48
+ end
49
+
50
+ class JSEP < Base
51
+ def initialize
52
+ super 'Error reading response JSEP'
53
+ end
43
54
  end
44
- end
45
55
 
46
- class SDP < BaseResponseStandard
47
- def initialize
48
- super '[SDP] Error reading SDP (jsep > sdp in response)'
56
+ class SDP < Base
57
+ def initialize
58
+ super 'Error reading SDP (jsep > sdp in response)'
59
+ end
49
60
  end
50
61
  end
51
62
  end
@@ -4,7 +4,7 @@ module RubyRabbitmqJanus
4
4
  module Errors
5
5
  module Janus
6
6
  # Define a super class for all errors in Janus::Transactions::Transaction
7
- class BaseTransaction < BaseJanus
7
+ class BaseTransaction < RubyRabbitmqJanus::Errors::RRJError
8
8
  def initialize(message, level = :fatal)
9
9
  super "[Transaction]#{message}", level
10
10
  end
@@ -4,7 +4,7 @@ module RubyRabbitmqJanus
4
4
  module Errors
5
5
  module Process
6
6
  # Define a super class for all error in Process::Concurency class
7
- class BaseConcurency < RubyRabbitmqJanus::Errors::BaseJanus
7
+ class BaseConcurency < RubyRabbitmqJanus::Errors::RRJError
8
8
  def initialize(message)
9
9
  super "[Concurency]#{message}", :fatal
10
10
  end
@@ -26,12 +26,19 @@ module RubyRabbitmqJanus
26
26
  end
27
27
  end
28
28
 
29
- # Error when response is read by a listener
29
+ # Error when response is empty
30
30
  class ResponseEmpty < RubyRabbitmqJanus::Errors::Rabbit::Listener::BaseError
31
31
  def initialize(response)
32
32
  super "Response is empty ! (#{response})"
33
33
  end
34
34
  end
35
+
36
+ # Error when response is nil
37
+ class ResponseNil < RubyRabbitmqJanus::Errors::Rabbit::Listener::BaseError
38
+ def initialize(response)
39
+ super "Response is nil ! (#{response})"
40
+ end
41
+ end
35
42
  end
36
43
  end
37
44
  end
@@ -9,12 +9,13 @@ require 'logger'
9
9
  require 'key_path'
10
10
  require 'erb'
11
11
  require 'rrj/tools/bin/config'
12
- require 'rrj/tools/gem/log'
13
-
14
- # :reek:UtilityFunction
12
+ require 'rrj/tools/gem/logger'
15
13
 
16
14
  Log = RubyRabbitmqJanus::Tools::Logger.create unless defined?(Log)
17
15
  RubyRabbitmqJanus::Tools::Logger.start
16
+ #
17
+ # :reek:UtilityFunction
18
+ # :reek:MissingSafeMethod { exclude: [ cleanup_connection! ] }
18
19
 
19
20
  # Primary module for this gem
20
21
  module RubyRabbitmqJanus
@@ -43,8 +44,6 @@ module RubyRabbitmqJanus
43
44
  # => #<RubyRabbitmqJanus::RRJ:0x007 @session=123>
44
45
  def initialize
45
46
  @option = Tools::Option.new
46
- rescue => exception
47
- raise Errors::RRJ::InstanciateGem, exception
48
47
  end
49
48
 
50
49
  # Create a transaction between Apps and Janus in queue public
@@ -173,10 +172,8 @@ module RubyRabbitmqJanus
173
172
  # Warning: All data in database and Janus Instance is delete
174
173
  #
175
174
  # @since 2.1.0
176
- def cleanup_connection
175
+ def cleanup_connection!
177
176
  Models::JanusInstance.destroys
178
- rescue
179
- raise Errors::RRJ::CleanupConnection
180
177
  end
181
178
 
182
179
  private
@@ -1,11 +1,11 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  require 'rrj/janus/messages/message'
4
- require 'rrj/janus/responses/response'
5
4
  require 'rrj/janus/transactions/transaction'
6
5
 
7
- module RubyRabbitmqJanus
8
- # Module interaction with Janus
9
- module Janus
10
- end
11
- end
6
+ require 'rrj/janus/responses/response'
7
+ require 'rrj/janus/responses/standard'
8
+ require 'rrj/janus/responses/admin'
9
+ require 'rrj/janus/responses/error'
10
+ require 'rrj/janus/responses/event'
11
+ require 'rrj/janus/responses/rspec'
@@ -9,15 +9,11 @@ module RubyRabbitmqJanus
9
9
  class Admin < Message
10
10
  def initialize(template_request, options = {})
11
11
  super(template_request, options)
12
- rescue
13
- raise Errors::Janus::MessageAdmin::Initializer
14
12
  end
15
13
 
16
14
  # Return options to message for rabbitmq
17
15
  def options
18
- properties.options_admin(type)
19
- rescue
20
- raise Errors::Janus::MessageAdmin::Options
16
+ properties.options_admin
21
17
  end
22
18
 
23
19
  private
@@ -47,8 +47,6 @@ module RubyRabbitmqJanus
47
47
  @properties = Rabbit::Propertie.new(options['instance'])
48
48
  load_request_file
49
49
  prepare_request(options)
50
- rescue
51
- raise Errors::Janus::Message::Initializer
52
50
  end
53
51
 
54
52
  # Return request to json format
@@ -56,8 +54,6 @@ module RubyRabbitmqJanus
56
54
  # @return [String] Request to JSON format
57
55
  def to_json(*_args)
58
56
  @request.to_json
59
- rescue
60
- raise Errors::Janus::Message::ToJson
61
57
  end
62
58
 
63
59
  # Return request to json format with nice format
@@ -65,8 +61,6 @@ module RubyRabbitmqJanus
65
61
  # @return [String] Request to JSON format with indent
66
62
  def to_nice_json
67
63
  JSON.pretty_generate to_hash
68
- rescue
69
- raise Errors::Janus::Message::ToNiceJson
70
64
  end
71
65
 
72
66
  # Return request to hash format
@@ -74,8 +68,6 @@ module RubyRabbitmqJanus
74
68
  # @return [Hash] Request to Hash format
75
69
  def to_hash
76
70
  @request
77
- rescue
78
- raise Errors::Janus::Message::ToHash
79
71
  end
80
72
 
81
73
  # Return correlation to message
@@ -83,8 +75,6 @@ module RubyRabbitmqJanus
83
75
  # @return [String] Correlation string
84
76
  def correlation
85
77
  @properties.correlation
86
- rescue
87
- raise Errors::Janus::Message::Correlation
88
78
  end
89
79
 
90
80
  private
@@ -9,15 +9,11 @@ module RubyRabbitmqJanus
9
9
  class Standard < Message
10
10
  def initialize(template_request, options = {})
11
11
  super(template_request, options)
12
- rescue
13
- raise Errors::Janus::MessageStandard::Initializer
14
12
  end
15
13
 
16
14
  # Return options to message for rabbitmq
17
15
  def options
18
16
  properties.options
19
- rescue
20
- raise Errors::Janus::MessageStandard::Options
21
17
  end
22
18
 
23
19
  private
@@ -4,32 +4,73 @@ module RubyRabbitmqJanus
4
4
  module Janus
5
5
  module Responses
6
6
  # Response for admin request
7
+ #
8
+ # @see Example request response https://janus.conf.meetecho.com/docs/admin.html
7
9
  class Admin < Standard
8
10
  # List of sessions running in Janus Instance.
9
11
  #
10
12
  # @return [Array] List of sessions
11
13
  def sessions
12
- request['sessions']
13
- rescue
14
- raise Errors::Janus::ResponseAdmin::Sessions
14
+ read_data(__method__.to_s)
15
15
  end
16
16
 
17
17
  # List of handles running in one session in Janus Instance.
18
18
  #
19
19
  # @return [Array] List of handles
20
20
  def handles
21
- request['handles']
22
- rescue
23
- raise Errors::Janus::ResponseAdmin::Handles
21
+ read_data(__method__.to_s)
24
22
  end
25
23
 
26
24
  # Info to session or handle in Janus Instance
27
25
  #
28
26
  # @return [Hash] Information to session/handle
29
27
  def info
30
- request['info']
31
- rescue
32
- raise Errors::Janus::ResponseAdmin::Info
28
+ read_data(__method__.to_s)
29
+ end
30
+
31
+ def libnice_debug
32
+ read_data(__method__.to_s)
33
+ end
34
+
35
+ def locking_debug
36
+ read_data(__method__.to_s)
37
+ end
38
+
39
+ def log_colors
40
+ read_data(__method__.to_s)
41
+ end
42
+
43
+ def level
44
+ read_data(__method__.to_s)
45
+ end
46
+
47
+ def log_timestamps
48
+ read_data(__method__.to_s)
49
+ end
50
+
51
+ def max_nack_queue
52
+ read_data(__method__.to_s)
53
+ end
54
+
55
+ def no_media_timer
56
+ read_data(__method__.to_s)
57
+ end
58
+
59
+ def timeout
60
+ read_data(__method__.to_s)
61
+ end
62
+
63
+ private
64
+
65
+ def read_data(key)
66
+ raise build_exception(key) unless key?(key)
67
+
68
+ request[key]
69
+ end
70
+
71
+ def build_exception(key)
72
+ "RubyRabbitmqJanus::Errors::Janus::Responses::Admin::#{key.camelize}"
73
+ .constantize
33
74
  end
34
75
  end
35
76
  end
@@ -0,0 +1,159 @@
1
+ # frozen_string_literal: true
2
+
3
+ # rubocop:disable Metrics/LineLength
4
+
5
+ module RubyRabbitmqJanus
6
+ module Janus
7
+ module Responses
8
+ # @author VAILLANT Jeremy <jeremy.vaillant@dazzl.tv>
9
+ #
10
+ # @since 3.0.0
11
+ #
12
+ # Manage exception to response Janus
13
+ class Errors
14
+ # Unauthorized (can only happen when using apisecret/auth token)
15
+ def _403(request)
16
+ raise RubyRabbitmqJanus::Errors::Janus::Responses::Unauthorized, request
17
+ end
18
+
19
+ # Unauthorized access to a plugin (can only
20
+ # happen when using auth token)
21
+ def _405(request)
22
+ raise RubyRabbitmqJanus::Errors::Janus::Responses::UnauthorizedPlugin, request
23
+ end
24
+
25
+ # Transport related error
26
+ def _450(request)
27
+ raise RubyRabbitmqJanus::Errors::Janus::Responses::TransportSpecific, request
28
+ end
29
+
30
+ # The request is missing in the message
31
+ def _452(request)
32
+ raise RubyRabbitmqJanus::Errors::Janus::Responses::MissingRequest, request
33
+ end
34
+
35
+ # The Janus core does not suppurt this request
36
+ def _453(request)
37
+ raise RubyRabbitmqJanus::Errors::Janus::Responses::UnknownRequest, request
38
+ end
39
+
40
+ # The payload is not a valid JSON message
41
+ def _454(request)
42
+ raise RubyRabbitmqJanus::Errors::Janus::Responses::InvalidJSON, request
43
+ end
44
+
45
+ # The object is not a valid JSON object as expected
46
+ def _455(request)
47
+ raise RubyRabbitmqJanus::Errors::Janus::Responses::InvalidJSONObject, request
48
+ end
49
+
50
+ # A mandatory element is missing in the message
51
+ def _456(request)
52
+ raise RubyRabbitmqJanus::Errors::Janus::Responses::MissingMandatoryElement, request
53
+ end
54
+
55
+ # The request cannot be handled for this webserver path
56
+ def _457(request)
57
+ raise RubyRabbitmqJanus::Errors::Janus::Responses::InvalidRequestPath, request
58
+ end
59
+
60
+ # The session the request refers to doesn't exist
61
+ def _458(request)
62
+ raise RubyRabbitmqJanus::Errors::Janus::Responses::SessionNotFound, request
63
+ end
64
+
65
+ # The handle the request refers to doesn't exist
66
+ def _459(request)
67
+ raise RubyRabbitmqJanus::Errors::Janus::Responses::HandleNotFound, request
68
+ end
69
+
70
+ # The plugin the request wants to talk to doesn't exist
71
+ def _460(request)
72
+ raise RubyRabbitmqJanus::Errors::Janus::Responses::PluginNotFound, request
73
+ end
74
+
75
+ # An error occurring when trying to attach to
76
+ # a plugin and create a handle
77
+ def _461(request)
78
+ raise RubyRabbitmqJanus::Errors::Janus::Responses::PluginAttach, request
79
+ end
80
+
81
+ # An error occurring when trying to send a message/request to the plugin
82
+ def _462(request)
83
+ raise RubyRabbitmqJanus::Errors::Janus::Responses::PluginMessage, request
84
+ end
85
+
86
+ # brief An error occurring when trying to detach from
87
+ # a plugin and destroy the related handle
88
+ def _463(request)
89
+ raise RubyRabbitmqJanus::Errors::Janus::Responses::PluginDetach, request
90
+ end
91
+
92
+ # The Janus core doesn't support this SDP type
93
+ def _464(request)
94
+ raise RubyRabbitmqJanus::Errors::Janus::Responses::JSEPUnknownType, request
95
+ end
96
+
97
+ # The Session Description provided by the peer is invalid
98
+ def _465(request)
99
+ raise RubyRabbitmqJanus::Errors::Janus::Responses::JSEPInvalidSDP, request
100
+ end
101
+
102
+ # The stream a trickle candidate for does not exist or is invalid
103
+ def _466(request)
104
+ raise RubyRabbitmqJanus::Errors::Janus::Responses::TrickleInvalidStream, request
105
+ end
106
+
107
+ # A JSON element is of the wrong type
108
+ # (e.g., an integer instead of a string)
109
+ def _467(request)
110
+ raise RubyRabbitmqJanus::Errors::Janus::Responses::InvalidElementType, request
111
+ end
112
+
113
+ # The ID provided to create a new session is already in use
114
+ def _468(request)
115
+ raise RubyRabbitmqJanus::Errors::Janus::Responses::SessionConflit, request
116
+ end
117
+
118
+ # We got an ANSWER to an OFFER we never made
119
+ def _469(request)
120
+ raise RubyRabbitmqJanus::Errors::Janus::Responses::UnexpectedAnswer, request
121
+ end
122
+
123
+ # The auth token the request refers to doesn't exist
124
+ def _470(request)
125
+ raise RubyRabbitmqJanus::Errors::Janus::Responses::TokenNotFound, request
126
+ end
127
+
128
+ # The current request cannot be handled because
129
+ # of not compatible WebRTC state
130
+ def _471(request)
131
+ raise RubyRabbitmqJanus::Errors::Janus::Responses::WebRTCState, request
132
+ end
133
+
134
+ # The server is currently configured not to accept new sessions
135
+ def _472(request)
136
+ raise RubyRabbitmqJanus::Errors::Janus::Responses::NotAcceptingSession, request
137
+ end
138
+
139
+ # Unknown/undocumented error
140
+ def _490(request)
141
+ raise RubyRabbitmqJanus::Errors::Janus::Responses::Unknown, request
142
+ end
143
+
144
+ def respond_to_missing?(name, include_private); end
145
+
146
+ # rubocop:disable Style/MethodMissingSuper
147
+ def method_missing(_method, request)
148
+ default_error(request)
149
+ end
150
+ # rubocop:enable Style/MethodMissingSuper
151
+
152
+ def default_error(request)
153
+ raise RubyRabbitmqJanus::Errors::Janus::Responses::Nok, request
154
+ end
155
+ end
156
+ end
157
+ end
158
+ end
159
+ # rubocop:enable Metrics/LineLength