2012-07-05 15:57:45 +02:00
|
|
|
## List projects
|
|
|
|
|
2012-07-25 11:35:41 +02:00
|
|
|
Get a list of authenticated user's projects.
|
2012-07-05 15:57:45 +02:00
|
|
|
|
|
|
|
```
|
|
|
|
GET /projects
|
|
|
|
```
|
|
|
|
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"id": 3,
|
|
|
|
"code": "rails",
|
|
|
|
"name": "rails",
|
|
|
|
"description": null,
|
|
|
|
"path": "rails",
|
|
|
|
"default_branch": "master",
|
|
|
|
"owner": {
|
|
|
|
"id": 1,
|
|
|
|
"email": "john@example.com",
|
|
|
|
"name": "John Smith",
|
|
|
|
"blocked": false,
|
|
|
|
"created_at": "2012-05-23T08:00:58Z"
|
|
|
|
},
|
|
|
|
"private": true,
|
|
|
|
"issues_enabled": false,
|
|
|
|
"merge_requests_enabled": false,
|
|
|
|
"wall_enabled": true,
|
|
|
|
"wiki_enabled": true,
|
|
|
|
"created_at": "2012-05-23T08:05:02Z"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": 5,
|
|
|
|
"code": "gitlab",
|
|
|
|
"name": "gitlab",
|
|
|
|
"description": null,
|
|
|
|
"path": "gitlab",
|
|
|
|
"default_branch": "api",
|
|
|
|
"owner": {
|
|
|
|
"id": 1,
|
|
|
|
"email": "john@example.com",
|
|
|
|
"name": "John Smith",
|
|
|
|
"blocked": false,
|
|
|
|
"created_at": "2012-05-23T08:00:58Z"
|
|
|
|
},
|
|
|
|
"private": true,
|
|
|
|
"issues_enabled": true,
|
|
|
|
"merge_requests_enabled": true,
|
|
|
|
"wall_enabled": true,
|
|
|
|
"wiki_enabled": true,
|
|
|
|
"created_at": "2012-05-30T12:49:20Z"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
## Single project
|
|
|
|
|
|
|
|
Get an authenticated user's project.
|
|
|
|
|
|
|
|
```
|
|
|
|
GET /projects/:id
|
|
|
|
```
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
|
2012-07-25 11:35:41 +02:00
|
|
|
+ `id` (required) - The ID or code name of a project
|
2012-07-05 15:57:45 +02:00
|
|
|
|
2012-08-31 09:25:36 +02:00
|
|
|
```json
|
|
|
|
{
|
|
|
|
"id": 5,
|
|
|
|
"code": "gitlab",
|
|
|
|
"name": "gitlab",
|
|
|
|
"description": null,
|
|
|
|
"path": "gitlab",
|
|
|
|
"default_branch": "api",
|
|
|
|
"owner": {
|
|
|
|
"id": 1,
|
|
|
|
"email": "john@example.com",
|
|
|
|
"name": "John Smith",
|
|
|
|
"blocked": false,
|
|
|
|
"created_at": "2012-05-23T08:00:58Z"
|
|
|
|
},
|
|
|
|
"private": true,
|
|
|
|
"issues_enabled": true,
|
|
|
|
"merge_requests_enabled": true,
|
|
|
|
"wall_enabled": true,
|
|
|
|
"wiki_enabled": true,
|
|
|
|
"created_at": "2012-05-30T12:49:20Z"
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
## Create project
|
|
|
|
|
|
|
|
Create new project owned by user
|
|
|
|
|
|
|
|
```
|
|
|
|
POST /projects
|
|
|
|
```
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
|
|
|
|
+ `name` (required) - new project name
|
|
|
|
+ `code` (optional) - new project code, used project name if not set
|
|
|
|
+ `path` (optional) - new project path, user project name if not set
|
|
|
|
|
2012-08-31 09:27:45 +02:00
|
|
|
Will return created project with status `201 Created` on success, or `404 Not
|
|
|
|
found` on fail.
|
|
|
|
|
2012-07-05 15:57:45 +02:00
|
|
|
|
|
|
|
## Project repository branches
|
|
|
|
|
2012-07-25 11:35:41 +02:00
|
|
|
Get a list of project repository branches sorted by name alphabetically.
|
2012-07-05 15:57:45 +02:00
|
|
|
|
|
|
|
```
|
|
|
|
GET /projects/:id/repository/branches
|
|
|
|
```
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
|
2012-07-25 11:35:41 +02:00
|
|
|
+ `id` (required) - The ID or code name of a project
|
2012-07-05 15:57:45 +02:00
|
|
|
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"name": "master",
|
|
|
|
"commit": {
|
|
|
|
"id": "7b5c3cc8be40ee161ae89a06bba6229da1032a0c",
|
|
|
|
"parents": [
|
|
|
|
{
|
|
|
|
"id": "4ad91d3c1144c406e50c7b33bae684bd6837faf8"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"tree": "46e82de44b1061621357f24c05515327f2795a95",
|
|
|
|
"message": "add projects API",
|
|
|
|
"author": {
|
|
|
|
"name": "John Smith",
|
|
|
|
"email": "john@example.com"
|
|
|
|
},
|
|
|
|
"committer": {
|
|
|
|
"name": "John Smith",
|
|
|
|
"email": "john@example.com"
|
|
|
|
},
|
|
|
|
"authored_date": "2012-06-27T05:51:39-07:00",
|
|
|
|
"committed_date": "2012-06-28T03:44:20-07:00"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
2012-07-26 16:29:53 +02:00
|
|
|
Get a single project repository branch.
|
|
|
|
|
|
|
|
```
|
|
|
|
GET /projects/:id/repository/branches/:branch
|
|
|
|
```
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
|
|
|
|
+ `id` (required) - The ID or code name of a project
|
|
|
|
+ `branch` (required) - The name of the branch
|
|
|
|
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"name": "master",
|
|
|
|
"commit": {
|
|
|
|
"id": "7b5c3cc8be40ee161ae89a06bba6229da1032a0c",
|
|
|
|
"parents": [
|
|
|
|
{
|
|
|
|
"id": "4ad91d3c1144c406e50c7b33bae684bd6837faf8"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"tree": "46e82de44b1061621357f24c05515327f2795a95",
|
|
|
|
"message": "add projects API",
|
|
|
|
"author": {
|
|
|
|
"name": "John Smith",
|
|
|
|
"email": "john@example.com"
|
|
|
|
},
|
|
|
|
"committer": {
|
|
|
|
"name": "John Smith",
|
|
|
|
"email": "john@example.com"
|
|
|
|
},
|
|
|
|
"authored_date": "2012-06-27T05:51:39-07:00",
|
|
|
|
"committed_date": "2012-06-28T03:44:20-07:00"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2012-07-05 15:57:45 +02:00
|
|
|
## Project repository tags
|
|
|
|
|
2012-07-25 11:35:41 +02:00
|
|
|
Get a list of project repository tags sorted by name in reverse alphabetical order.
|
2012-07-05 15:57:45 +02:00
|
|
|
|
|
|
|
```
|
|
|
|
GET /projects/:id/repository/tags
|
|
|
|
```
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
|
2012-07-25 11:35:41 +02:00
|
|
|
+ `id` (required) - The ID or code name of a project
|
2012-07-05 15:57:45 +02:00
|
|
|
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"name": "v1.0.0",
|
|
|
|
"commit": {
|
|
|
|
"id": "2695effb5807a22ff3d138d593fd856244e155e7",
|
|
|
|
"parents": [
|
|
|
|
|
|
|
|
],
|
|
|
|
"tree": "38017f2f189336fe4497e9d230c5bb1bf873f08d",
|
|
|
|
"message": "Initial commit",
|
|
|
|
"author": {
|
|
|
|
"name": "John Smith",
|
|
|
|
"email": "john@example.com"
|
|
|
|
},
|
|
|
|
"committer": {
|
|
|
|
"name": "Jack Smith",
|
|
|
|
"email": "jack@example.com"
|
|
|
|
},
|
|
|
|
"authored_date": "2012-05-28T04:42:42-07:00",
|
|
|
|
"committed_date": "2012-05-28T04:42:42-07:00"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
2012-07-26 16:29:53 +02:00
|
|
|
## Raw blob content
|
|
|
|
|
|
|
|
Get the raw file contents for a file.
|
|
|
|
|
|
|
|
```
|
|
|
|
GET /projects/:id/repository/commits/:sha/blob
|
|
|
|
```
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
|
|
|
|
+ `id` (required) - The ID or code name of a project
|
|
|
|
+ `sha` (required) - The commit or branch name
|
2012-07-31 16:34:06 +02:00
|
|
|
+ `filepath` (required) - The path the file
|
2012-07-26 16:29:53 +02:00
|
|
|
|
|
|
|
Will return the raw file contents.
|