1
0
api/ent/runtime.go

142 lines
7.2 KiB
Go
Raw Normal View History

2022-08-31 07:49:08 +00:00
// Code generated by ent, DO NOT EDIT.
2022-08-31 06:18:14 +00:00
package ent
import (
2022-08-31 07:49:08 +00:00
"t/ent/card"
2023-04-05 06:05:14 +00:00
"t/ent/group"
2022-08-31 06:18:14 +00:00
"t/ent/schema"
2022-08-31 07:49:08 +00:00
"t/ent/user"
2022-08-31 06:18:14 +00:00
"time"
)
// The init function reads all schema descriptors with runtime code
// (default values, validators, hooks and policies) and stitches it
// to their package variables.
func init() {
2022-08-31 07:49:08 +00:00
cardFields := schema.Card{}.Fields()
_ = cardFields
2023-04-05 06:05:14 +00:00
// cardDescPassword is the schema descriptor for password field.
cardDescPassword := cardFields[0].Descriptor()
// card.PasswordValidator is a validator for the "password" field. It is called by the builders before save.
card.PasswordValidator = cardDescPassword.Validators[0].(func(string) error)
2022-08-31 07:49:08 +00:00
// cardDescCard is the schema descriptor for card field.
2023-04-05 06:05:14 +00:00
cardDescCard := cardFields[1].Descriptor()
2022-08-31 07:49:08 +00:00
// card.DefaultCard holds the default value on creation for the card field.
card.DefaultCard = cardDescCard.Default.(func() int)
2023-05-03 10:16:36 +00:00
// cardDescSkill is the schema descriptor for skill field.
cardDescSkill := cardFields[2].Descriptor()
// card.DefaultSkill holds the default value on creation for the skill field.
card.DefaultSkill = cardDescSkill.Default.(func() string)
2022-08-31 07:49:08 +00:00
// cardDescStatus is the schema descriptor for status field.
2023-05-03 10:16:36 +00:00
cardDescStatus := cardFields[3].Descriptor()
2022-08-31 07:49:08 +00:00
// card.DefaultStatus holds the default value on creation for the status field.
card.DefaultStatus = cardDescStatus.Default.(func() string)
// cardDescCp is the schema descriptor for cp field.
2023-07-01 14:21:48 +00:00
cardDescCp := cardFields[5].Descriptor()
2022-08-31 07:49:08 +00:00
// card.DefaultCp holds the default value on creation for the cp field.
card.DefaultCp = cardDescCp.Default.(func() int)
// cardDescURL is the schema descriptor for url field.
2023-07-01 14:21:48 +00:00
cardDescURL := cardFields[6].Descriptor()
2022-08-31 07:49:08 +00:00
// card.DefaultURL holds the default value on creation for the url field.
card.DefaultURL = cardDescURL.Default.(string)
// cardDescCreatedAt is the schema descriptor for created_at field.
2023-08-21 13:13:44 +00:00
cardDescCreatedAt := cardFields[9].Descriptor()
2022-08-31 07:49:08 +00:00
// card.DefaultCreatedAt holds the default value on creation for the created_at field.
card.DefaultCreatedAt = cardDescCreatedAt.Default.(func() time.Time)
2023-04-05 06:05:14 +00:00
groupFields := schema.Group{}.Fields()
_ = groupFields
// groupDescPassword is the schema descriptor for password field.
groupDescPassword := groupFields[1].Descriptor()
// group.PasswordValidator is a validator for the "password" field. It is called by the builders before save.
group.PasswordValidator = groupDescPassword.Validators[0].(func(string) error)
2022-08-31 07:49:08 +00:00
userFields := schema.User{}.Fields()
_ = userFields
// userDescUsername is the schema descriptor for username field.
userDescUsername := userFields[0].Descriptor()
// user.UsernameValidator is a validator for the "username" field. It is called by the builders before save.
user.UsernameValidator = func() func(string) error {
validators := userDescUsername.Validators
2022-08-31 06:18:14 +00:00
fns := [...]func(string) error{
validators[0].(func(string) error),
validators[1].(func(string) error),
}
2022-08-31 07:49:08 +00:00
return func(username string) error {
2022-08-31 06:18:14 +00:00
for _, fn := range fns {
2022-08-31 07:49:08 +00:00
if err := fn(username); err != nil {
2022-08-31 06:18:14 +00:00
return err
}
}
return nil
}
}()
2023-07-20 14:18:17 +00:00
// userDescMember is the schema descriptor for member field.
userDescMember := userFields[2].Descriptor()
// user.DefaultMember holds the default value on creation for the member field.
user.DefaultMember = userDescMember.Default.(bool)
// userDescBook is the schema descriptor for book field.
userDescBook := userFields[3].Descriptor()
// user.DefaultBook holds the default value on creation for the book field.
user.DefaultBook = userDescBook.Default.(bool)
// userDescManga is the schema descriptor for manga field.
userDescManga := userFields[4].Descriptor()
// user.DefaultManga holds the default value on creation for the manga field.
user.DefaultManga = userDescManga.Default.(bool)
// userDescBadge is the schema descriptor for badge field.
userDescBadge := userFields[5].Descriptor()
// user.DefaultBadge holds the default value on creation for the badge field.
user.DefaultBadge = userDescBadge.Default.(bool)
2023-07-10 03:43:09 +00:00
// userDescBsky is the schema descriptor for bsky field.
2023-07-20 14:18:17 +00:00
userDescBsky := userFields[6].Descriptor()
2023-07-10 03:43:09 +00:00
// user.DefaultBsky holds the default value on creation for the bsky field.
user.DefaultBsky = userDescBsky.Default.(bool)
// userDescMastodon is the schema descriptor for mastodon field.
2023-07-20 14:18:17 +00:00
userDescMastodon := userFields[7].Descriptor()
2023-07-10 03:43:09 +00:00
// user.DefaultMastodon holds the default value on creation for the mastodon field.
user.DefaultMastodon = userDescMastodon.Default.(bool)
2023-05-01 14:00:17 +00:00
// userDescDelete is the schema descriptor for delete field.
2023-07-20 14:18:17 +00:00
userDescDelete := userFields[8].Descriptor()
2023-05-01 14:00:17 +00:00
// user.DefaultDelete holds the default value on creation for the delete field.
user.DefaultDelete = userDescDelete.Default.(bool)
2023-06-21 01:17:52 +00:00
// userDescHandle is the schema descriptor for handle field.
2023-07-20 14:18:17 +00:00
userDescHandle := userFields[9].Descriptor()
2023-06-21 01:17:52 +00:00
// user.DefaultHandle holds the default value on creation for the handle field.
user.DefaultHandle = userDescHandle.Default.(bool)
2023-04-05 06:05:14 +00:00
// userDescPassword is the schema descriptor for password field.
2023-07-20 14:18:17 +00:00
userDescPassword := userFields[11].Descriptor()
2023-04-05 06:05:14 +00:00
// user.PasswordValidator is a validator for the "password" field. It is called by the builders before save.
user.PasswordValidator = userDescPassword.Validators[0].(func(string) error)
2022-08-31 07:49:08 +00:00
// userDescCreatedAt is the schema descriptor for created_at field.
2023-07-20 14:18:17 +00:00
userDescCreatedAt := userFields[12].Descriptor()
2022-08-31 07:49:08 +00:00
// user.DefaultCreatedAt holds the default value on creation for the created_at field.
user.DefaultCreatedAt = userDescCreatedAt.Default.(func() time.Time)
// userDescUpdatedAt is the schema descriptor for updated_at field.
2023-07-20 14:18:17 +00:00
userDescUpdatedAt := userFields[13].Descriptor()
2022-08-31 07:49:08 +00:00
// user.DefaultUpdatedAt holds the default value on creation for the updated_at field.
user.DefaultUpdatedAt = userDescUpdatedAt.Default.(func() time.Time)
2023-05-24 09:36:44 +00:00
// userDescRaidAt is the schema descriptor for raid_at field.
2023-07-20 14:18:17 +00:00
userDescRaidAt := userFields[14].Descriptor()
2023-05-24 09:36:44 +00:00
// user.DefaultRaidAt holds the default value on creation for the raid_at field.
user.DefaultRaidAt = userDescRaidAt.Default.(func() time.Time)
2023-07-23 14:40:24 +00:00
// userDescEggAt is the schema descriptor for egg_at field.
userDescEggAt := userFields[15].Descriptor()
// user.DefaultEggAt holds the default value on creation for the egg_at field.
user.DefaultEggAt = userDescEggAt.Default.(func() time.Time)
2023-05-24 09:36:44 +00:00
// userDescLuckAt is the schema descriptor for luck_at field.
2023-07-23 14:40:24 +00:00
userDescLuckAt := userFields[17].Descriptor()
2023-05-24 09:36:44 +00:00
// user.DefaultLuckAt holds the default value on creation for the luck_at field.
user.DefaultLuckAt = userDescLuckAt.Default.(func() time.Time)
// userDescLikeAt is the schema descriptor for like_at field.
2023-07-23 14:40:24 +00:00
userDescLikeAt := userFields[20].Descriptor()
2023-05-24 09:36:44 +00:00
// user.DefaultLikeAt holds the default value on creation for the like_at field.
user.DefaultLikeAt = userDescLikeAt.Default.(func() time.Time)
// userDescTenAt is the schema descriptor for ten_at field.
2023-07-23 14:40:24 +00:00
userDescTenAt := userFields[30].Descriptor()
2023-05-24 09:36:44 +00:00
// user.DefaultTenAt holds the default value on creation for the ten_at field.
user.DefaultTenAt = userDescTenAt.Default.(func() time.Time)
2022-08-31 07:49:08 +00:00
// userDescNext is the schema descriptor for next field.
2023-07-23 14:40:24 +00:00
userDescNext := userFields[31].Descriptor()
2022-08-31 07:49:08 +00:00
// user.DefaultNext holds the default value on creation for the next field.
user.DefaultNext = userDescNext.Default.(string)
2022-08-31 06:18:14 +00:00
}