Class: OSDb::Server

Inherits:
Object
  • Object
show all
Defined in:
lib/osdb/server.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(options = {}) ⇒ Server

Returns a new instance of Server.



10
11
12
13
14
15
16
# File 'lib/osdb/server.rb', line 10

def initialize(options={})
  @username = options[:username] || ''
  @password = options[:password] || ''
  @language = options[:language] || 'eng'
  @useragent = options[:useragent] || 'ruby-osdb v0.1'
  @client = ::XMLRPC::Client.new(*options.values_at(:host, :path, :port, :proxy_host, :proxy_port, :http_user, :http_password, :use_ssl, :timeout))
end

Instance Attribute Details

#clientObject (readonly)

Returns the value of attribute client.



8
9
10
# File 'lib/osdb/server.rb', line 8

def client
  @client
end

#languageObject (readonly)

Returns the value of attribute language.



8
9
10
# File 'lib/osdb/server.rb', line 8

def language
  @language
end

#passwordObject (readonly)

Returns the value of attribute password.



8
9
10
# File 'lib/osdb/server.rb', line 8

def password
  @password
end

#useragentObject (readonly)

Returns the value of attribute useragent.



8
9
10
# File 'lib/osdb/server.rb', line 8

def useragent
  @useragent
end

#usernameObject (readonly)

Returns the value of attribute username.



8
9
10
# File 'lib/osdb/server.rb', line 8

def username
  @username
end

Instance Method Details

#check_movie_hash(*hashes) ⇒ Object



35
36
37
# File 'lib/osdb/server.rb', line 35

def check_movie_hash(*hashes)
  client.call('CheckMovieHash', token, hashes)
end

#infoObject



44
45
46
# File 'lib/osdb/server.rb', line 44

def info
  client.call('ServerInfo')
end

#loginObject



22
23
24
25
26
27
28
# File 'lib/osdb/server.rb', line 22

def 
  response = client.call('LogIn', username, password, language, useragent)
  if response['status'] != '200 OK'
    raise LoginFailed.new("Failed to login with #{username} : #{password}. Server return code: #{response['status']}")
  end
  response['token']
end

#logoutObject



30
31
32
33
# File 'lib/osdb/server.rb', line 30

def logout
  client.call('LogOut', token)
  @token = nil
end

#search_subtitles(*queries) ⇒ Object



39
40
41
42
# File 'lib/osdb/server.rb', line 39

def search_subtitles(*queries)
  subs = client.call('SearchSubtitles', token, queries)['data']
  subs ? subs.map{ |s| Sub.new(s) } : []
end

#tokenObject



18
19
20
# File 'lib/osdb/server.rb', line 18

def token
  @token ||= 
end