Skip to content

Commit

Permalink
Started working on basic connection and auth.
Browse files Browse the repository at this point in the history
  • Loading branch information
Alan Johnson committed Jan 29, 2014
0 parents commit dddae07
Show file tree
Hide file tree
Showing 9 changed files with 140 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
*.gem
*.rbc
.bundle
.config
.yardoc
Gemfile.lock
InstalledFiles
_yardoc
coverage
doc/
lib/bundler/man
pkg
rdoc
spec/reports
test/tmp
test/version_tmp
tmp
4 changes: 4 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
source 'https://rubygems.org'

# Specify your gem's dependencies in cielo24.gemspec
gemspec
22 changes: 22 additions & 0 deletions LICENSE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
Copyright (c) 2014 Alan Johnson

MIT License

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1 change: 1 addition & 0 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
require "bundler/gem_tasks"
25 changes: 25 additions & 0 deletions cielo24.gemspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'cielo24/version'

Gem::Specification.new do |spec|
spec.name = "cielo24"
spec.version = Cielo24::VERSION
spec.authors = ["Alan Johnson"]
spec.email = ["[email protected]"]
spec.description = %q{Library for submitting and requesting captions from Cielo24.}
spec.summary = %q{Submit and request captions through Cielo24.}
spec.homepage = ""
spec.license = "MIT"

spec.files = `git ls-files`.split($/)
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]

spec.add_development_dependency "bundler", "~> 1.3"
spec.add_development_dependency "rake"

spec.add_dependency "httpclient", "~> 2.3.4.1"
end
9 changes: 9 additions & 0 deletions lib/cielo24.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
require_relative "cielo24/version"
require_relative "cielo24/authentication"
require_relative "cielo24/client"

require 'uri'
require 'httpclient'

module Cielo24
end
9 changes: 9 additions & 0 deletions lib/cielo24/authentication.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
module Cielo24
# Methods for authenticating.
module Authentication

# Public: Get a api token for this session.
def login
end
end
end
50 changes: 50 additions & 0 deletions lib/cielo24/client.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
module Cielo24

# Class for interacting with the Cielo24 API.
class Client
include Cielo24::Authentication

attr_accessor :connection

DEFAULT_URI = "https://api.cielo24.com"

# Public: Configures the connection.
#
# options - the configuration options for use with Cielo24.
# :username - The username to use for authentication.
# :password - The password to use for authentication.
# :uri - The uri to use for requests. Defaults to the Cielo24 API URI.
def self.configure(options = {})
@options = {uri: DEFAULT_URI}.merge(options)
end

# Internal: Our configuration settings for Cielo24.
def self.options
@options ||= {}
end

def initialize
self.connection = connect
end

# Internal: Returns an HTTPClient connection object.
def connect
connection = HTTPClient.new
connection.cookie_manager = nil

return connection
end

# Internal: Makes a get request with the given parameters.
#
# path - The path to request.
# params - The parameters to include with the request.
#
# Returns an HTTP::Message for the response.
def get(path, params = {})
uri = URI(self.class.options[:uri])
uri.path = path
connection.get(uri, params)
end
end
end
3 changes: 3 additions & 0 deletions lib/cielo24/version.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module Cielo24
VERSION = "0.0.1"
end

0 comments on commit dddae07

Please sign in to comment.