validation

package
v0.0.0-...-6b1c1c1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 6, 2020 License: MIT Imports: 2 Imported by: 0

README

Domain Validation層

Domainのバリデーションを行う。
バリデーション範囲は、文字数、正規表現等のエンティティ(データベース)に関連する内容。 処理の詳細は、Infrastructure層で実装するのでインターフェースのみ記述。

テンプレート

package validation

import (
	"context"

	"github.com/16francs/gran/api/sample/internal/domain"
)

// SampleDomainValidation - SampleDomainRepositoryインターフェース
type SampleDomainValidation interface {
	Sample(ctx context.Context, u *domain.Sample) error
}

Documentation

Index

Constants

View Source
const (
	RequiredTag = "required"
	EqFieldTag  = "eqfield"
	MinTag      = "min"
	MaxTag      = "max"
	EmailTag    = "email"
	PasswordTag = "password"
	UniqueTag   = "unique"
)

バリデーションタグ

View Source
const (
	RequiredMessage = "入力必須です"
	EqFieldMessage  = "%sと入力が一致しません"
	MinMessage      = "%s文字以上で入力してください"
	MaxMessage      = "%s文字以下で入力してください"
	EmailMessage    = "メールアドレスの形式で入力してください"
	PasswordMessage = "パスワードの形式で入力してください"
	UniqueMessage   = "重複する要素が存在します"
)

バリデーションメッセージ

View Source
const (
	CustomUniqueMessage = "すでに存在します"
)

カスタムバリデーションメッセージ

Variables

This section is empty.

Functions

This section is empty.

Types

type UserDomainValidation

type UserDomainValidation interface {
	User(ctx context.Context, u *domain.User) []*domain.ValidationError
}

UserDomainValidation - UserDomainRepositoryインターフェース

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL