Files
ragflow/internal/service/system.go
Jin Hai 94324afee9 Go: fix auth issue in hybrid mode (#14611)
### What problem does this PR solve?

Since secret key get and set logic is updated, the go server also need
to update.

### Type of change

- [x] Bug Fix (non-breaking change which fixes an issue)

---------

Signed-off-by: Jin Hai <haijin.chn@gmail.com>
2026-05-07 17:14:22 +08:00

63 lines
1.7 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 service
import (
"ragflow/internal/server"
"ragflow/internal/utility"
)
// SystemService system service
type SystemService struct{}
// NewSystemService create system service
func NewSystemService() *SystemService {
return &SystemService{}
}
// ConfigResponse system configuration response
type ConfigResponse struct {
RegisterEnabled int `json:"registerEnabled"`
DisablePasswordLogin bool `json:"disablePasswordLogin"`
}
// GetConfig get system configuration
func (s *SystemService) GetConfig() (*ConfigResponse, error) {
cfg := server.GetConfig()
registerEnabled := 1
if !cfg.Authentication.RegisterEnabled {
registerEnabled = 0
}
return &ConfigResponse{
RegisterEnabled: registerEnabled,
DisablePasswordLogin: cfg.Authentication.DisablePasswordLogin,
}, nil
}
// VersionResponse version response
type VersionResponse struct {
Version string `json:"version"`
}
// GetVersion get RAGFlow version
func (s *SystemService) GetVersion() (*VersionResponse, error) {
version := utility.GetRAGFlowVersion()
return &VersionResponse{
Version: version,
}, nil
}