forked from TencentBlueKing/bk-repo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: 支持仓库关闭默认权限 TencentBlueKing#2164
* feat:目录权限新增配置---禁止根目录权限 TencentBlueKing#2166 * feat:目录权限新增配置---禁止根目录权限 TencentBlueKing#2166 * feat:目录权限新增配置---禁止根目录权限 TencentBlueKing#2166 * feat: 支持仓库关闭默认权限 TencentBlueKing#2164 * feat: 支持仓库关闭默认权限 TencentBlueKing#2164 * feat: 支持仓库关闭默认权限 TencentBlueKing#2164 * feat: 支持仓库关闭默认权限 TencentBlueKing#2164 * feat: 支持仓库关闭默认权限 TencentBlueKing#2164 * feat: 支持仓库关闭默认权限 TencentBlueKing#2164 * feat: 支持仓库关闭默认权限 TencentBlueKing#2164 * feat: 支持仓库关闭默认权限 TencentBlueKing#2164 * feat: 支持仓库关闭默认权限 TencentBlueKing#2164 * feat: 支持仓库关闭默认权限 TencentBlueKing#2164 * feat: 支持仓库关闭默认权限 TencentBlueKing#2164 * feat: 支持仓库关闭默认权限 TencentBlueKing#2164 * feat: 支持仓库关闭默认权限 TencentBlueKing#2164 * feat: 支持仓库关闭默认权限 TencentBlueKing#2164 * feat: 支持仓库关闭默认权限 TencentBlueKing#2164 --------- Co-authored-by: lannoy0523 <935275025@qq.com>
- Loading branch information
1 parent
e48226d
commit f273e29
Showing
24 changed files
with
517 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
75 changes: 75 additions & 0 deletions
75
...th/biz-auth/src/main/kotlin/com/tencent/bkrepo/auth/controller/user/RepoModeController.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
/* | ||
* Tencent is pleased to support the open source community by making BK-CI 蓝鲸持续集成平台 available. | ||
* | ||
* Copyright (C) 2024 THL A29 Limited, a Tencent company. All rights reserved. | ||
* | ||
* BK-CI 蓝鲸持续集成平台 is licensed under the MIT license. | ||
* | ||
* A copy of the MIT License is included in this file. | ||
* | ||
* | ||
* Terms of the MIT License: | ||
* --------------------------------------------------- | ||
* Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated | ||
* documentation files (the "Software"), to deal in the Software without restriction, including without limitation the | ||
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to | ||
* permit persons to whom the Software is furnished to do so, subject to the following conditions: | ||
* | ||
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of | ||
* the Software. | ||
* | ||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT | ||
* LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN | ||
* NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, | ||
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE | ||
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | ||
*/ | ||
|
||
|
||
package com.tencent.bkrepo.auth.controller.user | ||
|
||
import com.tencent.bkrepo.auth.controller.OpenResource | ||
import com.tencent.bkrepo.auth.pojo.permission.RepoModeStatus | ||
import com.tencent.bkrepo.auth.pojo.authconfig.RepoAuthStatusRequest | ||
import com.tencent.bkrepo.auth.service.PermissionService | ||
import com.tencent.bkrepo.auth.service.RepoModeService | ||
import com.tencent.bkrepo.common.api.pojo.Response | ||
import com.tencent.bkrepo.common.service.util.ResponseBuilder | ||
import org.springframework.web.bind.annotation.RestController | ||
import org.springframework.web.bind.annotation.RequestMapping | ||
import org.springframework.web.bind.annotation.GetMapping | ||
import org.springframework.web.bind.annotation.RequestParam | ||
import org.springframework.web.bind.annotation.PostMapping | ||
import org.springframework.web.bind.annotation.RequestBody | ||
|
||
@RestController | ||
@RequestMapping("/api/mode/repo") | ||
class RepoModeController( | ||
private val repoModeService: RepoModeService, | ||
permissionService: PermissionService | ||
) : OpenResource(permissionService) { | ||
|
||
@GetMapping("/query") | ||
fun getStatus( | ||
@RequestParam projectId: String, | ||
@RequestParam repoName: String, | ||
): Response<RepoModeStatus> { | ||
preCheckProjectAdmin(projectId) | ||
val result = repoModeService.getAccessControlStatus(projectId, repoName) | ||
return ResponseBuilder.success(result) | ||
} | ||
|
||
@PostMapping("/toggle") | ||
fun toggleStatus( | ||
@RequestBody request: RepoAuthStatusRequest | ||
): Response<RepoModeStatus> { | ||
with(request) { | ||
preCheckProjectAdmin(projectId) | ||
repoModeService.createOrUpdateConfig(projectId, repoName, status) | ||
return ResponseBuilder.success( | ||
repoModeService.getAccessControlStatus(projectId, repoName) | ||
) | ||
} | ||
} | ||
|
||
} |
63 changes: 63 additions & 0 deletions
63
src/backend/auth/biz-auth/src/main/kotlin/com/tencent/bkrepo/auth/dao/RepoAuthConfigDao.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
/* | ||
* Tencent is pleased to support the open source community by making BK-CI 蓝鲸持续集成平台 available. | ||
* | ||
* Copyright (C) 2019 THL A29 Limited, a Tencent company. All rights reserved. | ||
* | ||
* BK-CI 蓝鲸持续集成平台 is licensed under the MIT license. | ||
* | ||
* A copy of the MIT License is included in this file. | ||
* | ||
* | ||
* Terms of the MIT License: | ||
* --------------------------------------------------- | ||
* Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated | ||
* documentation files (the "Software"), to deal in the Software without restriction, including without limitation the | ||
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to | ||
* permit persons to whom the Software is furnished to do so, subject to the following conditions: | ||
* | ||
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of | ||
* the Software. | ||
* | ||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT | ||
* LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN | ||
* NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, | ||
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE | ||
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | ||
*/ | ||
|
||
|
||
package com.tencent.bkrepo.auth.dao | ||
|
||
import com.tencent.bkrepo.auth.model.TRepoAuthConfig | ||
import com.tencent.bkrepo.common.mongo.dao.simple.SimpleMongoDao | ||
import com.tencent.bkrepo.common.security.util.SecurityUtils | ||
import org.springframework.data.mongodb.core.FindAndModifyOptions | ||
import org.springframework.data.mongodb.core.query.Criteria | ||
import org.springframework.data.mongodb.core.query.Query | ||
import org.springframework.data.mongodb.core.query.Update | ||
import org.springframework.stereotype.Repository | ||
import java.time.LocalDateTime | ||
|
||
@Repository | ||
class RepoAuthConfigDao : SimpleMongoDao<TRepoAuthConfig>() { | ||
fun findOneByProjectRepo(projectId: String, repoName: String): TRepoAuthConfig? { | ||
return this.findOne( | ||
Query.query( | ||
Criteria.where(TRepoAuthConfig::projectId.name).`is`(projectId) | ||
.and(TRepoAuthConfig::repoName.name).`is`(repoName) | ||
) | ||
) | ||
} | ||
|
||
fun upsertProjectRepo(projectId: String, repoName: String, status: Boolean): String { | ||
val query = Query.query( | ||
Criteria.where(TRepoAuthConfig::projectId.name).`is`(projectId) | ||
.and(TRepoAuthConfig::repoName.name).`is`(repoName) | ||
) | ||
val options = FindAndModifyOptions().returnNew(true).upsert(true) | ||
val update = Update().set(TRepoAuthConfig::accessControl.name, status) | ||
.set(TRepoAuthConfig::lastModifiedBy.name, SecurityUtils.getUserId()) | ||
.set(TRepoAuthConfig::lastModifiedDate.name, LocalDateTime.now()) | ||
return this.findAndModify(query, update, options, TRepoAuthConfig::class.java)!!.id!! | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.