require 'faraday/adapter/net_http' class Exercism class Api attr_reader :url, :user, :project_dir def initialize(url, user, project_dir = nil) @url = url @user = user @project_dir = project_dir end def conn conn = Faraday.new(:url => url) do |c| c.use Faraday::Adapter::NetHttp c.headers['User-Agent'] = user_agent end end def demo get_and_save('assignments/demo') end def fetch get_and_save('user/assignments/current') end def peek get_and_save('user/assignments/next') end def submit(filename) path = File.join(filename) contents = File.read path response = conn.post do |req| req.url endpoint('user/assignments') req.headers['Accept'] = 'application/json' req.headers['Content-Type'] = 'application/json' req.body = {:code => contents, :key => user.key, :path => path}.to_json end response end private def get_and_save(action) response = conn.get do |req| req.url endpoint(action) req.params['key'] = user.key end save response.body end def user_agent "github.com/kytrinyx/exercism CLI v#{Exercism::VERSION}" end def endpoint(action = nil) "/api/v1/#{action}".chomp('/') end def save(body) Assignment.save(JSON.parse(body), project_dir) end end end