BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
b25ebfe6
Commit
b25ebfe6
authored
Nov 11, 2016
by
Stan Hu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Lazily load Bitbucket connection
parent
98604883
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
4 deletions
+9
-4
connection.rb
lib/bitbucket/connection.rb
+9
-4
No files found.
lib/bitbucket/connection.rb
View file @
b25ebfe6
...
@@ -13,13 +13,18 @@ module Bitbucket
...
@@ -13,13 +13,18 @@ module Bitbucket
@expires_at
=
options
.
fetch
(
:expires_at
)
@expires_at
=
options
.
fetch
(
:expires_at
)
@expires_in
=
options
.
fetch
(
:expires_in
)
@expires_in
=
options
.
fetch
(
:expires_in
)
@refresh_token
=
options
.
fetch
(
:refresh_token
)
@refresh_token
=
options
.
fetch
(
:refresh_token
)
end
@client
=
OAuth2
::
Client
.
new
(
provider
.
app_id
,
provider
.
app_secret
,
options
)
def
client
@connection
=
OAuth2
::
AccessToken
.
new
(
@client
,
@token
,
refresh_token:
@refresh_token
,
expires_at:
@expires_at
,
expires_in:
@expires_in
)
@client
||=
OAuth2
::
Client
.
new
(
provider
.
app_id
,
provider
.
app_secret
,
options
)
end
def
connection
@connection
||=
OAuth2
::
AccessToken
.
new
(
client
,
@token
,
refresh_token:
@refresh_token
,
expires_at:
@expires_at
,
expires_in:
@expires_in
)
end
end
def
query
(
params
=
{})
def
query
(
params
=
{})
@query
.
update
(
params
)
@query
.
merge!
(
params
)
end
end
def
get
(
path
,
query
=
{})
def
get
(
path
,
query
=
{})
...
@@ -46,7 +51,7 @@ module Bitbucket
...
@@ -46,7 +51,7 @@ module Bitbucket
private
private
attr_reader
:
connection
,
:
expires_at
,
:expires_in
,
:refresh_token
,
:token
attr_reader
:expires_at
,
:expires_in
,
:refresh_token
,
:token
def
build_url
(
path
)
def
build_url
(
path
)
return
path
if
path
.
starts_with?
(
root_url
)
return
path
if
path
.
starts_with?
(
root_url
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment