module_template.go 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. package modules
  2. import (
  3. "html"
  4. "io/ioutil"
  5. "net/url"
  6. "os"
  7. "path/filepath"
  8. "strings"
  9. "golang-fave/engine/assets"
  10. "golang-fave/engine/builder"
  11. "golang-fave/engine/consts"
  12. "golang-fave/engine/utils"
  13. "golang-fave/engine/wrapper"
  14. )
  15. func (this *Modules) template_GetThemeFiles(wrap *wrapper.Wrapper) []string {
  16. var result []string
  17. files, err := ioutil.ReadDir(wrap.DTemplate)
  18. if err == nil {
  19. for _, file := range files {
  20. if len(file.Name()) > 0 && file.Name()[0] == '.' {
  21. continue
  22. }
  23. if len(file.Name()) > 0 && strings.ToLower(file.Name()) == "robots.txt" {
  24. continue
  25. }
  26. result = append(result, file.Name())
  27. }
  28. }
  29. return result
  30. }
  31. func (this *Modules) RegisterModule_Template() *Module {
  32. return this.newModule(MInfo{
  33. WantDB: false,
  34. Mount: "template",
  35. Name: "Template",
  36. Order: 802,
  37. System: true,
  38. Icon: assets.SysSvgIconView,
  39. Sub: &[]MISub{
  40. {Mount: "default", Name: "Editor", Show: true, Icon: assets.SysSvgIconEdit},
  41. {Mount: "restore", Name: "Restore", Show: true, Icon: assets.SysSvgIconRestore},
  42. },
  43. }, nil, func(wrap *wrapper.Wrapper) (string, string, string) {
  44. content := ""
  45. sidebar := ""
  46. if wrap.CurrSubModule == "" || wrap.CurrSubModule == "default" {
  47. content += this.getBreadCrumbs(wrap, &[]consts.BreadCrumb{
  48. {Name: "Editor"},
  49. })
  50. files := this.template_GetThemeFiles(wrap)
  51. if len(files) > 0 {
  52. selected_file, _ := url.QueryUnescape(wrap.R.URL.Query().Get("file"))
  53. if !(selected_file != "" && utils.InArrayString(files, selected_file)) {
  54. selected_file = files[0]
  55. }
  56. list_of_files := ``
  57. for _, file := range files {
  58. selected := ""
  59. if file == selected_file {
  60. selected = " selected"
  61. }
  62. list_of_files += `<option value="` + html.EscapeString(file) +
  63. `"` + selected + `>` + html.EscapeString(file) + `</option>`
  64. }
  65. fcont := []byte(``)
  66. fcont, _ = ioutil.ReadFile(wrap.DTemplate + string(os.PathSeparator) + selected_file)
  67. fext := filepath.Ext(selected_file)
  68. if len(fext) > 2 {
  69. fext = fext[1:]
  70. }
  71. content += builder.DataForm(wrap, []builder.DataFormField{
  72. {
  73. Kind: builder.DFKHidden,
  74. Name: "action",
  75. Value: "template-edit-theme-file",
  76. },
  77. {
  78. Kind: builder.DFKText,
  79. Caption: "Theme file",
  80. Name: "file",
  81. Value: "0",
  82. CallBack: func(field *builder.DataFormField) string {
  83. return `<div class="form-group n1">` +
  84. `<div class="row">` +
  85. `<div class="col-12">` +
  86. `<div style="position:relative;">` +
  87. `<button type="button" class="btn btn-success" onclick="return fave.ActionRestoreThemeFile('template-restore-file','` + selected_file + `','Are you sure want to restore theme file?');" style="position:absolute;right:0;">Restore</button>` +
  88. `<select class="form-control ignore-lost-data" id="lbl_file" name="file" onchange="setTimeout(function(){$('#lbl_file').val('` + selected_file + `')},500);document.location='/cp/` + wrap.CurrModule + `/?file='+encodeURI(this.value);">` +
  89. list_of_files +
  90. `</select>` +
  91. `</div>` +
  92. `</div>` +
  93. `</div>` +
  94. `</div>`
  95. },
  96. },
  97. {
  98. Kind: builder.DFKText,
  99. CallBack: func(field *builder.DataFormField) string {
  100. return `<div class="form-group last"><div class="row"><div class="col-12"><textarea class="form-control tmpl-editor" name="content" data-emode="` + fext + `" placeholder="" autocomplete="off">` + html.EscapeString(string(fcont)) + `</textarea></div></div></div>`
  101. },
  102. },
  103. {
  104. Kind: builder.DFKSubmit,
  105. CallBack: func(field *builder.DataFormField) string {
  106. return `<div class="row d-lg-none"><div class="col-12"><div class="pt-3"><button type="submit" class="btn btn-primary" data-target="add-edit-button">Save</button></div></div></div>`
  107. },
  108. },
  109. })
  110. sidebar += `<button class="btn btn-primary btn-sidebar" id="add-edit-button">Save</button>`
  111. } else {
  112. content += `<div class="sys-messages">
  113. <div class="alert alert-warning" role="alert">
  114. <strong>Error!</strong> No any file found in theme folder
  115. </div>
  116. </div>`
  117. }
  118. } else if wrap.CurrSubModule == "restore" {
  119. content += this.getBreadCrumbs(wrap, &[]consts.BreadCrumb{
  120. {Name: "Restore"},
  121. })
  122. content += builder.DataForm(wrap, []builder.DataFormField{
  123. {
  124. Kind: builder.DFKText,
  125. CallBack: func(field *builder.DataFormField) string {
  126. return `<div class="form-group last"><div class="row"><div class="col-12"><div class="alert alert-danger" style="margin:0;"><strong>WARNING!</strong> This action will restore current theme files to original, you will lost you theme changes! Think twice before run this action! If you still want to do this, please press <b>Restore</b> red button!</div></div></div></div>`
  127. },
  128. },
  129. {
  130. Kind: builder.DFKSubmit,
  131. CallBack: func(field *builder.DataFormField) string {
  132. return `<div class="row d-lg-none"><div class="col-12"><div class="pt-3"><button type="button" class="btn btn-danger" onclick="return fave.ActionRestoreThemeFile('template-restore-file-all','all','WARNING! Are you sure want to restore all theme files?');">Restore</button></div></div></div>`
  133. },
  134. },
  135. })
  136. sidebar += `<button class="btn btn-danger btn-sidebar" onclick="return fave.ActionRestoreThemeFile('template-restore-file-all','all','WARNING! Are you sure want to restore all theme files?');" id="add-edit-button">Restore</button>`
  137. }
  138. return this.getSidebarModules(wrap), content, sidebar
  139. })
  140. }