Skip to content
GitLab
菜单
为什么选择 GitLab
定价
联系销售
探索
为什么选择 GitLab
定价
联系销售
探索
登录
获取免费试用
主导航
搜索或转到…
项目
GitLab
管理
动态
成员
标记
计划
议题
议题看板
里程碑
迭代
需求
代码
合并请求
仓库
分支
提交
标签
仓库图
比较修订版本
代码片段
锁定的文件
构建
流水线
作业
流水线计划
测试用例
产物
部署
发布
Package registry
Container registry
模型注册表
运维
环境
Terraform 模块
监控
事件
服务台
分析
价值流分析
贡献者分析
CI/CD 分析
仓库分析
代码评审分析
议题分析
洞察
模型实验
效能分析
帮助
帮助
支持
GitLab 文档
比较 GitLab 各版本
社区论坛
为极狐GitLab 提交贡献
提交反馈
隐私声明
快捷键
?
新增功能
4
代码片段
群组
项目
显示更多面包屑
gitlab-cn
GitLab
提交
33955584
提交
33955584
编辑于
12 years ago
作者:
Dmitriy Zaporozhets
浏览文件
操作
下载
差异文件
Merge branch 'api_for_user_creation' of dev.gitlabhq.com:gitlabhq
上级
0187ae4e
bda0a755
No related branches found
分支 包含提交
No related tags found
标签 包含提交
无相关合并请求
变更
4
隐藏空白变更内容
行内
左右并排
显示
4 个更改的文件
doc/api/users.md
+21
-0
21 个添加, 0 个删除
doc/api/users.md
lib/api/helpers.rb
+4
-0
4 个添加, 0 个删除
lib/api/helpers.rb
lib/api/users.rb
+26
-0
26 个添加, 0 个删除
lib/api/users.rb
spec/requests/api/users_spec.rb
+21
-0
21 个添加, 0 个删除
spec/requests/api/users_spec.rb
有
72 个添加
和
0 个删除
doc/api/users.md
+
21
−
0
浏览文件 @
33955584
...
@@ -65,6 +65,27 @@ Parameters:
...
@@ -65,6 +65,27 @@ Parameters:
}
}
```
```
## User creation
Create user. Available only for admin
```
POST /users
```
Parameters:
+
`email`
(required) - Email
+
`name`
(required) - Name
+
`password`
(required) - Password
+
`password_confirmation`
(required) - Password confirmation
+
`skype`
- Skype ID
+
`linkedin`
(required) - Linkedin
+
`twitter`
- Twitter account
+
`projects_limit`
- Limit projects wich user can create
Will return created user with status
`201 Created`
on success, or
`404 Not
found`
on fail.
## Current user
## Current user
Get currently authenticated user.
Get currently authenticated user.
...
...
此差异已折叠。
点击以展开。
lib/api/helpers.rb
+
4
−
0
浏览文件 @
33955584
...
@@ -22,6 +22,10 @@ def authenticate!
...
@@ -22,6 +22,10 @@ def authenticate!
unauthorized!
unless
current_user
unauthorized!
unless
current_user
end
end
def
authenticated_as_admin!
forbidden!
unless
current_user
.
is_admin?
end
def
authorize!
action
,
subject
def
authorize!
action
,
subject
unless
abilities
.
allowed?
(
current_user
,
action
,
subject
)
unless
abilities
.
allowed?
(
current_user
,
action
,
subject
)
forbidden!
forbidden!
...
...
此差异已折叠。
点击以展开。
lib/api/users.rb
+
26
−
0
浏览文件 @
33955584
...
@@ -23,6 +23,30 @@ class Users < Grape::API
...
@@ -23,6 +23,30 @@ class Users < Grape::API
@user
=
User
.
find
(
params
[
:id
])
@user
=
User
.
find
(
params
[
:id
])
present
@user
,
with:
Entities
::
User
present
@user
,
with:
Entities
::
User
end
end
# Create user. Available only for admin
#
# Parameters:
# email (required) - Email
# name (required) - Name
# password (required) - Password
# password_confirmation (required) - Password confirmation
# skype - Skype ID
# linkedin (required) - Linkedin
# twitter - Twitter account
# projects_limit - Limit projects wich user can create
# Example Request:
# POST /users
post
do
authenticated_as_admin!
attrs
=
attributes_for_keys
[
:email
,
:name
,
:password
,
:password_confirmation
,
:skype
,
:linkedin
,
:twitter
,
:projects_limit
]
user
=
User
.
new
attrs
if
user
.
save
present
user
,
with:
Entities
::
User
else
not_found!
end
end
end
end
resource
:user
do
resource
:user
do
...
@@ -78,6 +102,8 @@ class Users < Grape::API
...
@@ -78,6 +102,8 @@ class Users < Grape::API
key
=
current_user
.
keys
.
find
params
[
:id
]
key
=
current_user
.
keys
.
find
params
[
:id
]
key
.
delete
key
.
delete
end
end
end
end
end
end
end
end
此差异已折叠。
点击以展开。
spec/requests/api/users_spec.rb
+
21
−
0
浏览文件 @
33955584
...
@@ -4,6 +4,7 @@
...
@@ -4,6 +4,7 @@
include
ApiHelpers
include
ApiHelpers
let
(
:user
)
{
Factory
:user
}
let
(
:user
)
{
Factory
:user
}
let
(
:admin
)
{
Factory
:admin
}
let
(
:key
)
{
Factory
:key
,
user:
user
}
let
(
:key
)
{
Factory
:key
,
user:
user
}
describe
"GET /users"
do
describe
"GET /users"
do
...
@@ -32,6 +33,26 @@
...
@@ -32,6 +33,26 @@
end
end
end
end
describe
"POST /users"
do
before
{
admin
}
it
"should not create invalid user"
do
post
api
(
"/users"
,
admin
),
{
email:
"invalid email"
}
response
.
status
.
should
==
404
end
it
"should create user"
do
expect
{
post
api
(
"/users"
,
admin
),
Factory
.
attributes
(
:user
)
}.
to
change
{
User
.
count
}.
by
(
1
)
end
it
"shouldn't available for non admin users"
do
post
api
(
"/users"
,
user
),
Factory
.
attributes
(
:user
)
response
.
status
.
should
==
403
end
end
describe
"GET /user"
do
describe
"GET /user"
do
it
"should return current user"
do
it
"should return current user"
do
get
api
(
"/user"
,
user
)
get
api
(
"/user"
,
user
)
...
...
此差异已折叠。
点击以展开。
预览
0%
加载中
请重试
或
添加新附件
.
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
保存评论
取消
想要评论请
注册
或
登录