2019-04-17 21:36:35 +05:30
|
|
|
// 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.
|
|
|
|
|
|
|
|
package integrations
|
|
|
|
|
|
|
|
import (
|
|
|
|
"code.gitea.io/gitea/models"
|
|
|
|
"code.gitea.io/gitea/modules/repofiles"
|
2019-05-11 15:51:34 +05:30
|
|
|
api "code.gitea.io/gitea/modules/structs"
|
2019-04-17 21:36:35 +05:30
|
|
|
)
|
|
|
|
|
2021-04-17 00:00:16 +05:30
|
|
|
func createFileInBranch(user *models.User, repo *models.Repository, treePath, branchName, content string) (*api.FileResponse, error) {
|
2019-04-17 21:36:35 +05:30
|
|
|
opts := &repofiles.UpdateRepoFileOptions{
|
|
|
|
OldBranch: branchName,
|
|
|
|
TreePath: treePath,
|
2021-04-17 00:00:16 +05:30
|
|
|
Content: content,
|
2019-04-17 21:36:35 +05:30
|
|
|
IsNewFile: true,
|
|
|
|
Author: nil,
|
|
|
|
Committer: nil,
|
|
|
|
}
|
|
|
|
return repofiles.CreateOrUpdateRepoFile(repo, user, opts)
|
|
|
|
}
|
|
|
|
|
|
|
|
func createFile(user *models.User, repo *models.Repository, treePath string) (*api.FileResponse, 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
|
|
|
}
|