File size: 16,077 Bytes
530729e |
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 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 |
// Copyright 2019 GoAdmin Core Team. All rights reserved.
// Use of this source code is governed by a Apache-2.0 style
// license that can be found in the LICENSE file.
package template
import (
"bytes"
"errors"
"html/template"
"path"
"plugin"
"strconv"
"strings"
"sync"
"github.com/GoAdminGroup/go-admin/context"
c "github.com/GoAdminGroup/go-admin/modules/config"
errors2 "github.com/GoAdminGroup/go-admin/modules/errors"
"github.com/GoAdminGroup/go-admin/modules/language"
"github.com/GoAdminGroup/go-admin/modules/logger"
"github.com/GoAdminGroup/go-admin/modules/menu"
"github.com/GoAdminGroup/go-admin/modules/system"
"github.com/GoAdminGroup/go-admin/modules/utils"
"github.com/GoAdminGroup/go-admin/plugins/admin/models"
"github.com/GoAdminGroup/go-admin/template/login"
"github.com/GoAdminGroup/go-admin/template/types"
"golang.org/x/text/cases"
textLang "golang.org/x/text/language"
)
// Template is the interface which contains methods of ui components.
// It will be used in the plugins for custom the ui.
type Template interface {
Name() string
// Components
// layout
Col() types.ColAttribute
Row() types.RowAttribute
// form and table
Form() types.FormAttribute
Table() types.TableAttribute
DataTable() types.DataTableAttribute
TreeView() types.TreeViewAttribute
Tree() types.TreeAttribute
Tabs() types.TabsAttribute
Alert() types.AlertAttribute
Link() types.LinkAttribute
Paginator() types.PaginatorAttribute
Popup() types.PopupAttribute
Box() types.BoxAttribute
Label() types.LabelAttribute
Image() types.ImgAttribute
Button() types.ButtonAttribute
// Builder methods
GetTmplList() map[string]string
GetAssetList() []string
GetAssetImportHTML(exceptComponents ...string) template.HTML
GetAsset(string) ([]byte, error)
GetTemplate(bool) (*template.Template, string)
GetVersion() string
GetRequirements() []string
GetHeadHTML() template.HTML
GetFootJS() template.HTML
Get404HTML() template.HTML
Get500HTML() template.HTML
Get403HTML() template.HTML
}
type PageType uint8
const (
NormalPage PageType = iota
Missing404Page
Error500Page
NoPermission403Page
)
func GetPageTypeFromPageError(err errors2.PageError) PageType {
if err == nil {
return NormalPage
} else if err == errors2.PageError403 {
return NoPermission403Page
} else if err == errors2.PageError404 {
return Missing404Page
} else {
return Error500Page
}
}
const (
CompCol = "col"
CompRow = "row"
CompForm = "form"
CompTable = "table"
CompDataTable = "datatable"
CompTree = "tree"
CompTreeView = "treeview"
CompTabs = "tabs"
CompAlert = "alert"
CompLink = "link"
CompPaginator = "paginator"
CompPopup = "popup"
CompBox = "box"
CompLabel = "label"
CompImage = "image"
CompButton = "button"
)
func HTML(s string) template.HTML {
return template.HTML(s)
}
func CSS(s string) template.CSS {
return template.CSS(s)
}
func JS(s string) template.JS {
return template.JS(s)
}
// The templateMap contains templates registered.
var templateMap = make(map[string]Template)
// Get the template interface by theme name. If the
// name is not found, it panics.
func Get(ctx *context.Context, theme string) Template {
if ctx != nil {
queryTheme := ctx.Theme()
if queryTheme != "" {
if temp, ok := templateMap[queryTheme]; ok {
return temp
}
}
}
if temp, ok := templateMap[theme]; ok {
return temp
}
panic("wrong theme name")
}
// Default get the default template with the theme name set with the global config.
// If the name is not found, it panics.
func Default(ctx ...*context.Context) Template {
if len(ctx) > 0 && ctx[0] != nil {
queryTheme := ctx[0].Theme()
if queryTheme != "" {
if temp, ok := templateMap[queryTheme]; ok {
return temp
}
}
}
if temp, ok := templateMap[c.GetTheme()]; ok {
return temp
}
panic("wrong theme name")
}
var (
templateMu sync.Mutex
compMu sync.Mutex
)
// Add makes a template available by the provided theme name.
// If Add is called twice with the same name or if template is nil,
// it panics.
func Add(name string, temp Template) {
templateMu.Lock()
defer templateMu.Unlock()
if temp == nil {
panic("template is nil")
}
if _, dup := templateMap[name]; dup {
panic("add template twice " + name)
}
templateMap[name] = temp
}
// CheckRequirements check the theme and GoAdmin interdependence limit.
// The first return parameter means that whether GoAdmin version meets the requirement of the theme used or not.
// The second return parameter means that whether the version of theme used meets the requirement of GoAdmin or not.
func CheckRequirements() (bool, bool) {
if !CheckThemeRequirements() {
return false, true
}
// The theme which is not in the default official themes will be ignored.
if !utils.InArray(DefaultThemeNames, Default().Name()) {
return true, true
}
return true, VersionCompare(Default().GetVersion(), system.RequireThemeVersion()[Default().Name()])
}
func CheckThemeRequirements() bool {
return VersionCompare(system.Version(), Default().GetRequirements())
}
func VersionCompare(toCompare string, versions []string) bool {
for _, v := range versions {
if v == toCompare || utils.CompareVersion(v, toCompare) {
return true
}
}
return false
}
func GetPageContentFromPageType(ctx *context.Context, title, desc, msg string, pt PageType) (template.HTML, template.HTML, template.HTML) {
if c.GetDebug() {
return template.HTML(title), template.HTML(desc), Default(ctx).Alert().SetTitle(errors2.MsgWithIcon).Warning(msg)
}
if pt == Missing404Page {
if c.GetCustom404HTML() != template.HTML("") {
return "", "", c.GetCustom404HTML()
} else {
return "", "", Default(ctx).Get404HTML()
}
} else if pt == NoPermission403Page {
if c.GetCustom404HTML() != template.HTML("") {
return "", "", c.GetCustom403HTML()
} else {
return "", "", Default(ctx).Get403HTML()
}
} else {
if c.GetCustom500HTML() != template.HTML("") {
return "", "", c.GetCustom500HTML()
} else {
return "", "", Default(ctx).Get500HTML()
}
}
}
var DefaultThemeNames = []string{"sword", "adminlte"}
func Themes() []string {
names := make([]string, len(templateMap))
i := 0
for k := range templateMap {
names[i] = k
i++
}
return names
}
func AddFromPlugin(name string, mod string) {
plug, err := plugin.Open(mod)
if err != nil {
logger.Error("AddFromPlugin err", err)
panic(err)
}
tempPlugin, err := plug.Lookup(cases.Title(textLang.Und).String(name))
if err != nil {
logger.Error("AddFromPlugin err", err)
panic(err)
}
var temp Template
temp, ok := tempPlugin.(Template)
if !ok {
logger.Error("AddFromPlugin err: unexpected type from module symbol")
panic(errors.New("AddFromPlugin err: unexpected type from module symbol"))
}
Add(name, temp)
}
// Component is the interface which stand for a ui component.
type Component interface {
// GetTemplate return a *template.Template and a given key.
GetTemplate() (*template.Template, string)
// GetAssetList return the assets url suffix used in the component.
// example:
//
// {{.UrlPrefix}}/assets/login/css/bootstrap.min.css => login/css/bootstrap.min.css
//
// See:
// https://github.com/GoAdminGroup/go-admin/blob/master/template/login/theme1.tmpl#L32
// https://github.com/GoAdminGroup/go-admin/blob/master/template/login/list.go
GetAssetList() []string
// GetAsset return the asset content according to the corresponding url suffix.
// Asset content is recommended to use the tool go-bindata to generate.
//
// See: http://github.com/jteeuwen/go-bindata
GetAsset(string) ([]byte, error)
GetContent() template.HTML
IsAPage() bool
GetName() string
GetJS() template.JS
GetCSS() template.CSS
GetCallbacks() types.Callbacks
}
var compMap = map[string]Component{
"login": login.GetLoginComponent(),
}
// GetComp gets the component by registered name. If the
// name is not found, it panics.
func GetComp(name string) Component {
if comp, ok := compMap[name]; ok {
return comp
}
panic("wrong component name")
}
func GetComponentAsset() []string {
assets := make([]string, 0)
for _, comp := range compMap {
assets = append(assets, comp.GetAssetList()...)
}
return assets
}
func GetComponentAssetWithinPage() []string {
assets := make([]string, 0)
for _, comp := range compMap {
if !comp.IsAPage() {
assets = append(assets, comp.GetAssetList()...)
}
}
return assets
}
func GetComponentAssetImportHTML(ctx *context.Context) (res template.HTML) {
res = Default(ctx).GetAssetImportHTML(c.GetExcludeThemeComponents()...)
assets := GetComponentAssetWithinPage()
for i := 0; i < len(assets); i++ {
res += getHTMLFromAssetUrl(assets[i])
}
return
}
func getHTMLFromAssetUrl(s string) template.HTML {
switch path.Ext(s) {
case ".css":
return template.HTML(`<link rel="stylesheet" href="` + c.GetAssetUrl() + c.Url("/assets"+s) + `">`)
case ".js":
return template.HTML(`<script src="` + c.GetAssetUrl() + c.Url("/assets"+s) + `"></script>`)
default:
return ""
}
}
func GetAsset(path string) ([]byte, error) {
for _, comp := range compMap {
res, err := comp.GetAsset(path)
if err == nil {
return res, nil
}
}
return nil, errors.New(path + " not found")
}
// AddComp makes a component available by the provided name.
// If Add is called twice with the same name or if component is nil,
// it panics.
func AddComp(comp Component) {
compMu.Lock()
defer compMu.Unlock()
if comp == nil {
panic("component is nil")
}
if _, dup := compMap[comp.GetName()]; dup {
panic("add component twice " + comp.GetName())
}
compMap[comp.GetName()] = comp
}
// AddLoginComp add the specified login component.
func AddLoginComp(comp Component) {
compMu.Lock()
defer compMu.Unlock()
compMap["login"] = comp
}
// SetComp makes a component available by the provided name.
// If the value corresponding to the key is empty or if component is nil,
// it panics.
func SetComp(name string, comp Component) {
compMu.Lock()
defer compMu.Unlock()
if comp == nil {
panic("component is nil")
}
if _, dup := compMap[name]; dup {
compMap[name] = comp
}
}
type ExecuteParam struct {
User models.UserModel
Tmpl *template.Template
TmplName string
IsPjax bool
Panel types.Panel
Logo template.HTML
Config *c.Config
Menu *menu.Menu
Animation bool
Buttons types.Buttons
NoCompress bool
Iframe bool
}
func updateNavAndLogoJS(logo template.HTML) template.JS {
if logo == template.HTML("") {
return ""
}
return `$(function () {
$(".logo-lg").html("` + template.JS(logo) + `");
});`
}
func updateNavJS(isPjax bool) template.JS {
if !isPjax {
return ""
}
return `$(function () {
let lis = $(".user-menu .dropdown-menu li");
for (i = 0; i < lis.length - 2; i++) {
$(lis[i]).remove();
}
$(".user-menu .dropdown-menu").prepend($("#navbar-nav-custom").html());
});`
}
type ExecuteOptions struct {
Animation bool
NoCompress bool
HideSideBar bool
HideHeader bool
UpdateMenu bool
NavDropDownButton []*types.NavDropDownItemButton
}
func GetExecuteOptions(options []ExecuteOptions) ExecuteOptions {
if len(options) == 0 {
return ExecuteOptions{Animation: true}
}
return options[0]
}
func Execute(ctx *context.Context, param *ExecuteParam) *bytes.Buffer {
buf := new(bytes.Buffer)
err := param.Tmpl.ExecuteTemplate(buf, param.TmplName,
types.NewPage(ctx, &types.NewPageParam{
User: param.User,
Menu: param.Menu,
Assets: GetComponentAssetImportHTML(ctx),
Buttons: param.Buttons,
Iframe: param.Iframe,
UpdateMenu: param.IsPjax,
Panel: param.Panel.
GetContent(append([]bool{param.Config.IsProductionEnvironment() && !param.NoCompress},
param.Animation)...).AddJS(param.Menu.GetUpdateJS(param.IsPjax)).
AddJS(updateNavAndLogoJS(param.Logo)).AddJS(updateNavJS(param.IsPjax)),
TmplHeadHTML: Default(ctx).GetHeadHTML(),
TmplFootJS: Default(ctx).GetFootJS(),
Logo: param.Logo,
}))
if err != nil {
logger.Error("template execute error", err)
}
return buf
}
func WarningPanel(ctx *context.Context, msg string, pts ...PageType) types.Panel {
pt := Error500Page
if len(pts) > 0 {
pt = pts[0]
}
pageTitle, description, content := GetPageContentFromPageType(ctx, msg, msg, msg, pt)
return types.Panel{
Content: content,
Description: description,
Title: pageTitle,
}
}
func WarningPanelWithDescAndTitle(ctx *context.Context, msg, desc, title string, pts ...PageType) types.Panel {
pt := Error500Page
if len(pts) > 0 {
pt = pts[0]
}
pageTitle, description, content := GetPageContentFromPageType(ctx, msg, desc, title, pt)
return types.Panel{
Content: content,
Description: description,
Title: pageTitle,
}
}
var DefaultFuncMap = template.FuncMap{
"lang": language.Get,
"langHtml": language.GetFromHtml,
"link": func(cdnUrl, prefixUrl, assetsUrl string) string {
if cdnUrl == "" {
return prefixUrl + assetsUrl
}
return cdnUrl + assetsUrl
},
"isLinkUrl": func(s string) bool {
return (len(s) > 7 && s[:7] == "http://") || (len(s) > 8 && s[:8] == "https://")
},
"render": func(s, old, repl template.HTML) template.HTML {
return template.HTML(strings.ReplaceAll(string(s), string(old), string(repl)))
},
"renderJS": func(s template.JS, old, repl template.HTML) template.JS {
return template.JS(strings.ReplaceAll(string(s), string(old), string(repl)))
},
"divide": func(a, b int) int {
return a / b
},
"renderRowDataHTML": func(id, content template.HTML, value ...map[string]types.InfoItem) template.HTML {
return template.HTML(types.ParseTableDataTmplWithID(id, string(content), value...))
},
"renderRowDataJS": func(id template.HTML, content template.JS, value ...map[string]types.InfoItem) template.JS {
return template.JS(types.ParseTableDataTmplWithID(id, string(content), value...))
},
"attr": func(s template.HTML) template.HTMLAttr {
return template.HTMLAttr(s)
},
"js": func(s interface{}) template.JS {
if ss, ok := s.(string); ok {
return template.JS(ss)
}
if ss, ok := s.(template.HTML); ok {
return template.JS(ss)
}
return ""
},
"changeValue": func(f types.FormField, index int) types.FormField {
if len(f.ValueArr) > 0 {
f.Value = template.HTML(f.ValueArr[index])
}
if len(f.OptionsArr) > 0 {
f.Options = f.OptionsArr[index]
}
if f.FormType.IsSelect() {
f.FieldClass += "_" + strconv.Itoa(index)
}
return f
},
}
type BaseComponent struct {
Name string
HTMLData string
CSS template.CSS
JS template.JS
Callbacks types.Callbacks
}
func (b *BaseComponent) IsAPage() bool { return false }
func (b *BaseComponent) GetName() string { return b.Name }
func (b *BaseComponent) GetAssetList() []string { return make([]string, 0) }
func (b *BaseComponent) GetAsset(name string) ([]byte, error) { return nil, nil }
func (b *BaseComponent) GetJS() template.JS { return b.JS }
func (b *BaseComponent) GetCSS() template.CSS { return b.CSS }
func (b *BaseComponent) GetCallbacks() types.Callbacks { return b.Callbacks }
func (b *BaseComponent) BindActionTo(ctx *context.Context, action types.Action, id string) {
action.SetBtnId(id)
b.JS += action.Js()
b.HTMLData += string(action.ExtContent(ctx))
b.Callbacks = append(b.Callbacks, action.GetCallbacks())
}
func (b *BaseComponent) GetContentWithData(obj interface{}) template.HTML {
buffer := new(bytes.Buffer)
tmpl, defineName := b.GetTemplate()
err := tmpl.ExecuteTemplate(buffer, defineName, obj)
if err != nil {
logger.Error(b.Name+" GetContent error:", err)
}
return template.HTML(buffer.String())
}
func (b *BaseComponent) GetTemplate() (*template.Template, string) {
tmpl, err := template.New(b.Name).
Funcs(DefaultFuncMap).
Parse(b.HTMLData)
if err != nil {
logger.Error(b.Name+" GetTemplate Error: ", err)
}
return tmpl, b.Name
}
|