mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-03-06 08:06:43 +08:00
# RAGFlow Go Implementation Plan 🚀 This repository tracks the progress of porting RAGFlow to Go. We'll implement core features and provide performance comparisons between Python and Go versions. ## Implementation Checklist - [x] User Management APIs - [x] Dataset Management Operations - [x] Retrieval Test - [x] Chat Management Operations - [x] Infinity Go SDK --------- Signed-off-by: Jin Hai <haijin.chn@gmail.com> Co-authored-by: Yingfeng Zhang <yingfeng.zhang@gmail.com>
46 lines
2.3 KiB
Go
46 lines
2.3 KiB
Go
//
|
|
// Copyright 2026 The InfiniFlow Authors. All Rights Reserved.
|
|
//
|
|
// 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 model
|
|
|
|
import "time"
|
|
|
|
// User user model
|
|
type User struct {
|
|
ID string `gorm:"column:id;size:32;primaryKey" json:"id"`
|
|
AccessToken *string `gorm:"column:access_token;size:255;index" json:"access_token,omitempty"`
|
|
Nickname string `gorm:"column:nickname;size:100;not null;index" json:"nickname"`
|
|
Password *string `gorm:"column:password;size:255;index" json:"-"`
|
|
Email string `gorm:"column:email;size:255;not null;index" json:"email"`
|
|
Avatar *string `gorm:"column:avatar;type:longtext" json:"avatar,omitempty"`
|
|
Language *string `gorm:"column:language;size:32;index" json:"language,omitempty"`
|
|
ColorSchema *string `gorm:"column:color_schema;size:32;index" json:"color_schema,omitempty"`
|
|
Timezone *string `gorm:"column:timezone;size:64;index" json:"timezone,omitempty"`
|
|
LastLoginTime *time.Time `gorm:"column:last_login_time;index" json:"last_login_time,omitempty"`
|
|
IsAuthenticated string `gorm:"column:is_authenticated;size:1;not null;default:1;index" json:"is_authenticated"`
|
|
IsActive string `gorm:"column:is_active;size:1;not null;default:1;index" json:"is_active"`
|
|
IsAnonymous string `gorm:"column:is_anonymous;size:1;not null;default:0;index" json:"is_anonymous"`
|
|
LoginChannel *string `gorm:"column:login_channel;index" json:"login_channel,omitempty"`
|
|
Status *string `gorm:"column:status;size:1;default:1;index" json:"status"`
|
|
IsSuperuser *bool `gorm:"column:is_superuser;index" json:"is_superuser,omitempty"`
|
|
BaseModel
|
|
}
|
|
|
|
// TableName specify table name
|
|
func (User) TableName() string {
|
|
return "user"
|
|
}
|