Class: Vx::ServiceConnector::Bitbucket::Files

Inherits:
Struct
  • Object
show all
Defined in:
lib/vx/service_connector/bitbucket/files.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#repoObject

Returns the value of attribute repo

Returns:

  • (Object)

    the current value of repo



6
7
8
# File 'lib/vx/service_connector/bitbucket/files.rb', line 6

def repo
  @repo
end

#sessionObject

Returns the value of attribute session

Returns:

  • (Object)

    the current value of session



6
7
8
# File 'lib/vx/service_connector/bitbucket/files.rb', line 6

def session
  @session
end

Instance Method Details

#get(sha, path) ⇒ Object



8
9
10
11
12
13
14
15
16
17
# File 'lib/vx/service_connector/bitbucket/files.rb', line 8

def get(sha, path)
  begin
    re = session.get("api/1.0/repositories/#{repo.full_name}/src/#{sha}/#{path}")
    # TODO: check and remove source
    re['source'] || re['data']
  rescue RequestError => e
    $stderr.puts "ERROR: #{e.inspect}"
    nil
  end
end