123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382 |
- package modules
- import (
- "context"
- "errors"
- "strings"
- "golang-fave/engine/utils"
- "golang-fave/engine/wrapper"
- )
- func (this *Modules) RegisterAction_ShopModify() *Action {
- return this.newAction(AInfo{
- Mount: "shop-modify",
- WantAdmin: true,
- }, func(wrap *wrapper.Wrapper) {
- pf_id := utils.Trim(wrap.R.FormValue("id"))
- pf_gname := utils.Trim(wrap.R.FormValue("gname"))
- pf_name := utils.Trim(wrap.R.FormValue("name"))
- pf_price := utils.Trim(wrap.R.FormValue("price"))
- pf_price_old := utils.Trim(wrap.R.FormValue("price_old"))
- pf_price_promo := utils.Trim(wrap.R.FormValue("price_promo"))
- pf_currency := utils.Trim(wrap.R.FormValue("currency"))
- pf_alias := utils.Trim(wrap.R.FormValue("alias"))
- pf_vendor := utils.Trim(wrap.R.FormValue("vendor"))
- pf_quantity := utils.Trim(wrap.R.FormValue("quantity"))
- pf_category := utils.Trim(wrap.R.FormValue("category"))
- pf_briefly := utils.Trim(wrap.R.FormValue("briefly"))
- pf_content := utils.Trim(wrap.R.FormValue("content"))
- pf_active := utils.Trim(wrap.R.FormValue("active"))
- pf_custom1 := utils.Trim(wrap.R.FormValue("custom1"))
- pf_custom2 := utils.Trim(wrap.R.FormValue("custom2"))
- if pf_active == "" {
- pf_active = "0"
- }
- if !utils.IsNumeric(pf_id) {
- wrap.MsgError(`Inner system error`)
- return
- }
- if !utils.IsFloat(pf_price) {
- wrap.MsgError(`Inner system error`)
- return
- }
- if !utils.IsFloat(pf_price_old) {
- wrap.MsgError(`Inner system error`)
- return
- }
- if !utils.IsFloat(pf_price_promo) {
- wrap.MsgError(`Inner system error`)
- return
- }
- if !utils.IsNumeric(pf_currency) {
- wrap.MsgError(`Inner system error`)
- return
- }
- if !utils.IsNumeric(pf_quantity) {
- wrap.MsgError(`Inner system error`)
- return
- }
- if !utils.IsNumeric(pf_category) {
- wrap.MsgError(`Inner system error`)
- return
- }
- if pf_name == "" {
- wrap.MsgError(`Please specify product name`)
- return
- }
- if pf_alias == "" {
- pf_alias = utils.GenerateSingleAlias(pf_name)
- }
- if !utils.IsValidSingleAlias(pf_alias) {
- wrap.MsgError(`Please specify correct product alias`)
- return
- }
- // Default is ROOT
- if pf_category == "0" {
- pf_category = "1"
- }
- // Collect fields and data for filter values
- filter_values := map[int]int{}
- for key, values := range wrap.R.PostForm {
- if len(key) > 6 && key[0:6] == "value." {
- for _, value := range values {
- if value != "" {
- filter_values[utils.StrToInt(value)] = utils.StrToInt(key[6:])
- }
- }
- }
- }
- if pf_id == "0" {
- var lastID int64 = 0
- if err := wrap.DB.Transaction(wrap.R.Context(), func(ctx context.Context, tx *wrapper.Tx) error {
- // Insert row
- res, err := tx.Exec(
- ctx,
- `INSERT INTO fave_shop_products SET
- user = ?,
- currency = ?,
- price = ?,
- price_old = ?,
- price_promo = ?,
- gname = ?,
- name = ?,
- alias = ?,
- vendor = ?,
- quantity = ?,
- category = ?,
- briefly = ?,
- content = ?,
- datetime = ?,
- active = ?,
- custom1 = ?,
- custom2 = ?
- ;`,
- wrap.User.A_id,
- utils.StrToInt(pf_currency),
- utils.StrToFloat64(pf_price),
- utils.StrToFloat64(pf_price_old),
- utils.StrToFloat64(pf_price_promo),
- pf_gname,
- pf_name,
- pf_alias,
- pf_vendor,
- utils.StrToInt(pf_quantity),
- utils.StrToInt(pf_category),
- pf_briefly,
- pf_content,
- utils.UnixTimestampToMySqlDateTime(utils.GetCurrentUnixTimestamp()),
- utils.StrToInt(pf_active),
- pf_custom1,
- pf_custom2,
- )
- if err != nil {
- return err
- }
- // Get inserted product id
- lastID, err = res.LastInsertId()
- if err != nil {
- return err
- }
- // Block rows
- if _, err := tx.Exec(ctx, "SELECT id FROM fave_shop_products WHERE id = ? FOR UPDATE;", lastID); err != nil {
- return err
- }
- // Insert product and categories relations
- catids := utils.GetPostArrayInt("cats[]", wrap.R)
- if len(catids) > 0 {
- var catsCount int
- err = tx.QueryRow(
- ctx,
- `SELECT
- COUNT(*)
- FROM
- fave_shop_cats
- WHERE
- id IN(`+strings.Join(utils.ArrayOfIntToArrayOfString(catids), ",")+`)
- FOR UPDATE;`,
- ).Scan(
- &catsCount,
- )
- if *wrap.LogCpError(&err) != nil {
- return err
- }
- if len(catids) != catsCount {
- return errors.New("Inner system error")
- }
- var bulkInsertArr []string
- for _, el := range catids {
- bulkInsertArr = append(bulkInsertArr, `(`+utils.Int64ToStr(lastID)+`,`+utils.IntToStr(el)+`)`)
- }
- if _, err = tx.Exec(
- ctx,
- `INSERT INTO fave_shop_cat_product_rel (product_id,category_id) VALUES `+strings.Join(bulkInsertArr, ",")+`;`,
- ); err != nil {
- return err
- }
- }
- // Insert product and filter values relations
- for vid, _ := range filter_values {
- if _, err = tx.Exec(
- ctx,
- `INSERT INTO fave_shop_filter_product_values SET
- product_id = ?,
- filter_value_id = ?
- ;`,
- lastID,
- vid,
- ); err != nil {
- return err
- }
- }
- return nil
- }); err != nil {
- wrap.MsgError(err.Error())
- return
- }
- wrap.RecreateProductXmlFile()
- wrap.ResetCacheBlocks()
- wrap.Write(`window.location='/cp/shop/modify/` + utils.Int64ToStr(lastID) + `/';`)
- } else {
- if err := wrap.DB.Transaction(wrap.R.Context(), func(ctx context.Context, tx *wrapper.Tx) error {
- // Block rows
- if _, err := tx.Exec(ctx, "SELECT id FROM fave_shop_products WHERE id = ? FOR UPDATE;", utils.StrToInt(pf_id)); err != nil {
- return err
- }
- if _, err := tx.Exec(ctx, "SELECT id FROM fave_shop_currencies WHERE id = ? FOR UPDATE;", utils.StrToInt(pf_currency)); err != nil {
- return err
- }
- if _, err := tx.Exec(ctx, "SELECT product_id FROM fave_shop_cat_product_rel WHERE product_id = ? FOR UPDATE;", utils.StrToInt(pf_id)); err != nil {
- return err
- }
- if _, err := tx.Exec(ctx, "SELECT product_id FROM fave_shop_filter_product_values WHERE product_id = ? FOR UPDATE;", utils.StrToInt(pf_id)); err != nil {
- return err
- }
- // Update row
- if _, err := tx.Exec(
- ctx,
- `UPDATE fave_shop_products SET
- currency = ?,
- price = ?,
- price_old = ?,
- price_promo = ?,
- gname = ?,
- name = ?,
- alias = ?,
- vendor = ?,
- quantity = ?,
- category = ?,
- briefly = ?,
- content = ?,
- active = ?
- WHERE
- id = ?
- ;`,
- utils.StrToInt(pf_currency),
- utils.StrToFloat64(pf_price),
- utils.StrToFloat64(pf_price_old),
- utils.StrToFloat64(pf_price_promo),
- pf_gname,
- pf_name,
- pf_alias,
- pf_vendor,
- utils.StrToInt(pf_quantity),
- utils.StrToInt(pf_category),
- pf_briefly,
- pf_content,
- utils.StrToInt(pf_active),
- utils.StrToInt(pf_id),
- ); err != nil {
- return err
- }
- // Update custom field 1
- if _, ok := wrap.R.Form["custom1"]; ok {
- if _, err := tx.Exec(
- ctx,
- `UPDATE fave_shop_products SET
- custom1 = ?
- WHERE
- id = ?
- ;`,
- pf_custom1,
- utils.StrToInt(pf_id),
- ); err != nil {
- return err
- }
- }
- // Update custom field 2
- if _, ok := wrap.R.Form["custom2"]; ok {
- if _, err := tx.Exec(
- ctx,
- `UPDATE fave_shop_products SET
- custom2 = ?
- WHERE
- id = ?
- ;`,
- pf_custom2,
- utils.StrToInt(pf_id),
- ); err != nil {
- return err
- }
- }
- // Delete product and categories relations
- if _, err := tx.Exec(ctx, "DELETE FROM fave_shop_cat_product_rel WHERE product_id = ?;", utils.StrToInt(pf_id)); err != nil {
- return err
- }
- // Insert product and categories relations
- catids := utils.GetPostArrayInt("cats[]", wrap.R)
- if len(catids) > 0 {
- var catsCount int
- err := tx.QueryRow(
- ctx,
- `SELECT
- COUNT(*)
- FROM
- fave_shop_cats
- WHERE
- id IN(`+strings.Join(utils.ArrayOfIntToArrayOfString(catids), ",")+`)
- FOR UPDATE;`,
- ).Scan(
- &catsCount,
- )
- if *wrap.LogCpError(&err) != nil {
- return err
- }
- if len(catids) != catsCount {
- return errors.New("Inner system error")
- }
- var bulkInsertArr []string
- for _, el := range catids {
- bulkInsertArr = append(bulkInsertArr, `(`+pf_id+`,`+utils.IntToStr(el)+`)`)
- }
- if _, err := tx.Exec(
- ctx,
- `INSERT INTO fave_shop_cat_product_rel (product_id,category_id) VALUES `+strings.Join(bulkInsertArr, ",")+`;`,
- ); err != nil {
- return err
- }
- }
- // Delete product and filter values relations
- if _, err := tx.Exec(
- ctx,
- `DELETE FROM fave_shop_filter_product_values WHERE product_id = ?;`,
- utils.StrToInt(pf_id),
- ); err != nil {
- return err
- }
- // Insert product and filter values relations
- for vid, _ := range filter_values {
- if _, err := tx.Exec(
- ctx,
- `INSERT INTO fave_shop_filter_product_values SET
- product_id = ?,
- filter_value_id = ?
- ;`,
- utils.StrToInt(pf_id),
- vid,
- ); err != nil {
- return err
- }
- }
- return nil
- }); err != nil {
- wrap.MsgError(err.Error())
- return
- }
- wrap.RecreateProductXmlFile()
- wrap.ResetCacheBlocks()
- wrap.Write(`window.location='/cp/shop/modify/` + pf_id + `/';`)
- }
- })
- }
|