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