-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from GreenmaskIO/feature_faker_transformers
Feature: Added multiple faker transformers
- Loading branch information
Showing
3 changed files
with
642 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,336 @@ | ||
// Copyright 2023 Greenmask | ||
// | ||
// 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 transformers | ||
|
||
import ( | ||
"context" | ||
"fmt" | ||
|
||
"github.com/go-faker/faker/v4" | ||
"github.com/go-faker/faker/v4/pkg/options" | ||
"github.com/greenmaskio/greenmask/internal/db/postgres/transformers/utils" | ||
"github.com/greenmaskio/greenmask/pkg/toolkit" | ||
) | ||
|
||
type FakerFunc func(opts ...options.OptionFunc) string | ||
|
||
type FakerTransformerDef struct { | ||
SupportedTypes []string | ||
Description string | ||
Generator FakerFunc | ||
} | ||
|
||
var FakerTransformersDes = map[string]*FakerTransformerDef{ | ||
// Faker geo | ||
"RandomLatitude": { | ||
Generator: func(opts ...options.OptionFunc) string { | ||
return fmt.Sprintf("%f", faker.Latitude()) | ||
}, | ||
SupportedTypes: []string{"float4", "float8", "numeric"}, | ||
Description: "Generates a random latitude value.", | ||
}, | ||
"RandomLongitude": { | ||
Generator: func(opts ...options.OptionFunc) string { | ||
return fmt.Sprintf("%f", faker.Longitude()) | ||
}, | ||
SupportedTypes: []string{"float4", "float8", "numeric"}, | ||
Description: "Generates a random longitude value.", | ||
}, | ||
|
||
// Faker Datetime | ||
"RandomUnixTime": { | ||
Generator: func(opts ...options.OptionFunc) string { | ||
return fmt.Sprintf("%d", faker.UnixTime()) | ||
}, | ||
SupportedTypes: []string{"int4", "int8", "numeric"}, | ||
Description: "Generates a random Unix timestamp.", | ||
}, | ||
"RandomMonthName": { | ||
Generator: faker.MonthName, | ||
SupportedTypes: []string{"text", "varchar"}, | ||
Description: "Generates the name of a random month.", | ||
}, | ||
"RandomYearString": { | ||
Generator: faker.YearString, | ||
SupportedTypes: []string{"text", "varchar", "int2", "int4", "int8", "numeric"}, | ||
Description: "Generates a random year as a string.", | ||
}, | ||
"RandomDayOfWeek": { | ||
Generator: faker.DayOfWeek, | ||
SupportedTypes: []string{"text", "varchar"}, | ||
Description: "Generates a random day of the week.", | ||
}, | ||
"RandomDayOfMonth": { | ||
Generator: faker.DayOfMonth, | ||
SupportedTypes: []string{"text", "varchar", "int2", "int4", "int8", "numeric"}, | ||
Description: "Generates a random day of the month.", | ||
}, | ||
"RandomCentury": { | ||
Generator: faker.Century, | ||
SupportedTypes: []string{"text", "varchar"}, | ||
Description: "Generates a random century.", | ||
}, | ||
"RandomTimezone": { | ||
Generator: faker.Timezone, | ||
SupportedTypes: []string{"text", "varchar"}, | ||
Description: "Generates a random timezone.", | ||
}, | ||
|
||
// Faker Internet | ||
"RandomEmail": { | ||
Generator: faker.Email, | ||
SupportedTypes: []string{"text", "varchar"}, | ||
Description: "Generates a random email address.", | ||
}, | ||
"RandomMacAddress": { | ||
Generator: faker.MacAddress, | ||
SupportedTypes: []string{"text", "varchar", "macaddr", "macaddr8"}, | ||
Description: "Generates a random MAC address.", | ||
}, | ||
"RandomDomainName": { | ||
Generator: faker.DomainName, | ||
SupportedTypes: []string{"text", "varchar"}, | ||
Description: "Generates a random domain name.", | ||
}, | ||
"RandomURL": { | ||
Generator: faker.URL, | ||
SupportedTypes: []string{"text", "varchar"}, | ||
Description: "Generates a random URL.", | ||
}, | ||
"RandomUsername": { | ||
Generator: faker.Username, | ||
SupportedTypes: []string{"text", "varchar"}, | ||
Description: "Generates a random username.", | ||
}, | ||
"RandomIPv4": { | ||
Generator: faker.IPv4, | ||
SupportedTypes: []string{"text", "varchar", "inet"}, | ||
Description: "Generates a random IPv4 address.", | ||
}, | ||
"RandomIPv6": { | ||
Generator: faker.IPv6, | ||
SupportedTypes: []string{"text", "varchar", "inet"}, | ||
Description: "Generates a random IPv6 address.", | ||
}, | ||
"RandomPassword": { | ||
Generator: faker.Password, | ||
SupportedTypes: []string{"text", "varchar"}, | ||
Description: "Generates a random password.", | ||
}, | ||
|
||
// Faker words and Sentences | ||
"RandomWord": { | ||
Generator: faker.Word, | ||
SupportedTypes: []string{"text", "varchar"}, | ||
Description: "Generates a random word.", | ||
}, | ||
"RandomSentence": { | ||
Generator: faker.Sentence, | ||
SupportedTypes: []string{"text", "varchar"}, | ||
Description: "Generates a random sentence.", | ||
}, | ||
"RandomParagraph": { | ||
Generator: faker.Paragraph, | ||
SupportedTypes: []string{"text", "varchar"}, | ||
Description: "Generates a random paragraph.", | ||
}, | ||
|
||
// Faker Payment | ||
"RandomCCType": { | ||
Generator: faker.CCType, | ||
SupportedTypes: []string{"text", "varchar"}, | ||
Description: "Generates a random credit card type.", | ||
}, | ||
"RandomCCNumber": { | ||
Generator: faker.CCNumber, | ||
SupportedTypes: []string{"text", "varchar", "int4", "int8", "numeric"}, | ||
Description: "Generates a random credit card number.", | ||
}, | ||
"RandomCurrency": { | ||
Generator: faker.Currency, | ||
SupportedTypes: []string{"text", "varchar"}, | ||
Description: "Generates a random currency code.", | ||
}, | ||
"RandomAmountWithCurrency": { | ||
Generator: faker.AmountWithCurrency, | ||
SupportedTypes: []string{"text", "varchar"}, | ||
Description: "Generates a random monetary amount with currency.", | ||
}, | ||
|
||
// Faker Person | ||
"RandomTitleMale": { | ||
Generator: faker.TitleMale, | ||
SupportedTypes: []string{"text", "varchar"}, | ||
Description: "Generates a random title for males.", | ||
}, | ||
"RandomTitleFemale": { | ||
Generator: faker.TitleFemale, | ||
SupportedTypes: []string{"text", "varchar"}, | ||
Description: "Generates a random title for females.", | ||
}, | ||
"RandomFirstName": { | ||
Generator: faker.FirstName, | ||
SupportedTypes: []string{"text", "varchar"}, | ||
Description: "Generates a random first name.", | ||
}, | ||
"RandomFirstNameMale": { | ||
Generator: faker.FirstNameMale, | ||
SupportedTypes: []string{"text", "varchar"}, | ||
Description: "Generates a random male first name.", | ||
}, | ||
"RandomFirstNameFemale": { | ||
Generator: faker.FirstNameFemale, | ||
SupportedTypes: []string{"text", "varchar"}, | ||
Description: "Generates a random female first name.", | ||
}, | ||
"RandomLastName": { | ||
Generator: faker.LastName, | ||
SupportedTypes: []string{"text", "varchar"}, | ||
Description: "Generates a random last name.", | ||
}, | ||
"RandomName": { | ||
Generator: faker.Name, | ||
SupportedTypes: []string{"text", "varchar"}, | ||
Description: "Generates a full random name.", | ||
}, | ||
|
||
// Faker Phone | ||
"RandomPhoneNumber": { | ||
Generator: faker.Phonenumber, | ||
SupportedTypes: []string{"text", "varchar"}, | ||
Description: "Generates a random phone number.", | ||
}, | ||
"RandomTollFreePhoneNumber": { | ||
Generator: faker.TollFreePhoneNumber, | ||
SupportedTypes: []string{"text", "varchar"}, | ||
Description: "Generates a random toll-free phone number.", | ||
}, | ||
"RandomE164PhoneNumber": { | ||
Generator: faker.E164PhoneNumber, | ||
SupportedTypes: []string{"text", "varchar"}, | ||
Description: "Generates a random phone number in E.164 format.", | ||
}, | ||
} | ||
|
||
func generateFakerTransformers(registry *utils.TransformerRegistry) { | ||
|
||
for name, def := range FakerTransformersDes { | ||
|
||
td := utils.NewDefinition( | ||
utils.NewTransformerProperties( | ||
name, | ||
def.Description, | ||
), | ||
MakeNewFakeTransformerFunction(def.Generator), | ||
toolkit.MustNewParameter( | ||
"column", | ||
"column name", | ||
).SetIsColumn(toolkit.NewColumnProperties(). | ||
SetAffected(true). | ||
SetAllowedColumnTypes(def.SupportedTypes...), | ||
).SetRequired(true), | ||
toolkit.MustNewParameter( | ||
"keep_null", | ||
"indicates that NULL values must not be replaced with transformed values", | ||
).SetDefaultValue( | ||
toolkit.ParamsValue("true"), | ||
), | ||
) | ||
|
||
utils.DefaultTransformerRegistry.MustRegister(td) | ||
} | ||
|
||
} | ||
|
||
type FakeTransformer struct { | ||
columnName string | ||
keepNull bool | ||
columnIdx int | ||
affectedColumns map[int]string | ||
generate FakerFunc | ||
} | ||
|
||
func MakeNewFakeTransformerFunction(generator FakerFunc) utils.NewTransformerFunc { | ||
return func(ctx context.Context, driver *toolkit.Driver, parameters map[string]*toolkit.Parameter) (utils.Transformer, toolkit.ValidationWarnings, error) { | ||
return NewFakeTransformer(ctx, driver, parameters, generator) | ||
} | ||
} | ||
|
||
func NewFakeTransformer( | ||
ctx context.Context, driver *toolkit.Driver, parameters map[string]*toolkit.Parameter, generator FakerFunc, | ||
) (utils.Transformer, toolkit.ValidationWarnings, error) { | ||
p := parameters["column"] | ||
var columnName string | ||
var keepNull bool | ||
if _, err := p.Scan(&columnName); err != nil { | ||
return nil, nil, fmt.Errorf("unable to parse column param: %w", err) | ||
} | ||
|
||
idx, _, ok := driver.GetColumnByName(columnName) | ||
if !ok { | ||
return nil, nil, fmt.Errorf("column with name %s is not found", columnName) | ||
} | ||
|
||
p = parameters["keep_null"] | ||
if _, err := p.Scan(&keepNull); err != nil { | ||
return nil, nil, fmt.Errorf(`unable to scan "keep_null" param: %w`, err) | ||
} | ||
|
||
affectedColumns := make(map[int]string) | ||
affectedColumns[idx] = columnName | ||
|
||
return &FakeTransformer{ | ||
columnName: columnName, | ||
keepNull: keepNull, | ||
columnIdx: idx, | ||
affectedColumns: affectedColumns, | ||
generate: generator, | ||
}, nil, nil | ||
} | ||
|
||
func (fts *FakeTransformer) GetAffectedColumns() map[int]string { | ||
return fts.affectedColumns | ||
} | ||
|
||
func (fts *FakeTransformer) Init(ctx context.Context) error { | ||
return nil | ||
} | ||
|
||
func (fts *FakeTransformer) Done(ctx context.Context) error { | ||
return nil | ||
} | ||
|
||
func (fts *FakeTransformer) Transform(ctx context.Context, r *toolkit.Record) (*toolkit.Record, error) { | ||
valAny, err := r.GetRawColumnValueByIdx(fts.columnIdx) | ||
if err != nil { | ||
return nil, fmt.Errorf("unable to scan value: %w", err) | ||
} | ||
if valAny.IsNull && fts.keepNull { | ||
return r, nil | ||
} | ||
|
||
newValue := toolkit.NewRawValue([]byte(fts.generate()), false) | ||
|
||
if err := r.SetRawColumnValueByIdx(fts.columnIdx, newValue); err != nil { | ||
return nil, fmt.Errorf("unable to set new value: %w", err) | ||
} | ||
|
||
return r, nil | ||
|
||
} | ||
|
||
func init() { | ||
generateFakerTransformers(utils.DefaultTransformerRegistry) | ||
} |
Oops, something went wrong.