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