2019-04-17 10:06:35 -06:00
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
2022-11-27 11:20:29 -07:00
|
|
|
// SPDX-License-Identifier: MIT
|
2019-04-17 10:06:35 -06:00
|
|
|
|
2022-09-02 13:18:23 -06:00
|
|
|
package integration
|
2019-04-17 10:06:35 -06:00
|
|
|
|
|
|
|
import (
|
2023-07-18 12:14:47 -06:00
|
|
|
"strings"
|
|
|
|
|
2023-09-28 06:16:40 -06:00
|
|
|
"code.gitea.io/gitea/models"
|
2021-12-09 18:27:50 -07:00
|
|
|
repo_model "code.gitea.io/gitea/models/repo"
|
2021-11-24 02:49:20 -07:00
|
|
|
user_model "code.gitea.io/gitea/models/user"
|
2022-01-19 16:26:57 -07:00
|
|
|
"code.gitea.io/gitea/modules/git"
|
2019-05-11 04:21:34 -06:00
|
|
|
api "code.gitea.io/gitea/modules/structs"
|
2021-11-24 00:56:24 -07:00
|
|
|
files_service "code.gitea.io/gitea/services/repository/files"
|
2019-04-17 10:06:35 -06:00
|
|
|
)
|
|
|
|
|
2023-05-29 03:41:35 -06:00
|
|
|
func createFileInBranch(user *user_model.User, repo *repo_model.Repository, treePath, branchName, content string) (*api.FilesResponse, error) {
|
|
|
|
opts := &files_service.ChangeRepoFilesOptions{
|
|
|
|
Files: []*files_service.ChangeRepoFile{
|
|
|
|
{
|
2023-07-18 12:14:47 -06:00
|
|
|
Operation: "create",
|
|
|
|
TreePath: treePath,
|
|
|
|
ContentReader: strings.NewReader(content),
|
2023-05-29 03:41:35 -06:00
|
|
|
},
|
|
|
|
},
|
2019-04-17 10:06:35 -06:00
|
|
|
OldBranch: branchName,
|
|
|
|
Author: nil,
|
|
|
|
Committer: nil,
|
|
|
|
}
|
2023-05-29 03:41:35 -06:00
|
|
|
return files_service.ChangeRepoFiles(git.DefaultContext, repo, user, opts)
|
2019-04-17 10:06:35 -06:00
|
|
|
}
|
|
|
|
|
2023-09-28 06:16:40 -06:00
|
|
|
func deleteFileInBranch(user *user_model.User, repo *repo_model.Repository, treePath, branchName string) (*api.FilesResponse, error) {
|
|
|
|
opts := &files_service.ChangeRepoFilesOptions{
|
|
|
|
Files: []*files_service.ChangeRepoFile{
|
|
|
|
{
|
|
|
|
Operation: "delete",
|
|
|
|
TreePath: treePath,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
OldBranch: branchName,
|
|
|
|
Author: nil,
|
|
|
|
Committer: nil,
|
|
|
|
}
|
|
|
|
return files_service.ChangeRepoFiles(git.DefaultContext, repo, user, opts)
|
|
|
|
}
|
|
|
|
|
|
|
|
func createOrReplaceFileInBranch(user *user_model.User, repo *repo_model.Repository, treePath, branchName, content string) error {
|
|
|
|
_, err := deleteFileInBranch(user, repo, treePath, branchName)
|
|
|
|
|
|
|
|
if err != nil && !models.IsErrRepoFileDoesNotExist(err) {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
_, err = createFileInBranch(user, repo, treePath, branchName, content)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2023-05-29 03:41:35 -06:00
|
|
|
func createFile(user *user_model.User, repo *repo_model.Repository, treePath string) (*api.FilesResponse, error) {
|
2021-04-16 12:30:16 -06:00
|
|
|
return createFileInBranch(user, repo, treePath, repo.DefaultBranch, "This is a NEW file")
|
2019-04-17 10:06:35 -06:00
|
|
|
}
|