forked from apache/incubator-devlake
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathbase.go
109 lines (90 loc) · 3.14 KB
/
base.go
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
/*
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 common
import (
"time"
)
const (
USER = "user"
)
type User struct {
Name string
Email string
}
type Model struct {
ID uint64 `gorm:"primaryKey" json:"id"`
CreatedAt time.Time `json:"createdAt"`
UpdatedAt time.Time `json:"updatedAt"`
}
type Creator struct {
Creator string `json:"creator"`
CreatorEmail string `json:"creatorEmail"`
}
type Updater struct {
Updater string `json:"updater"`
UpdaterEmail string `json:"updaterEmail"`
}
// embedded fields for tool layer tables
type RawDataOrigin struct {
// can be used for flushing outdated records from table
RawDataParams string `gorm:"column:_raw_data_params;type:varchar(255);index" json:"_raw_data_params"`
RawDataTable string `gorm:"column:_raw_data_table;type:varchar(255)" json:"_raw_data_table"`
// can be used for debugging
RawDataId uint64 `gorm:"column:_raw_data_id" json:"_raw_data_id"`
// we can store record index into this field, which is helpful for debugging
RawDataRemark string `gorm:"column:_raw_data_remark" json:"_raw_data_remark"`
}
type GetRawDataOrigin interface {
GetRawDataOrigin() *RawDataOrigin
}
func (c *RawDataOrigin) GetRawDataOrigin() *RawDataOrigin {
return c
}
type NoPKModel struct {
CreatedAt time.Time `json:"createdAt" mapstructure:"createdAt"`
UpdatedAt time.Time `json:"updatedAt" mapstructure:"updatedAt"`
RawDataOrigin `swaggerignore:"true"`
}
func NewNoPKModel() NoPKModel {
now := time.Now()
return NoPKModel{
CreatedAt: now,
UpdatedAt: now,
}
}
type Scope struct {
NoPKModel
ConnectionId uint64 `json:"connectionId" gorm:"primaryKey" validate:"required" mapstructure:"connectionId,omitempty"`
ScopeConfigId uint64 `json:"scopeConfigId,omitempty" mapstructure:"scopeConfigId,omitempty"`
}
// ScopeConnectionId implements plugin.ToolLayerScope.
func (s Scope) ScopeConnectionId() uint64 {
return s.ConnectionId
}
func (s Scope) ScopeScopeConfigId() uint64 {
return s.ScopeConfigId
}
type ScopeConfig struct {
Model
Entities []string `gorm:"type:json;serializer:json" json:"entities" mapstructure:"entities"`
ConnectionId uint64 `json:"connectionId" gorm:"index" validate:"required" mapstructure:"connectionId,omitempty"`
Name string `mapstructure:"name" json:"name" gorm:"type:varchar(255)" validate:"required"`
}
func (s ScopeConfig) ScopeConfigConnectionId() uint64 {
return s.ConnectionId
}
func (s ScopeConfig) ScopeConfigId() uint64 {
return s.ID
}