2019-04-18 00:06:35 +08:00
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
2022-11-28 02:20:29 +08:00
|
|
|
// SPDX-License-Identifier: MIT
|
2019-04-18 00:06:35 +08:00
|
|
|
|
2022-09-03 03:18:23 +08:00
|
|
|
package integration
|
2019-04-18 00:06:35 +08:00
|
|
|
|
|
|
|
import (
|
2021-12-10 09:27:50 +08:00
|
|
|
repo_model "code.gitea.io/gitea/models/repo"
|
2021-11-24 17:49:20 +08:00
|
|
|
user_model "code.gitea.io/gitea/models/user"
|
2022-01-20 07:26:57 +08:00
|
|
|
"code.gitea.io/gitea/modules/git"
|
2019-05-11 18:21:34 +08:00
|
|
|
api "code.gitea.io/gitea/modules/structs"
|
2021-11-24 15:56:24 +08:00
|
|
|
files_service "code.gitea.io/gitea/services/repository/files"
|
2019-04-18 00:06:35 +08:00
|
|
|
)
|
|
|
|
|
2021-12-10 09:27:50 +08:00
|
|
|
func createFileInBranch(user *user_model.User, repo *repo_model.Repository, treePath, branchName, content string) (*api.FileResponse, error) {
|
2021-11-24 15:56:24 +08:00
|
|
|
opts := &files_service.UpdateRepoFileOptions{
|
2019-04-18 00:06:35 +08:00
|
|
|
OldBranch: branchName,
|
|
|
|
TreePath: treePath,
|
2021-04-17 02:30:16 +08:00
|
|
|
Content: content,
|
2019-04-18 00:06:35 +08:00
|
|
|
IsNewFile: true,
|
|
|
|
Author: nil,
|
|
|
|
Committer: nil,
|
|
|
|
}
|
2022-01-20 07:26:57 +08:00
|
|
|
return files_service.CreateOrUpdateRepoFile(git.DefaultContext, repo, user, opts)
|
2019-04-18 00:06:35 +08:00
|
|
|
}
|
|
|
|
|
2021-12-10 09:27:50 +08:00
|
|
|
func createFile(user *user_model.User, repo *repo_model.Repository, treePath string) (*api.FileResponse, error) {
|
2021-04-17 02:30:16 +08:00
|
|
|
return createFileInBranch(user, repo, treePath, repo.DefaultBranch, "This is a NEW file")
|
2019-04-18 00:06:35 +08:00
|
|
|
}
|