user_info.go
7.8 KB
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
package models
import (
"errors"
"fmt"
"reflect"
"strings"
"time"
"github.com/astaxie/beego/orm"
)
type UserInfo struct {
Id int64 `orm:"column(uid);pk" description:"用户ID"`
Uname string `orm:"column(uname);size(100)" description:"名称"`
Icon string `orm:"column(icon);size(128)" description:"头像"`
Width int `orm:"column(width)" description:"宽度"`
Height int `orm:"column(height)" description:"高度"`
Thumbnail string `orm:"column(thumbnail);size(128)" description:"缩略图"`
Phone string `orm:"column(phone);size(40)" description:"手机号码"`
CreateTime time.Time `orm:"column(createTime);type(timestamp);auto_now_add"`
Passwd string `orm:"column(passwd);size(128)" description:"密码 sha1处理"`
State int8 `orm:"column(state)" description:"是否已认证 0未认证 1已认证 "`
Uuid string `orm:"column(uuid);size(128)" description:"用于接收消息推送的标识 设备码"`
ThirdloginCode string `orm:"column(thirdlogin_code);size(200)" description:"第三方登录code"`
Enabled int8 `orm:"column(enabled)" description:"是否有效"`
ImToken string `orm:"column(im_token);size(128)" description:"网易云token"`
CsAccount int64 `orm:"column(cs_account)" description:"客服有话说ID"`
RefreshExp time.Time `orm:"column(refresh_exp);type(timestamp);auto_now_add" description:"refresh token 过期时间"`
AccessExp time.Time `orm:"column(access_exp);type(timestamp);auto_now_add" description:"access token 过期时间"`
AccessToken string `orm:"column(access_token);size(64)" description:"access_token"`
RefreshToken string `orm:"column(refresh_token);size(64)"`
AuthExp time.Time `orm:"column(auth_exp);type(timestamp);auto_now_add" description:"auth_code过期时间"`
Auth string `orm:"column(auth);size(64)" description:"auth_code"`
LastloginTime time.Time `orm:"column(lastlogin_time);type(timestamp);auto_now_add" description:"最后一次登录时间"`
DeviceToken string `orm:"column(device_token);size(128);null" description:"推送标志位"`
ClientId string `orm:"column(client_id);size(128);null" description:"推送标识"`
CompanyId int `orm:"column(company_id)" description:"公司Id"`
DepartmentId int `orm:"column(department_id)" description:"部门id"`
PositionId int `orm:"column(position_id)" description:"职位id"`
Type int8 `orm:"column(type)" description:"1超级管理员 2公司负责人 3普通成员"`
Score int `orm:"column(score)" description:"评分星级"`
Questions int `orm:"column(questions)" description:"提问数"`
Answer int `orm:"column(answer)" description:"回答数"`
RememberToken string `orm:"column(remember_token);size(100);null"`
IsHighlight int8 `orm:"column(is_highlight)" description:"点赞是否高亮 0否 1是"`
ScoreAnalyze int `orm:"column(scoreAnalyze)" description:"分析得分"`
ScoreScheme int `orm:"column(scoreScheme)" description:"解决得分"`
ScoreAsk int `orm:"column(scoreAsk)" description:"提问得分"`
AttrId int `orm:"column(attr_id)" description:"属性id"`
RemainScore int `orm:"column(remain_score)"`
RemainAnalyze int `orm:"column(remain_Analyze)"`
BonusScoreAsk int `orm:"column(bonusScoreAsk)" description:"额外发现得分"`
BonusScoreAnalyze int `orm:"column(bonusScoreAnalyze)" description:"额外分析得分"`
BonusScoreScheme int `orm:"column(bonusScoreScheme)" description:"额外解决得分"`
}
func (t *UserInfo) TableName() string {
return "user_info"
}
func init() {
orm.RegisterModel(new(UserInfo))
}
// AddUserInfo insert a new UserInfo into database and returns
// last inserted Id on success.
func AddUserInfo(m *UserInfo) (id int64, err error) {
o := orm.NewOrm()
id, err = o.Insert(m)
return
}
// GetUserInfoById retrieves UserInfo by Id. Returns error if
// Id doesn't exist
func GetUserInfoById(id int64) (v *UserInfo, err error) {
o := orm.NewOrm()
v = &UserInfo{Id: id}
if err = o.Read(v); err == nil {
return v, nil
}
return nil, err
}
// GetAllUserInfo retrieves all UserInfo matches certain condition. Returns empty list if
// no records exist
func GetAllUserInfo(query map[string]string, fields []string, sortby []string, order []string,
offset int64, limit int64) (ml []interface{}, err error) {
o := orm.NewOrm()
qs := o.QueryTable(new(UserInfo))
// query k=v
for k, v := range query {
// rewrite dot-notation to Object__Attribute
k = strings.Replace(k, ".", "__", -1)
if strings.Contains(k, "isnull") {
qs = qs.Filter(k, (v == "true" || v == "1"))
} else {
qs = qs.Filter(k, v)
}
}
// order by:
var sortFields []string
if len(sortby) != 0 {
if len(sortby) == len(order) {
// 1) for each sort field, there is an associated order
for i, v := range sortby {
orderby := ""
if order[i] == "desc" {
orderby = "-" + v
} else if order[i] == "asc" {
orderby = v
} else {
return nil, errors.New("Error: Invalid order. Must be either [asc|desc]")
}
sortFields = append(sortFields, orderby)
}
qs = qs.OrderBy(sortFields...)
} else if len(sortby) != len(order) && len(order) == 1 {
// 2) there is exactly one order, all the sorted fields will be sorted by this order
for _, v := range sortby {
orderby := ""
if order[0] == "desc" {
orderby = "-" + v
} else if order[0] == "asc" {
orderby = v
} else {
return nil, errors.New("Error: Invalid order. Must be either [asc|desc]")
}
sortFields = append(sortFields, orderby)
}
} else if len(sortby) != len(order) && len(order) != 1 {
return nil, errors.New("Error: 'sortby', 'order' sizes mismatch or 'order' size is not 1")
}
} else {
if len(order) != 0 {
return nil, errors.New("Error: unused 'order' fields")
}
}
var l []UserInfo
qs = qs.OrderBy(sortFields...)
if _, err = qs.Limit(limit, offset).All(&l, fields...); err == nil {
if len(fields) == 0 {
for _, v := range l {
ml = append(ml, v)
}
} else {
// trim unused fields
for _, v := range l {
m := make(map[string]interface{})
val := reflect.ValueOf(v)
for _, fname := range fields {
m[fname] = val.FieldByName(fname).Interface()
}
ml = append(ml, m)
}
}
return ml, nil
}
return nil, err
}
// UpdateUserInfo updates UserInfo by Id and returns error if
// the record to be updated doesn't exist
func UpdateUserInfoById(m *UserInfo) (err error) {
o := orm.NewOrm()
v := UserInfo{Id: m.Id}
// ascertain id exists in the database
if err = o.Read(&v); err == nil {
var num int64
if num, err = o.Update(m); err == nil {
fmt.Println("Number of records updated in database:", num)
}
}
return
}
// DeleteUserInfo deletes UserInfo by Id and returns error if
// the record to be deleted doesn't exist
func DeleteUserInfo(id int64) (err error) {
o := orm.NewOrm()
v := UserInfo{Id: id}
// ascertain id exists in the database
if err = o.Read(&v); err == nil {
var num int64
if num, err = o.Delete(&UserInfo{Id: id}); err == nil {
fmt.Println("Number of records deleted in database:", num)
}
}
return
}
func GetUserInfoByMobile(mobile string)(v *UserInfo, err error) {
o := orm.NewOrm()
sql :="select * from user_info where phone=?"
if err = o.Raw(sql,mobile).QueryRow(&v); err == nil {
return v, nil
}
return nil, err
}
func GetUserInfoByClientId(clintId string)(v *UserInfo, err error) {
o := orm.NewOrm()
sql :="select * from user_info where clientId=?"
if err = o.Raw(sql,clintId).QueryRow(&v); err == nil {
return v, nil
}
return nil, err
}