-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
226 additions
and
210 deletions.
There are no files selected for viewing
96 changes: 96 additions & 0 deletions
96
...ommon/common-mongo-reactive/src/main/kotlin/com/tencent/bkrepo/common/mongo/util/Pages.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,96 @@ | ||
/* | ||
* Tencent is pleased to support the open source community by making BK-CI 蓝鲸持续集成平台 available. | ||
* | ||
* Copyright (C) 2021 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.common.mongo.util | ||
|
||
import com.tencent.bkrepo.common.api.constant.DEFAULT_PAGE_NUMBER | ||
import com.tencent.bkrepo.common.api.constant.DEFAULT_PAGE_SIZE | ||
import com.tencent.bkrepo.common.api.pojo.Page | ||
import org.springframework.data.domain.PageRequest | ||
|
||
/** | ||
* 分页工具类 | ||
*/ | ||
object Pages { | ||
|
||
/** | ||
* 根据页码[page]和分页大小[size]构造[PageRequest] | ||
* | ||
* [page]从1开始,如果传入值小于1则置为1 | ||
* [size]如果小于0则置为默认分页大小20 | ||
* | ||
* [PageRequest]要求页码从0开始 | ||
*/ | ||
fun ofRequest(page: Int, size: Int): PageRequest { | ||
val pageNumber = if (page <= 0) DEFAULT_PAGE_NUMBER else page | ||
val pageSize = if (page < 0) DEFAULT_PAGE_SIZE else size | ||
return PageRequest.of(pageNumber - 1, pageSize) | ||
} | ||
|
||
/** | ||
* 将查询到的所有数据通过内存分页构造结果 | ||
* | ||
* @param total 所有数据 | ||
* @param page 页码,从1开始,如果传入值小于1则置为1 | ||
* @param size 分页大小,如果小于0则置为默认分页大小20 | ||
*/ | ||
inline fun <reified T> buildPage(total: List<T>, page: Int, size: Int): Page<T> { | ||
val pageNumber = if (page <= 0) DEFAULT_PAGE_NUMBER else page | ||
val pageSize = if (page < 0) DEFAULT_PAGE_SIZE else size | ||
val totalRecords = total.size | ||
val offset = (pageNumber - 1) * pageSize | ||
val records = if (offset > totalRecords) { | ||
emptyList() | ||
} else if (offset + pageSize > totalRecords) { | ||
total.subList(offset, totalRecords) | ||
} else { | ||
total.subList(offset, offset + pageSize) | ||
} | ||
return Page( | ||
pageNumber = pageNumber, | ||
pageSize = pageSize, | ||
totalRecords = totalRecords.toLong(), | ||
records = records | ||
) | ||
} | ||
|
||
/** | ||
* 创建分页响应结果 | ||
* | ||
* @param pageRequest 分页请求 | ||
* @param totalRecords 数据总数 | ||
* @param records 数据列表 | ||
*/ | ||
inline fun <reified T> ofResponse(pageRequest: PageRequest, totalRecords: Long, records: List<T>): Page<T> { | ||
return Page( | ||
pageNumber = pageRequest.pageNumber + 1, | ||
pageSize = pageRequest.pageSize, | ||
totalRecords = totalRecords, | ||
records = records | ||
) | ||
} | ||
} |
51 changes: 51 additions & 0 deletions
51
...ckend/fs/api-fs-server/src/main/kotlin/com/tencent/bkrepo/fs/server/api/FsClientClient.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,51 @@ | ||
/* | ||
* 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.fs.server.api | ||
|
||
import com.tencent.bkrepo.common.api.constant.FS_SERVER_SERVICE_NAME | ||
import com.tencent.bkrepo.common.api.pojo.Page | ||
import com.tencent.bkrepo.common.api.pojo.Response | ||
import com.tencent.bkrepo.fs.server.pojo.ClientDetail | ||
import org.springframework.cloud.openfeign.FeignClient | ||
import org.springframework.web.bind.annotation.GetMapping | ||
import org.springframework.web.bind.annotation.PathVariable | ||
import org.springframework.web.bind.annotation.RequestMapping | ||
import org.springframework.web.bind.annotation.RequestParam | ||
|
||
@FeignClient(FS_SERVER_SERVICE_NAME, contextId = "ClientClient", primary = false) | ||
@RequestMapping("/service/client") | ||
interface FsClientClient { | ||
|
||
@GetMapping("/list/{projectId}/{repoName}") | ||
fun listClients( | ||
@PathVariable projectId: String, | ||
@PathVariable repoName: String, | ||
@RequestParam pageNumber: Int, | ||
@RequestParam pageSize: Int | ||
): Response<Page<ClientDetail>> | ||
} |
38 changes: 38 additions & 0 deletions
38
...d/fs/api-fs-server/src/main/kotlin/com/tencent/bkrepo/fs/server/pojo/ClientListRequest.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,38 @@ | ||
/* | ||
* 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.fs.server.pojo | ||
|
||
/** | ||
* 客户端列表请求 | ||
*/ | ||
data class ClientListRequest( | ||
val projectId: String, | ||
val repoName: String, | ||
val pageNumber: Int, | ||
val pageSize: Int | ||
) |
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
42 changes: 0 additions & 42 deletions
42
...end/opdata/api-opdata/src/main/kotlin/com/tencent/bkrepo/opdata/pojo/ClientListRequest.kt
This file was deleted.
Oops, something went wrong.
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
50 changes: 0 additions & 50 deletions
50
src/backend/opdata/biz-opdata/src/main/kotlin/com/tencent/bkrepo/opdata/model/TFsClient.kt
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.