- Add a new function `CountOrgSecrets` in the file `models/secret/secret.go` - Add a new file `modules/structs/secret.go` - Add a new function `ListActionsSecrets` in the file `routers/api/v1/api.go` - Add a new file `routers/api/v1/org/action.go` - Add a new function `listActionsSecrets` in the file `routers/api/v1/org/action.go` go-sdk: https://gitea.com/gitea/go-sdk/pulls/629 --------- Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com> Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com> Co-authored-by: techknowlogick <matti@mdranta.net> Co-authored-by: Giteabot <teabot@gitea.io>
		
			
				
	
	
		
			96 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			96 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright 2022 The Gitea Authors. All rights reserved.
 | |
| // SPDX-License-Identifier: MIT
 | |
| 
 | |
| package secret
 | |
| 
 | |
| import (
 | |
| 	"context"
 | |
| 	"errors"
 | |
| 	"strings"
 | |
| 
 | |
| 	"code.gitea.io/gitea/models/db"
 | |
| 	secret_module "code.gitea.io/gitea/modules/secret"
 | |
| 	"code.gitea.io/gitea/modules/setting"
 | |
| 	"code.gitea.io/gitea/modules/timeutil"
 | |
| 
 | |
| 	"xorm.io/builder"
 | |
| )
 | |
| 
 | |
| // Secret represents a secret
 | |
| type Secret struct {
 | |
| 	ID          int64
 | |
| 	OwnerID     int64              `xorm:"INDEX UNIQUE(owner_repo_name) NOT NULL"`
 | |
| 	RepoID      int64              `xorm:"INDEX UNIQUE(owner_repo_name) NOT NULL DEFAULT 0"`
 | |
| 	Name        string             `xorm:"UNIQUE(owner_repo_name) NOT NULL"`
 | |
| 	Data        string             `xorm:"LONGTEXT"` // encrypted data
 | |
| 	CreatedUnix timeutil.TimeStamp `xorm:"created NOT NULL"`
 | |
| }
 | |
| 
 | |
| // newSecret Creates a new already encrypted secret
 | |
| func newSecret(ownerID, repoID int64, name, data string) *Secret {
 | |
| 	return &Secret{
 | |
| 		OwnerID: ownerID,
 | |
| 		RepoID:  repoID,
 | |
| 		Name:    strings.ToUpper(name),
 | |
| 		Data:    data,
 | |
| 	}
 | |
| }
 | |
| 
 | |
| // InsertEncryptedSecret Creates, encrypts, and validates a new secret with yet unencrypted data and insert into database
 | |
| func InsertEncryptedSecret(ctx context.Context, ownerID, repoID int64, name, data string) (*Secret, error) {
 | |
| 	encrypted, err := secret_module.EncryptSecret(setting.SecretKey, data)
 | |
| 	if err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 	secret := newSecret(ownerID, repoID, name, encrypted)
 | |
| 	if err := secret.Validate(); err != nil {
 | |
| 		return secret, err
 | |
| 	}
 | |
| 	return secret, db.Insert(ctx, secret)
 | |
| }
 | |
| 
 | |
| func init() {
 | |
| 	db.RegisterModel(new(Secret))
 | |
| }
 | |
| 
 | |
| func (s *Secret) Validate() error {
 | |
| 	if s.OwnerID == 0 && s.RepoID == 0 {
 | |
| 		return errors.New("the secret is not bound to any scope")
 | |
| 	}
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| type FindSecretsOptions struct {
 | |
| 	db.ListOptions
 | |
| 	OwnerID int64
 | |
| 	RepoID  int64
 | |
| }
 | |
| 
 | |
| func (opts *FindSecretsOptions) toConds() builder.Cond {
 | |
| 	cond := builder.NewCond()
 | |
| 	if opts.OwnerID > 0 {
 | |
| 		cond = cond.And(builder.Eq{"owner_id": opts.OwnerID})
 | |
| 	}
 | |
| 	if opts.RepoID > 0 {
 | |
| 		cond = cond.And(builder.Eq{"repo_id": opts.RepoID})
 | |
| 	}
 | |
| 
 | |
| 	return cond
 | |
| }
 | |
| 
 | |
| func FindSecrets(ctx context.Context, opts FindSecretsOptions) ([]*Secret, error) {
 | |
| 	var secrets []*Secret
 | |
| 	sess := db.GetEngine(ctx)
 | |
| 	if opts.PageSize != 0 {
 | |
| 		sess = db.SetSessionPagination(sess, &opts.ListOptions)
 | |
| 	}
 | |
| 	return secrets, sess.
 | |
| 		Where(opts.toConds()).
 | |
| 		Find(&secrets)
 | |
| }
 | |
| 
 | |
| // CountSecrets counts the secrets
 | |
| func CountSecrets(ctx context.Context, opts *FindSecretsOptions) (int64, error) {
 | |
| 	return db.GetEngine(ctx).Where(opts.toConds()).Count(new(Secret))
 | |
| }
 |