blob: bb658919590019bd52bc3fb447458f888d117385 [file] [log] [blame]
/*
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You 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 dalgorm
import (
"context"
"encoding/json"
"fmt"
"reflect"
"github.com/apache/incubator-devlake/core/models"
"github.com/apache/incubator-devlake/core/plugin"
"gorm.io/gorm/schema"
)
var _ schema.SerializerInterface = (*EncDecSerializer)(nil)
// EncDecSerializer is responsible for field encryption/decryption in Application Level
// Ref: https://gorm.io/docs/serializer.html
type EncDecSerializer struct {
encryptionSecret string
}
// Scan implements serializer interface
func (es *EncDecSerializer) Scan(ctx context.Context, field *schema.Field, dst reflect.Value, dbValue interface{}) (err error) {
dbValue = models.UnwrapObject(dbValue)
fieldValue := reflect.New(field.FieldType)
if dbValue != nil {
var base64str string
switch v := dbValue.(type) {
case []byte:
base64str = string(v)
case string:
base64str = v
default:
return fmt.Errorf("failed to decrypt value: %#v", dbValue)
}
decrypted, err := plugin.Decrypt(es.encryptionSecret, base64str)
if err != nil {
return err
}
switch fieldValue.Elem().Kind() {
case reflect.String:
field.ReflectValueOf(ctx, dst).SetString(decrypted)
default:
if len(decrypted) == 0 {
return nil
}
// deal with complex type
bytes := []byte(decrypted)
err := json.Unmarshal(bytes, fieldValue.Interface())
if err != nil {
return err
}
field.ReflectValueOf(ctx, dst).Set(fieldValue.Elem())
}
}
return nil
}
// Value implements serializer interface
func (es *EncDecSerializer) Value(ctx context.Context, field *schema.Field, dst reflect.Value, fieldValue interface{}) (interface{}, error) {
var target string
switch v := fieldValue.(type) {
case json.RawMessage:
target = string(v)
case string:
target = v
default:
// deal with complex type
b, err := json.Marshal(fieldValue)
if err != nil {
return nil, err
}
target = string(b)
}
return plugin.Encrypt(es.encryptionSecret, target)
}
// Init the encdec serializer
func Init(encryptionSecret string) {
schema.RegisterSerializer("encdec", &EncDecSerializer{encryptionSecret: encryptionSecret})
}