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