zype 0.16.0 → 0.16.1
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/zype/client.rb +8 -9
- data/lib/zype/models.rb +10 -0
- data/lib/zype.rb +7 -5
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 27b72e9b7862c10fded9d1cf4aa57c0687bd511053dbecebf3363c064227baef
|
4
|
+
data.tar.gz: b5bd51a277e029f6540a4f348b0d7f4200320afb2cfa301cd29a03e0e8597a4b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4c4007e71f908355a5ec2de9009eaa44ab6d0a7d61cf5499ee9216b459719c0b301113d933f8e4bf6fbd985a536a3b290c435f7d6340a204f64941538e09512d
|
7
|
+
data.tar.gz: 0f124c89a3cd8b988fe5aa1a8d971102910b537349e45129221a50b2853881b184e50b68bcc1da15bea2a4cca73f79718f7405d2e3895d74bbf6d28c05d830fc
|
data/lib/zype/client.rb
CHANGED
@@ -18,31 +18,30 @@ module Zype
|
|
18
18
|
500 => ServerError
|
19
19
|
}.freeze
|
20
20
|
|
21
|
-
#
|
21
|
+
# Converts all files in lib/zype/models to be used as methods
|
22
22
|
class << self
|
23
|
-
|
24
|
-
model = file[/.*\/(.*?).rb$/, 1]
|
23
|
+
Models::LIST.each do |model|
|
25
24
|
define_method model do
|
26
|
-
constant = model.split(
|
25
|
+
constant = model.split('_').map(&:capitalize).join('')
|
27
26
|
Module.const_get("Zype::#{constant}").new
|
28
27
|
end
|
29
28
|
end
|
30
29
|
end
|
31
30
|
|
32
31
|
def get(path:, params: {})
|
33
|
-
self.class.get(path,
|
32
|
+
self.class.get(path, query: params, headers: headers)
|
34
33
|
end
|
35
34
|
|
36
35
|
def post(path:, params: {})
|
37
|
-
self.class.post(path,
|
36
|
+
self.class.post(path, query: params, headers: headers)
|
38
37
|
end
|
39
38
|
|
40
39
|
def put(path:, params: {})
|
41
|
-
self.class.put(path,
|
40
|
+
self.class.put(path, query: params, headers: headers)
|
42
41
|
end
|
43
42
|
|
44
43
|
def delete(path:, params: _)
|
45
|
-
self.class.delete(path,
|
44
|
+
self.class.delete(path, headers: headers)
|
46
45
|
end
|
47
46
|
|
48
47
|
def execute(method:, path:, params: {})
|
@@ -50,7 +49,7 @@ module Zype
|
|
50
49
|
raise NoApiKey if Zype.configuration.app_key.to_s.empty?
|
51
50
|
end
|
52
51
|
|
53
|
-
resp =
|
52
|
+
resp = send(method, path: path, params: params)
|
54
53
|
if resp.success?
|
55
54
|
resp['response'].nil? ? resp.parsed_response : resp['response']
|
56
55
|
else
|
data/lib/zype/models.rb
ADDED
@@ -0,0 +1,10 @@
|
|
1
|
+
module Zype
|
2
|
+
class Models
|
3
|
+
# Have to list out available methods instead of using Dir
|
4
|
+
LIST = %w[apps categories category_content_rules consumers device_categories devices encoders geo_ip live_events
|
5
|
+
live_manifests manifests pin plans players playlist_content_rules playlist_entitlements playlists
|
6
|
+
program_guides segments subscriptions subtitle_playlists subtitles transactions users video_content_rules
|
7
|
+
video_entitlements video_imports video_sources videos
|
8
|
+
].freeze
|
9
|
+
end
|
10
|
+
end
|
data/lib/zype.rb
CHANGED
@@ -1,9 +1,11 @@
|
|
1
1
|
require 'httparty'
|
2
|
-
require '
|
3
|
-
require '
|
4
|
-
require '
|
5
|
-
require '
|
6
|
-
require '
|
2
|
+
require 'zype/configuration.rb'
|
3
|
+
require 'zype/models.rb'
|
4
|
+
require 'zype/client.rb'
|
5
|
+
require 'zype/client/player_client.rb'
|
6
|
+
require 'zype/client/api_client.rb'
|
7
|
+
require 'zype/base_model.rb'
|
8
|
+
|
7
9
|
Dir[File.join(__dir__, '../lib/zype/models/base', '*.rb')].each { |file| require file }
|
8
10
|
Dir[File.join(__dir__, '../lib/zype/models', '*.rb')].each { |file| require file }
|
9
11
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: zype
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.16.
|
4
|
+
version: 0.16.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Zype
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-08-
|
11
|
+
date: 2018-08-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: httparty
|
@@ -64,6 +64,7 @@ files:
|
|
64
64
|
- lib/zype/client/api_client.rb
|
65
65
|
- lib/zype/client/player_client.rb
|
66
66
|
- lib/zype/configuration.rb
|
67
|
+
- lib/zype/models.rb
|
67
68
|
- lib/zype/models/apps.rb
|
68
69
|
- lib/zype/models/base/categories.rb
|
69
70
|
- lib/zype/models/base/consumers.rb
|