2021-04-06 19:39:02 +00:00
|
|
|
// Copyright (c) 2021 The Srpmproc Authors
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
|
2021-02-24 07:27:51 +00:00
|
|
|
package data
|
|
|
|
|
|
|
|
import (
|
2022-11-06 03:53:02 +00:00
|
|
|
"log"
|
|
|
|
|
2021-02-24 07:27:51 +00:00
|
|
|
"github.com/go-git/go-billy/v5"
|
2021-09-10 18:14:33 +00:00
|
|
|
"github.com/go-git/go-git/v5/plumbing/transport"
|
2021-08-19 10:09:53 +00:00
|
|
|
"github.com/rocky-linux/srpmproc/pkg/blob"
|
2021-02-24 07:27:51 +00:00
|
|
|
)
|
|
|
|
|
2021-09-03 21:07:02 +00:00
|
|
|
type FsCreatorFunc func(branch string) (billy.Filesystem, error)
|
|
|
|
|
2021-02-24 07:27:51 +00:00
|
|
|
type ProcessData struct {
|
2021-04-25 10:58:13 +00:00
|
|
|
RpmLocation string
|
|
|
|
UpstreamPrefix string
|
|
|
|
Version int
|
|
|
|
GitCommitterName string
|
|
|
|
GitCommitterEmail string
|
|
|
|
Mode int
|
|
|
|
ModulePrefix string
|
|
|
|
ImportBranchPrefix string
|
|
|
|
BranchPrefix string
|
|
|
|
SingleTag string
|
2021-09-10 18:14:33 +00:00
|
|
|
Authenticator transport.AuthMethod
|
2021-04-25 10:58:13 +00:00
|
|
|
Importer ImportMode
|
|
|
|
BlobStorage blob.Storage
|
|
|
|
NoDupMode bool
|
|
|
|
ModuleMode bool
|
|
|
|
TmpFsMode string
|
|
|
|
NoStorageDownload bool
|
|
|
|
NoStorageUpload bool
|
|
|
|
ManualCommits []string
|
|
|
|
ModuleFallbackStream string
|
2022-04-21 04:30:33 +00:00
|
|
|
BranchSuffix string
|
|
|
|
StrictBranchMode bool
|
2021-09-03 21:07:02 +00:00
|
|
|
FsCreator FsCreatorFunc
|
2021-09-05 00:12:43 +00:00
|
|
|
CdnUrl string
|
2022-01-05 14:42:49 +00:00
|
|
|
Log *log.Logger
|
2022-05-05 02:25:07 +00:00
|
|
|
PackageVersion string
|
|
|
|
PackageRelease string
|
2022-09-28 03:32:50 +00:00
|
|
|
TaglessMode bool
|
2023-02-23 04:23:47 +00:00
|
|
|
Cdn string
|
2021-02-24 07:27:51 +00:00
|
|
|
}
|