12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- package modules
- import (
- "database/sql"
- _ "github.com/go-sql-driver/mysql"
- "golang-fave/engine/wrapper"
- "golang-fave/utils"
- )
- func (this *Modules) RegisterAction_IndexUserSignIn() *Action {
- return this.newAction(AInfo{
- WantDB: true,
- Mount: "index-user-sign-in",
- }, func(wrap *wrapper.Wrapper) {
- pf_email := wrap.R.FormValue("email")
- pf_password := wrap.R.FormValue("password")
- if pf_email == "" {
- wrap.MsgError(`Please specify user email`)
- return
- }
- if !utils.IsValidEmail(pf_email) {
- wrap.MsgError(`Please specify correct user email`)
- return
- }
- if pf_password == "" {
- wrap.MsgError(`Please specify user password`)
- return
- }
- if wrap.S.GetInt("UserId", 0) > 0 {
- wrap.MsgError(`You already logined`)
- return
- }
- var user_id int
- err := wrap.DB.QueryRow(
- `SELECT
- id
- FROM
- users
- WHERE
- email = ? and
- password = MD5(?) and
- admin = 1 and
- active = 1
- LIMIT 1;`,
- pf_email,
- pf_password,
- ).Scan(
- &user_id,
- )
- if err != nil && err != sql.ErrNoRows {
- wrap.MsgError(err.Error())
- return
- }
- if err == sql.ErrNoRows {
- wrap.MsgError(`Incorrect email or password`)
- return
- }
- // Save to current session
- wrap.S.SetInt("UserId", user_id)
- // Reload current page
- wrap.Write(`window.location.reload(false);`)
- })
- }
|