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