module Travis::Client::Methods

def access_token

def access_token
  session.access_token
end

def access_token=(token)

def access_token=(token)
  session.access_token = token
end

def account(name)

def account(name)
  session.find_one(Account, name)
end

def accounts

def accounts
  session.find_many(Account, :all => true)
end

def api_endpoint

def api_endpoint
  session.uri
end

def api_endpoint=(uri)

def api_endpoint=(uri)
  @explicit_api_endpoint = true
  session.uri = uri
end

def artifact(id)

def artifact(id)
  session.find_one(Artifact, id)
end

def broadcasts

def broadcasts
  session.find_many(Broadcast)
end

def build(id)

def build(id)
  session.find_one(Build, id)
end

def cancel(entity)

def cancel(entity)
  raise Error, "cannot cancel a #{entity.class.one}" unless entity.cancelable?
  session.post_raw("/#{entity.class.many}/#{entity.id}/cancel")
  entity.reload
end

def explicit_api_endpoint?

def explicit_api_endpoint?
  @explicit_api_endpoint ||= false
end

def github_auth(github_token)

def github_auth(github_token)
  reply = session.post_raw("/auth/github", :github_token => github_token)
  session.access_token = reply["access_token"]
end

def hooks

def hooks
  session.get('hooks')['hooks']
end

def job(id)

def job(id)
  session.find_one(Job, id)
end

def listen(*entities, &block)

def listen(*entities, &block)
  listener = Listener.new(session)
  listener.subscribe(*entities, &block)
  listener.listen
end

def repo(id_or_slug)

def repo(id_or_slug)
  session.find_one(Repository, id_or_slug)
end

def repos(params = {})

def repos(params = {})
  session.find_many(Repository, params)
end

def restart(entity)

def restart(entity)
  # btw, internally we call this reset, not restart, as it resets the state machine
  # but we thought that would be too confusing
  raise Error, "cannot restart a #{entity.class.one}" unless entity.restartable?
  session.post_raw('/requests', "#{entity.class.one}_id" => entity.id)
  entity.reload
end

def user

def user
  session.find_one(User)
rescue NotFound
  raise NotLoggedIn, 'currently not logged in'
end