private_key.go 3.5 KB
Newer Older
L
lou 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
/*
Copyright 2021 The KodeRover Authors.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

package mongodb

import (
	"context"
	"errors"
	"time"

	"go.mongodb.org/mongo-driver/bson"
	"go.mongodb.org/mongo-driver/bson/primitive"
	"go.mongodb.org/mongo-driver/mongo"
	"go.mongodb.org/mongo-driver/mongo/options"

	"github.com/koderover/zadig/pkg/microservice/aslan/config"
	"github.com/koderover/zadig/pkg/microservice/aslan/core/common/repository/models"
	mongotool "github.com/koderover/zadig/pkg/tool/mongo"
)

type PrivateKeyArgs struct {
	Name string
}

type PrivateKeyColl struct {
	*mongo.Collection

	coll string
}

func NewPrivateKeyColl() *PrivateKeyColl {
	name := models.PrivateKey{}.TableName()
	return &PrivateKeyColl{
		Collection: mongotool.Database(config.MongoDatabase()).Collection(name),
		coll:       name,
	}
}

func (c *PrivateKeyColl) GetCollectionName() string {
	return c.coll
}

func (c *PrivateKeyColl) EnsureIndex(ctx context.Context) error {
	mod := mongo.IndexModel{
		Keys:    bson.M{"label": 1},
		Options: options.Index().SetUnique(false),
	}

	_, err := c.Indexes().CreateOne(ctx, mod)
	return err
}

M
mouuii 已提交
66 67 68 69 70 71
type FindPrivateKeyOption struct {
	ID      string
	Address string
}

func (c *PrivateKeyColl) Find(option FindPrivateKeyOption) (*models.PrivateKey, error) {
L
lou 已提交
72
	privateKey := new(models.PrivateKey)
M
mouuii 已提交
73 74 75 76 77 78 79 80 81 82
	query := bson.M{}
	if option.ID != "" {
		oid, err := primitive.ObjectIDFromHex(option.ID)
		if err != nil {
			return nil, err
		}
		query["_id"] = oid
	}
	if option.Address != "" {
		query["ip"] = option.Address
L
lou 已提交
83 84
	}

M
mouuii 已提交
85
	err := c.FindOne(context.TODO(), query).Decode(privateKey)
L
lou 已提交
86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159
	return privateKey, err
}

func (c *PrivateKeyColl) List(args *PrivateKeyArgs) ([]*models.PrivateKey, error) {
	query := bson.M{}
	if args.Name != "" {
		query["name"] = args.Name
	}
	resp := make([]*models.PrivateKey, 0)
	ctx := context.Background()

	cursor, err := c.Collection.Find(ctx, query)
	if err != nil {
		return nil, err
	}

	err = cursor.All(ctx, &resp)
	if err != nil {
		return nil, err
	}

	return resp, err
}

func (c *PrivateKeyColl) Create(args *models.PrivateKey) error {
	if args == nil {
		return errors.New("nil PrivateKey info")
	}

	args.CreateTime = time.Now().Unix()
	args.UpdateTime = time.Now().Unix()

	_, err := c.InsertOne(context.TODO(), args)

	return err
}

func (c *PrivateKeyColl) Update(id string, args *models.PrivateKey) error {
	if args == nil {
		return errors.New("nil PrivateKey info")
	}

	oid, err := primitive.ObjectIDFromHex(id)
	if err != nil {
		return err
	}

	query := bson.M{"_id": oid}
	change := bson.M{"$set": bson.M{
		"name":        args.Name,
		"user_name":   args.UserName,
		"ip":          args.IP,
		"label":       args.Label,
		"is_prod":     args.IsProd,
		"private_key": args.PrivateKey,
		"update_by":   args.UpdateBy,
		"update_time": time.Now().Unix(),
	}}

	_, err = c.UpdateOne(context.TODO(), query, change)
	return err
}

func (c *PrivateKeyColl) Delete(id string) error {
	oid, err := primitive.ObjectIDFromHex(id)
	if err != nil {
		return err
	}

	query := bson.M{"_id": oid}

	_, err = c.DeleteOne(context.TODO(), query)
	return err
}