123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- package actions
- import (
- utils "golang-fave/engine/wrapper/utils"
- )
- func (this *Action) Action_first_user() {
- if err := this.use_database(); err != nil {
- this.msg_error(err.Error())
- return
- } else {
- defer this.db.Close()
- }
- pf_first_name := this.wrapper.R.FormValue("first_name")
- pf_last_name := this.wrapper.R.FormValue("last_name")
- pf_email := this.wrapper.R.FormValue("email")
- pf_password := this.wrapper.R.FormValue("password")
- if pf_email == "" {
- this.msg_error(`Please specify user email`)
- return
- }
- if !utils.EmailIsValid(pf_email) {
- this.msg_error(`Please specify correct user email`)
- return
- }
- if pf_password == "" {
- this.msg_error(`Please specify user password`)
- return
- }
- _, err := this.db.Query(
- "INSERT INTO `users` SET `first_name` = ?, `last_name` = ?, `email` = ?, `password` = MD5(?);",
- pf_first_name, pf_last_name, pf_email, pf_password)
- if err != nil {
- this.msg_error(err.Error())
- return
- }
- // Reload current page
- this.write(`window.location.reload(false);`)
- }
|