Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Tatuya Kamada
gitlab-ce
Commits
6418c6f8
Commit
6418c6f8
authored
Aug 22, 2016
by
Douglas Barbosa Alexandre
Committed by
Stan Hu
Nov 21, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add an endpoint to get the user's repositories
parent
e2f7f32a
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
69 additions
and
2 deletions
+69
-2
lib/bitbucket/client.rb
lib/bitbucket/client.rb
+12
-2
lib/bitbucket/representation/repo.rb
lib/bitbucket/representation/repo.rb
+57
-0
No files found.
lib/bitbucket/client.rb
View file @
6418c6f8
...
@@ -4,10 +4,20 @@ module Bitbucket
...
@@ -4,10 +4,20 @@ module Bitbucket
@connection
=
options
.
fetch
(
:connection
,
Connection
.
new
(
options
))
@connection
=
options
.
fetch
(
:connection
,
Connection
.
new
(
options
))
end
end
def
repos
relative_path
=
"/repositories/
#{
user
.
username
}
"
paginator
=
Paginator
.
new
(
connection
,
relative_path
,
:repo
)
Collection
.
new
(
paginator
)
end
def
user
def
user
@user
||=
begin
parsed_response
=
connection
.
get
(
'/user'
)
parsed_response
=
connection
.
get
(
'/user'
)
Representation
::
User
.
new
(
parsed_response
)
Representation
::
User
.
new
(
parsed_response
)
end
end
end
private
private
...
...
lib/bitbucket/representation/repo.rb
0 → 100644
View file @
6418c6f8
module
Bitbucket
module
Representation
class
Repo
<
Representation
::
Base
attr_reader
:owner
,
:slug
def
initialize
(
raw
)
super
(
raw
)
if
full_name
&&
full_name
.
split
(
'/'
).
size
==
2
@owner
,
@slug
=
full_name
.
split
(
'/'
)
end
end
def
clone_url
(
token
=
nil
)
url
=
raw
[
'links'
][
'clone'
].
find
{
|
link
|
link
[
'name'
]
==
'https'
}.
fetch
(
'href'
)
if
token
.
present?
url
.
sub
(
/^[^\@]*/
,
"https://x-token-auth:
#{
token
}
"
)
else
url
end
end
def
description
raw
[
'description'
]
end
def
full_name
raw
[
'full_name'
]
end
def
has_issues?
raw
[
'has_issues'
]
end
def
name
raw
[
'name'
]
end
def
valid?
raw
[
'scm'
]
==
'git'
end
def
visibility_level
if
raw
[
'is_private'
]
Gitlab
::
VisibilityLevel
::
PRIVATE
else
Gitlab
::
VisibilityLevel
::
PUBLIC
end
end
def
to_s
full_name
end
end
end
end
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