作者:JREAML
项目:GoCM
//获取快捷方式
func (c *Ajax) GetPanel(admin_panel *models.Admin_Panel) revel.Result {
if UserID, ok := c.Session["UserID"]; ok {
var mid string = c.Params.Get("mid")
UserID, err := strconv.ParseInt(UserID, 10, 64)
if err != nil {
revel.WARN.Println(err)
}
Mid, err := strconv.ParseInt(mid, 10, 64)
if err != nil {
revel.WARN.Println(err)
}
//获取登陆用户信息
admin := new(models.Admin)
admin_info := admin.GetById(UserID)
panel_info := admin_panel.GetByMid(Mid, admin_info)
if panel_info.Id > 0 {
Html := "<span><a target='right' href='/" + panel_info.Url + "/'>" + panel_info.Name + "</a><a class='panel-delete' href='javascript:delete_panel();'></a></span>"
return c.RenderText(Html)
} else {
Html := ""
return c.RenderText(Html)
}
} else {
Html := "<span><a href='javascript:;'>未登陆</a></span>"
return c.RenderText(Html)
}
}
作者:JREAML
项目:GoCM
func (c App) Main(admin *models.Admin) revel.Result {
title := "首页--GoCMS管理系统"
if UserID, ok := c.Session["UserID"]; ok {
UserID, err := strconv.ParseInt(UserID, 10, 64)
if err != nil {
revel.WARN.Println(err)
}
admin_info := admin.GetById(UserID)
//判断是否是系统的分隔符
separator := "/"
if os.IsPathSeparator('\\') {
separator = "\\"
} else {
separator = "/"
}
config_file := (revel.BasePath + "/conf/config.conf")
config_file = strings.Replace(config_file, "/", separator, -1)
config_conf, _ := config.ReadDefault(config_file)
system_info := make(map[string]string)
//版本
version, _ := config_conf.String("website", "website.version")
system_info["version"] = version
//前台网站地址
sitedomain, _ := config_conf.String("website", "website.sitedomain")
system_info["sitedomain"] = sitedomain
//操作系统
system_info["os"] = strings.ToUpper(runtime.GOOS + " " + runtime.GOARCH)
//Go版本
system_info["go_varsion"] = strings.ToUpper(runtime.Version())
//MySQL版本
system_info["mysql_varsion"] = admin.GetMysqlVer()
//快捷面板
admin_panel := new(models.Admin_Panel)
panel_list := admin_panel.GetPanelList(admin_info)
c.Render(title, admin_info, system_info, panel_list)
} else {
c.Render(title)
}
return c.RenderTemplate("App/Main.html")
}
作者:JREAML
项目:GoCM
func (c Test) Index(admin *models.Admin) revel.Result {
title := "测试--GoCMS管理系统"
if UserID, ok := c.Session["UserID"]; ok {
UserID, err := strconv.ParseInt(UserID, 10, 64)
if err != nil {
revel.WARN.Println(err)
}
admin_info := admin.GetById(UserID)
admin_panel := new(models.Admin_Panel)
admin_panel.IsAdd(18, admin_info)
}
c.Render(title)
return c.RenderTemplate("Public/Test.html")
}
作者:JREAML
项目:GoCM
//删除快捷方式
func (c *Ajax) DelPanel(admin_panel *models.Admin_Panel) revel.Result {
if UserID, ok := c.Session["UserID"]; ok {
var mid string = c.Params.Get("mid")
UserID, err := strconv.ParseInt(UserID, 10, 64)
if err != nil {
revel.WARN.Println(err)
}
Mid, err := strconv.ParseInt(mid, 10, 64)
if err != nil {
revel.WARN.Println(err)
}
//获取登陆用户信息
admin := new(models.Admin)
admin_info := admin.GetById(UserID)
is_True := admin_panel.DelPanel(Mid, admin_info)
data := make(map[string]string)
if is_True {
data["status"] = "0"
data["message"] = "取消成功!"
return c.RenderJson(data)
} else {
data["status"] = "2"
data["message"] = "取消失败!"
return c.RenderJson(data)
}
} else {
data := make(map[string]string)
data["status"] = "1"
data["message"] = "未登陆!"
return c.RenderJson(data)
}
}
作者:zacklin92
项目:GoCM
func (c App) Main(admin *models.Admin) revel.Result {
title := "首页--GoCMS管理系统"
UserID := utils.GetSession("UserID", c.Session)
if len(UserID) > 0 {
UserID, err := strconv.ParseInt(UserID, 10, 64)
if err != nil {
revel.WARN.Println(err)
}
admin_info := admin.GetById(UserID)
//判断是否是系统的分隔符
separator := "/"
if os.IsPathSeparator('\\') {
separator = "\\"
} else {
separator = "/"
}
config_file := (revel.BasePath + "/conf/config.conf")
config_file = strings.Replace(config_file, "/", separator, -1)
config_conf, _ := config.ReadDefault(config_file)
system_info := make(map[string]string)
//版本
version, _ := config_conf.String("website", "website.version")
system_info["version"] = version
//前台网站地址
sitedomain, _ := config_conf.String("website", "website.sitedomain")
system_info["sitedomain"] = sitedomain
//操作系统
system_info["os"] = strings.ToUpper(runtime.GOOS + " " + runtime.GOARCH)
//Go版本
system_info["go_varsion"] = strings.ToUpper(runtime.Version())
//Revel版本
system_info["revel_varsion"] = strings.ToUpper("Revel 0.11")
//MySQL版本
system_info["mysql_varsion"] = admin.GetMysqlVer()
//服务器监控
memory_info, _ := gopsutil.VirtualMemory()
system_info["main_server_total_memory"] = utils.FileSize(int(memory_info.Total))
system_info["main_server_free_memory"] = utils.FileSize(int(memory_info.Free))
system_info["main_server_available_memory"] = utils.FileSize(int(memory_info.Available))
system_info["main_server_UsedPercent_memory"] = fmt.Sprintf("%10.2f%%", memory_info.UsedPercent)
host, _ := gopsutil.HostInfo()
system_info["main_server_Hostname"] = host.Hostname
system_info["main_server_OS"] = host.OS
system_info["main_server_Platform"] = host.Platform
system_info["main_server_PlatformVersion"] = host.PlatformVersion
system_info["main_server_PlatformFamily"] = host.PlatformFamily
//快捷面板
admin_panel := new(models.Admin_Panel)
panel_list := admin_panel.GetPanelList(admin_info)
c.Render(title, admin_info, system_info, panel_list)
} else {
c.Render(title)
}
return c.RenderTemplate("App/Main.html")
}