-
Notifications
You must be signed in to change notification settings - Fork 249
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(bcs-bscp): feedserver support sync download file api #3122
Merged
ifooth
merged 6 commits into
TencentBlueKing:master
from
AlkaidChan:feat/p2p-sync-download
Apr 24, 2024
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
435c36d
feat(bk-bscp-feed): feedserver support p2p sync download file
AlkaidChan 2e1d5be
feat(bk-bscp-feed): feedserver support p2p sync download file
AlkaidChan 6579512
feat(bk-bscp-feed): feedserver support p2p sync download file
AlkaidChan 6dbb763
feat(bk-bscp-feed): feedserver support p2p sync download file
AlkaidChan 81ad828
Merge remote-tracking branch 'upstream/master' into feat/p2p-sync-dow…
AlkaidChan 2339eb9
feat(bk-bscp-feed): feedserver support p2p sync download file
AlkaidChan File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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
67 changes: 67 additions & 0 deletions
67
bcs-services/bcs-bscp/cmd/feed-server/bll/async-download/asyncdownload.go
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,67 @@ | ||
/* | ||
* Tencent is pleased to support the open source community by making Blueking Container Service available. | ||
* Copyright (C) 2019 THL A29 Limited, a Tencent company. All rights reserved. | ||
* Licensed under the MIT License (the "License"); you may not use this file except | ||
* in compliance with the License. You may obtain a copy of the License at | ||
* http://opensource.org/licenses/MIT | ||
* Unless required by applicable law or agreed to in writing, software distributed under | ||
* the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, | ||
* either express or implied. See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
// Package asyncdownload NOTES | ||
package asyncdownload | ||
|
||
import ( | ||
clientset "github.com/TencentBlueKing/bk-bcs/bcs-services/bcs-bscp/cmd/feed-server/bll/client-set" | ||
"github.com/TencentBlueKing/bk-bcs/bcs-services/bcs-bscp/cmd/feed-server/bll/lcache" | ||
"github.com/TencentBlueKing/bk-bcs/bcs-services/bcs-bscp/cmd/feed-server/bll/types" | ||
"github.com/TencentBlueKing/bk-bcs/bcs-services/bcs-bscp/pkg/kit" | ||
pkgtypes "github.com/TencentBlueKing/bk-bcs/bcs-services/bcs-bscp/pkg/types" | ||
) | ||
|
||
// New initialize the release service instance. | ||
func New(cs *clientset.ClientSet, cache *lcache.Cache) (*AsyncDownload, error) { | ||
return &AsyncDownload{ | ||
cs: cs, | ||
cache: cache, | ||
}, nil | ||
} | ||
|
||
// AsyncDownload defines async download related operations. | ||
type AsyncDownload struct { | ||
cs *clientset.ClientSet | ||
cache *lcache.Cache | ||
} | ||
|
||
// CreateAsyncDownloadTask create sync download task record. | ||
func (ad *AsyncDownload) CreateAsyncDownloadTask(kt *kit.Kit, opts *types.AsyncDownloadTask) error { | ||
return ad.cache.AsyncDownload.SetAsyncDownloadTask(kt, &pkgtypes.AsyncDownloadTaskCache{ | ||
BizID: opts.BizID, | ||
AppID: opts.AppID, | ||
TaskID: opts.TaskID, | ||
FilePath: opts.FilePath, | ||
FileName: opts.FileName, | ||
}) | ||
} | ||
|
||
// GetAsyncDownloadTask get sync download task record. | ||
func (ad *AsyncDownload) GetAsyncDownloadTask(kt *kit.Kit, bizID uint32, taskID string) ( | ||
*types.AsyncDownloadTask, error) { | ||
|
||
data, err := ad.cache.AsyncDownload.GetAsyncDownloadTask(kt, bizID, taskID) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
task := &types.AsyncDownloadTask{ | ||
BizID: data.BizID, | ||
AppID: data.AppID, | ||
TaskID: data.TaskID, | ||
FilePath: data.FilePath, | ||
FileName: data.FileName, | ||
} | ||
|
||
return task, nil | ||
} |
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.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
这里怎么没有lint错误