eyeq_metadata 1.0.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 +7 -0
- data/README.md +0 -0
- data/lib/eyeq_metadata.rb +89 -0
- metadata +101 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 4f801b5c424d6f085858aadf460c3d5ca43d001a
|
4
|
+
data.tar.gz: 8d2fe0f0fdfa6ab27faf891831dff80e1eeb928c
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: cac3cd3b1dd923852bd1815f9f4c7b150598aae3914e6d803c20acea3a8cc1da80c69302511393184972a8ad82b063fd6f6e26c15fddaf38da0e6aee2b056ba7
|
7
|
+
data.tar.gz: 284b6507154563354581dc941dfd4d1841fd03feee6e3464b7fcc53a2338210348dd1ae23144e7d205ecde6c5885ae482e9000a200443de2ca8fa52ac85cb109
|
data/README.md
ADDED
File without changes
|
@@ -0,0 +1,89 @@
|
|
1
|
+
require 'rest-client'
|
2
|
+
require 'nokogiri'
|
3
|
+
|
4
|
+
class EyeQ
|
5
|
+
attr_reader :eyeq_url, :eyeq_userid, :eyeq_clientid
|
6
|
+
|
7
|
+
def initialize(clientid, clientid_tag)
|
8
|
+
@eyeq_url = "https://c#{clientid}.ipg.web.cddbp.net/webapi/xml/1.0/"
|
9
|
+
@eyeq_clientid = "#{clientid}-#{clientid_tag}"
|
10
|
+
|
11
|
+
register_query = "<QUERIES><QUERY CMD='REGISTER'><CLIENT>#{@eyeq_clientid}</CLIENT></QUERY></QUERIES>"
|
12
|
+
response = RestClient.post(@eyeq_url, register_query, content_type: 'text/xml')
|
13
|
+
response_xml = Nokogiri::XML(response.body)
|
14
|
+
|
15
|
+
raise 'Invalid clientid or clientid_tag. Query returned an ERROR.' if response_xml.css('RESPONSE').attr('STATUS').text == 'ERROR'
|
16
|
+
@eyeq_userid = response_xml.css('USER').text
|
17
|
+
end
|
18
|
+
|
19
|
+
def request(options)
|
20
|
+
query = construct_query(options)
|
21
|
+
response = RestClient.post(@eyeq_url, query, content_type: 'text/xml')
|
22
|
+
Nokogiri::XML(response.body)
|
23
|
+
end
|
24
|
+
|
25
|
+
private
|
26
|
+
|
27
|
+
def construct_query(options)
|
28
|
+
query = '<QUERIES>'
|
29
|
+
query += options[:lang].nil? ? lang : lang(options[:lang])
|
30
|
+
query += options[:country].nil? ? country : country(options[:country])
|
31
|
+
query + "#{auth}#{get_query_type(options)}</QUERIES>"
|
32
|
+
end
|
33
|
+
|
34
|
+
def get_query_type(options)
|
35
|
+
query_type = nil
|
36
|
+
|
37
|
+
case options[:query_type].downcase
|
38
|
+
when 'tvchannel_fetch'
|
39
|
+
throw new Error(':gnid option required') if options[:gnid].nil?
|
40
|
+
query_type = tvchannel_fetch(options[:gnid])
|
41
|
+
when 'tvchannel_lookup_by_provider'
|
42
|
+
throw new Error(':gnid option required') if options[:gnid].nil?
|
43
|
+
query_type = tvchannel_lookup_by_provider(options[:gnid])
|
44
|
+
when 'tvprovider_na'
|
45
|
+
throw new Error(':zipcode option required') if options[:zipcode].nil?
|
46
|
+
query_type = tvprovider_na(options[:zipcode])
|
47
|
+
when 'tvprovider_or'
|
48
|
+
throw new Error(':tvregion option required') if options[:tvregion].nil?
|
49
|
+
query_type = tvprovider_or(options[:tvregion])
|
50
|
+
when 'tvprogram_fetch'
|
51
|
+
throw new Error(':gnid option required') if options[:gnid].nil?
|
52
|
+
query_type = tvprogram_fetch(options[:gnid])
|
53
|
+
end
|
54
|
+
|
55
|
+
query_type
|
56
|
+
end
|
57
|
+
|
58
|
+
def lang(lang = 'eng')
|
59
|
+
"<LANG>#{lang}</LANG>"
|
60
|
+
end
|
61
|
+
|
62
|
+
def country(country = 'usa')
|
63
|
+
"<COUNTRY>#{country}</COUNTRY>"
|
64
|
+
end
|
65
|
+
|
66
|
+
def auth
|
67
|
+
"<AUTH><CLIENT>#{@eyeq_clientid}</CLIENT><USER>#{@eyeq_userid}</USER></AUTH>"
|
68
|
+
end
|
69
|
+
|
70
|
+
def tvchannel_fetch(gnid)
|
71
|
+
"<QUERY CMD='TVCHANNEL_FETCH'><GN_ID>#{gnid}</GN_ID></QUERY>"
|
72
|
+
end
|
73
|
+
|
74
|
+
def tvchannel_lookup_by_provider(gnid)
|
75
|
+
"<QUERY CMD='TVCHANNEL_LOOKUP'><MODE>TVPROVIDER</MODE><GN_ID>#{gnid}</GN_ID></QUERY>"
|
76
|
+
end
|
77
|
+
|
78
|
+
def tvprovider_na(zipcode)
|
79
|
+
"<QUERY CMD='TVPROVIDER_LOOKUP'><POSTALCODE>#{zipcode}</POSTALCODE></QUERY>"
|
80
|
+
end
|
81
|
+
|
82
|
+
def tvprovider_or(tvregion)
|
83
|
+
"<QUERY CMD='TVPROVIDER_LOOKUP'><TVREGION>#{tvregion}</TVREGION></QUERY>"
|
84
|
+
end
|
85
|
+
|
86
|
+
def tvprogram_fetch(gnid)
|
87
|
+
"<QUERY CMD='TVPROGRAM_FETCH'><GN_ID>#{gnid}</GN_ID></QUERY>"
|
88
|
+
end
|
89
|
+
end
|
metadata
ADDED
@@ -0,0 +1,101 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: eyeq_metadata
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Isaiah Soung
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2016-08-03 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: rest-client
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: 2.0.0
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: 2.0.0
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rubocop
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: 0.41.1
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: 0.41.1
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rspec
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: 3.5.0
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: 3.5.0
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: webmock
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: 2.1.0
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: 2.1.0
|
69
|
+
description: Request Gracenote EyeQ metadata using the eyeq api
|
70
|
+
email:
|
71
|
+
executables: []
|
72
|
+
extensions: []
|
73
|
+
extra_rdoc_files: []
|
74
|
+
files:
|
75
|
+
- README.md
|
76
|
+
- lib/eyeq_metadata.rb
|
77
|
+
homepage: https://github.com/Isoung/eyeq_metadata
|
78
|
+
licenses:
|
79
|
+
- MIT
|
80
|
+
metadata: {}
|
81
|
+
post_install_message:
|
82
|
+
rdoc_options: []
|
83
|
+
require_paths:
|
84
|
+
- lib
|
85
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - ">="
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: 2.0.0
|
90
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
91
|
+
requirements:
|
92
|
+
- - ">="
|
93
|
+
- !ruby/object:Gem::Version
|
94
|
+
version: '0'
|
95
|
+
requirements: []
|
96
|
+
rubyforge_project:
|
97
|
+
rubygems_version: 2.5.2
|
98
|
+
signing_key:
|
99
|
+
specification_version: 4
|
100
|
+
summary: HTTP client used specifically to request metadata from Gracenote EyeQ
|
101
|
+
test_files: []
|