12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- package modules
- import (
- "io/ioutil"
- "os"
- "golang-fave/engine/utils"
- "golang-fave/engine/wrapper"
- )
- func (this *Modules) RegisterAction_TemplatesCreateThemeFile() *Action {
- return this.newAction(AInfo{
- Mount: "templates-create-theme-file",
- WantAdmin: true,
- }, func(wrap *wrapper.Wrapper) {
- pf_name := utils.Trim(wrap.R.FormValue("name"))
- pf_content := wrap.R.FormValue("content")
- if pf_name == "" {
- wrap.MsgError(`Please specify file name`)
- return
- }
- if !utils.IsValidTemplateFileName(pf_name) {
- wrap.MsgError(`Bad template file name`)
- return
- }
- template_file := wrap.DTemplate + string(os.PathSeparator) + pf_name + ".html"
- if utils.IsFileExists(template_file) {
- wrap.MsgError(`File is already exists`)
- return
- }
- // Save content to file
- err := ioutil.WriteFile(template_file, []byte(pf_content), 0664)
- if err != nil {
- wrap.MsgError(err.Error())
- return
- }
- wrap.ResetCacheBlocks()
- wrap.Write(`window.location='/cp/templates/?file=` + pf_name + `.html';`)
- })
- }
|