已经接入配置文件,开始准备生成代码
This commit is contained in:
parent
fe085ce889
commit
d6c11a5d93
208
code/makecode.go
Normal file
208
code/makecode.go
Normal file
@ -0,0 +1,208 @@
|
|||||||
|
package code
|
||||||
|
|
||||||
|
import (
|
||||||
|
. "../common"
|
||||||
|
"../db"
|
||||||
|
"bytes"
|
||||||
|
"encoding/json"
|
||||||
|
"errors"
|
||||||
|
"io/ioutil"
|
||||||
|
"net/http"
|
||||||
|
"os"
|
||||||
|
"path/filepath"
|
||||||
|
)
|
||||||
|
|
||||||
|
type MakeCode struct {
|
||||||
|
TableConfig Map
|
||||||
|
TableColumns map[string]map[string]Map
|
||||||
|
Config Map
|
||||||
|
Error
|
||||||
|
}
|
||||||
|
|
||||||
|
func (that *MakeCode) Db2JSON(name string, path string, db db.HoTimeDB) {
|
||||||
|
if that.TableColumns == nil {
|
||||||
|
that.TableColumns = make(map[string]map[string]Map)
|
||||||
|
}
|
||||||
|
|
||||||
|
//加载配置文件
|
||||||
|
btes, err := ioutil.ReadFile(path)
|
||||||
|
that.Config = DeepCopyMap(Config).(Map)
|
||||||
|
if err == nil {
|
||||||
|
cmap := Map{}
|
||||||
|
//文件是否损坏
|
||||||
|
cmap.JsonToMap(string(btes), &that.Error)
|
||||||
|
for k, v := range cmap {
|
||||||
|
that.Config[k] = v //程序配置
|
||||||
|
Config[k] = v //系统配置
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
that.Error.SetError(errors.New("配置文件不存在,或者配置出错,使用缺省默认配置"))
|
||||||
|
}
|
||||||
|
tables := that.Config.GetSlice("tables")
|
||||||
|
that.TableConfig = Map{}
|
||||||
|
for k, _ := range tables {
|
||||||
|
tableName := tables.GetMap(k).GetString("table")
|
||||||
|
that.TableConfig[tableName] = tables.GetMap(k)
|
||||||
|
columns := tables.GetMap(k).GetSlice("columns")
|
||||||
|
//初始化
|
||||||
|
if that.TableColumns[tableName] == nil {
|
||||||
|
that.TableColumns[tableName] = map[string]Map{}
|
||||||
|
}
|
||||||
|
//注入源数据
|
||||||
|
for k, _ := range columns {
|
||||||
|
columnsName := columns.GetMap(k).GetString("name")
|
||||||
|
that.TableColumns[tableName][columnsName] = columns.GetMap(k)
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
if db.Type == "sqlite" {
|
||||||
|
tables := db.Select("sqlite_sequence", "name")
|
||||||
|
|
||||||
|
for _, v := range tables {
|
||||||
|
if that.TableConfig.GetMap(v.GetString("name")) == nil {
|
||||||
|
that.TableConfig[v.GetString("name")] = Map{
|
||||||
|
"label": "备注",
|
||||||
|
"table": v.GetString("name"),
|
||||||
|
"auth": []string{"add", "delete", "edit", "info"},
|
||||||
|
"columns": []Map{},
|
||||||
|
"search": []Map{
|
||||||
|
//{"type": "tree", "name": "oid", "label": "组织", "table": "organization", "showName": "label", "children": "children"},
|
||||||
|
{"type": "text", "name": "keyword", "label": "请输入关键词", "value": nil},
|
||||||
|
{"type": "date", "name": "date", "label": "时间段", "value": nil},
|
||||||
|
{"type": "select", "name": "state", "label": "状态", "value": nil,
|
||||||
|
"option": []Map{
|
||||||
|
{"name": "正常", "value": 0},
|
||||||
|
{"name": "异常", "value": 1},
|
||||||
|
{"name": "全部", "value": nil},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}
|
||||||
|
//初始化
|
||||||
|
if that.TableColumns[v.GetString("name")] == nil {
|
||||||
|
that.TableColumns[v.GetString("name")] = make(map[string]Map)
|
||||||
|
}
|
||||||
|
tableInfo := db.Query("pragma table_info([" + v.GetString("name") + "]);")
|
||||||
|
for _, info := range tableInfo {
|
||||||
|
coloums := that.TableColumns[v.GetString("name")][info.GetString("name")]
|
||||||
|
if coloums == nil {
|
||||||
|
coloums = Map{
|
||||||
|
"name": info.GetString("name"),
|
||||||
|
"type": info.GetString("type"),
|
||||||
|
"label": "备注",
|
||||||
|
//"add": false, "info": false, "edit": false, "list": true,
|
||||||
|
"must": false,
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
//coloums["name"]=info.GetString("name")
|
||||||
|
coloums["type"] = info.GetString("type")
|
||||||
|
}
|
||||||
|
|
||||||
|
that.TableColumns[v.GetString("name")][info.GetString("name")] = coloums
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
newTables := []Map{}
|
||||||
|
for k, _ := range that.TableConfig {
|
||||||
|
newTable := that.TableConfig.GetMap(k)
|
||||||
|
newTables = append(newTables, newTable)
|
||||||
|
columns := []Map{}
|
||||||
|
for _, v := range that.TableColumns[newTable.GetString("table")] {
|
||||||
|
columns = append(columns, v)
|
||||||
|
}
|
||||||
|
newTable["columns"] = columns
|
||||||
|
}
|
||||||
|
that.Config["tables"] = newTables
|
||||||
|
}
|
||||||
|
//写入配置文件
|
||||||
|
var configByte bytes.Buffer
|
||||||
|
|
||||||
|
err = json.Indent(&configByte, []byte(that.Config.ToJsonString()), "", "\t")
|
||||||
|
//判断配置文件是否序列有变化,有则修改配置,无则不变
|
||||||
|
//fmt.Println(len(btes))
|
||||||
|
if len(btes) != 0 && configByte.String() == string(btes) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
_ = os.MkdirAll(filepath.Dir(path), os.ModeDir)
|
||||||
|
err = ioutil.WriteFile(path, configByte.Bytes(), os.ModeAppend)
|
||||||
|
if err != nil {
|
||||||
|
that.Error.SetError(err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
func (that *MakeCode) Info(table string) string {
|
||||||
|
reStr := ""
|
||||||
|
for _, v := range that.TableColumns[table] {
|
||||||
|
if v.Get("info") == nil || v.GetBool("info") {
|
||||||
|
reStr += v.GetString("name") + ","
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if len(reStr) != 0 {
|
||||||
|
reStr = reStr[:len(reStr)-1]
|
||||||
|
}
|
||||||
|
return reStr
|
||||||
|
}
|
||||||
|
func (that *MakeCode) Add(table string, req *http.Request) Map {
|
||||||
|
data := Map{}
|
||||||
|
for _, v := range that.TableColumns[table] {
|
||||||
|
if v.Get("add") == nil || v.GetBool("add") {
|
||||||
|
reqValue := req.FormValue(v.GetString("name"))
|
||||||
|
if reqValue == "" {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
data[v.GetString("name")] = reqValue
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if len(data) == 0 {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
return data
|
||||||
|
}
|
||||||
|
func (that *MakeCode) Edit(table string, req *http.Request) Map {
|
||||||
|
data := Map{}
|
||||||
|
for _, v := range that.TableColumns[table] {
|
||||||
|
if v.Get("edit") == nil || v.GetBool("edit") {
|
||||||
|
reqValue := req.FormValue(v.GetString("name"))
|
||||||
|
if reqValue == "" {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
data[v.GetString("name")] = reqValue
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(data) == 0 {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
return data
|
||||||
|
}
|
||||||
|
|
||||||
|
func (that *MakeCode) Search(table string, req *http.Request) (string, Map) {
|
||||||
|
reStr := ""
|
||||||
|
for _, v := range that.TableColumns[table] {
|
||||||
|
if v.Get("list") == nil || v.GetBool("list") {
|
||||||
|
reStr += v.GetString("name") + ","
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if len(reStr) != 0 {
|
||||||
|
reStr = reStr[:len(reStr)-1]
|
||||||
|
}
|
||||||
|
|
||||||
|
data := Map{}
|
||||||
|
search := that.TableConfig.GetSlice("search")
|
||||||
|
for k, _ := range search {
|
||||||
|
|
||||||
|
reqValue := req.FormValue(search.GetMap(k).GetString("name"))
|
||||||
|
if reqValue == "" {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
data[search.GetMap(k).GetString("name")] = reqValue
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
return reStr, data
|
||||||
|
}
|
@ -3,11 +3,13 @@ package admin
|
|||||||
import (
|
import (
|
||||||
. "../../../hotime"
|
. "../../../hotime"
|
||||||
. "../../../hotime/common"
|
. "../../../hotime/common"
|
||||||
|
"fmt"
|
||||||
)
|
)
|
||||||
|
|
||||||
var UserCtr = Ctr{
|
var UserCtr = Ctr{
|
||||||
"info": func(that *Context) {
|
"info": func(that *Context) {
|
||||||
re := that.Db.Get(that.RouterString[1], that.MakeCode.Info(that.RouterString[1]), Map{"id": that.RouterString[2]})
|
re := that.Db.Get(that.RouterString[1], that.MakeCode.Info(that.RouterString[1]), Map{"id": that.RouterString[2]})
|
||||||
|
fmt.Println(that.Db.LastQuery)
|
||||||
that.Display(0, re)
|
that.Display(0, re)
|
||||||
},
|
},
|
||||||
"add": func(that *Context) {
|
"add": func(that *Context) {
|
||||||
|
@ -1,46 +1,107 @@
|
|||||||
{
|
{
|
||||||
"name":"HoTimeDashBoard",
|
"ID": "2f92h3herh23rh2y8",
|
||||||
"ID": "2f92h3herh23rh2y8",
|
"label": "HoTime管理平台",
|
||||||
"label":"HoTime管理平台",
|
"menu": [
|
||||||
"menu":[
|
{
|
||||||
{"label":"平台首页", "name":"HelloWorld", "icon": "el-icon-s-home"},
|
"icon": "el-icon-s-home",
|
||||||
{"label":"测试表格", "table":"table", "icon": "el-icon-suitcase"},
|
"label": "平台首页",
|
||||||
{"label":"系统管理", "name":"setting","icon": "el-icon-setting",
|
"name": "HelloWorld"
|
||||||
"menu":[
|
},
|
||||||
{"label":"用户管理", "table":"user"},
|
{
|
||||||
{"label":"组织管理", "table":"organization"},
|
"icon": "el-icon-suitcase",
|
||||||
{"label":"角色管理", "table":"role"},
|
"label": "测试表格",
|
||||||
{"label":"系统设置", "table":"system", "default": "edit"}
|
"table": "table"
|
||||||
]
|
},
|
||||||
}
|
{
|
||||||
],
|
"icon": "el-icon-setting",
|
||||||
"tables": [
|
"label": "系统管理",
|
||||||
{"label":"用户管理",
|
"menu": [
|
||||||
"table":"user",
|
{
|
||||||
"auth":["add", "delete", "edit", "info"],
|
"label": "用户管理",
|
||||||
"columns": [
|
"table": "user"
|
||||||
{"name": "id", "type": "int", "label": "ID","add":false, "info": false, "edit": false, "list": true,"must": false},
|
},
|
||||||
{"name": "password", "type": "password", "label": "密码","add":true, "info": true, "edit": true, "list": false, "must": true},
|
{
|
||||||
{"name": "date", "type": "date", "label": "注册日期", "add":true, "info": true, "edit": true, "list": true, "must": true,"sortable": true},
|
"label": "组织管理",
|
||||||
{"name": "role_id", "type": "text", "label": "角色","value": "role.name", "link": "role","add":true, "info": true, "edit": true, "list": true, "must": true},
|
"table": "organization"
|
||||||
{"name": "organization_id","link": "organization", "type": "checkbox","value": "organization.name",
|
},
|
||||||
"label": "组织","add":true, "info": true, "edit": true, "list": true,"must": true},
|
{
|
||||||
{"name": "state", "type": "state", "label": "状态","add":true, "info": true, "edit": true, "list": true, "must": true,
|
"label": "角色管理",
|
||||||
"option":[
|
"table": "role"
|
||||||
{"name":"正常", "value":0},
|
},
|
||||||
{"name":"异常", "value":1},
|
{
|
||||||
{"name":"全部", "value":null}]}
|
"default": "edit",
|
||||||
],
|
"label": "系统设置",
|
||||||
"search":[
|
"table": "system"
|
||||||
{"type": "tree", "name": "oid","label": "组织","table": "organization","showName": "label","children": "children"},
|
}
|
||||||
{"type": "text", "name":"keyword", "label":"请输入关键词", "value": null},
|
],
|
||||||
{"type": "date", "name":"date", "label":"时间段", "value": null},
|
"name": "setting"
|
||||||
{"type": "select", "name":"state", "label":"状态", "value": null,
|
}
|
||||||
"option":[
|
],
|
||||||
{"name":"正常", "value":0},
|
"name": "HoTimeDashBoard",
|
||||||
{"name":"异常", "value":1},
|
"tables": [
|
||||||
{"name":"全部", "value":null}]}
|
{
|
||||||
]
|
"auth": [
|
||||||
}
|
"add",
|
||||||
]
|
"delete",
|
||||||
|
"edit",
|
||||||
|
"info"
|
||||||
|
],
|
||||||
|
"columns": [
|
||||||
|
{
|
||||||
|
"label": "备注",
|
||||||
|
"must": false,
|
||||||
|
"name": "id",
|
||||||
|
"type": "integer"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": "备注",
|
||||||
|
"must": false,
|
||||||
|
"name": "name",
|
||||||
|
"type": "text"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": "备注",
|
||||||
|
"must": false,
|
||||||
|
"name": "age",
|
||||||
|
"type": "int"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"label": "备注",
|
||||||
|
"search": [
|
||||||
|
{
|
||||||
|
"label": "请输入关键词",
|
||||||
|
"name": "keyword",
|
||||||
|
"type": "text",
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": "时间段",
|
||||||
|
"name": "date",
|
||||||
|
"type": "date",
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": "状态",
|
||||||
|
"name": "state",
|
||||||
|
"option": [
|
||||||
|
{
|
||||||
|
"name": "正常",
|
||||||
|
"value": 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "异常",
|
||||||
|
"value": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "全部",
|
||||||
|
"value": null
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"type": "select",
|
||||||
|
"value": null
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"table": "user"
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
@ -7,7 +7,7 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"codeConfig": {
|
"codeConfig": {
|
||||||
"admin": "config/app.json"
|
"admin": "example/config/app.json"
|
||||||
},
|
},
|
||||||
"db": {
|
"db": {
|
||||||
"sqlite": {
|
"sqlite": {
|
||||||
@ -18,9 +18,6 @@
|
|||||||
"index.html",
|
"index.html",
|
||||||
"index.htm"
|
"index.htm"
|
||||||
],
|
],
|
||||||
"devConfig": {
|
|
||||||
"admin": "example/config/app.json"
|
|
||||||
},
|
|
||||||
"error": {
|
"error": {
|
||||||
"1": "内部系统异常",
|
"1": "内部系统异常",
|
||||||
"2": "访问权限异常",
|
"2": "访问权限异常",
|
||||||
|
Loading…
Reference in New Issue
Block a user