123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240 |
- package modules
- import (
- "context"
- "errors"
- "golang-fave/engine/wrapper"
- "golang-fave/utils"
- )
- func (this *Modules) blog_ActionCategoryAdd(wrap *wrapper.Wrapper, pf_id, pf_name, pf_alias, pf_parent string) (error, int64) {
- var lastID int64 = 0
- return 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_blog_cats FOR UPDATE;"); err != nil {
- return err
- }
- // Process
- if _, err := tx.Exec(ctx, "SELECT @mr := rgt FROM fave_blog_cats WHERE id = ?;", utils.StrToInt(pf_parent)); err != nil {
- return err
- }
- if _, err := tx.Exec(ctx, "UPDATE fave_blog_cats SET rgt = rgt + 2 WHERE rgt > @mr;"); err != nil {
- return err
- }
- if _, err := tx.Exec(ctx, "UPDATE fave_blog_cats SET lft = lft + 2 WHERE lft > @mr;"); err != nil {
- return err
- }
- if _, err := tx.Exec(ctx, "UPDATE fave_blog_cats SET rgt = rgt + 2 WHERE id = ?;", utils.StrToInt(pf_parent)); err != nil {
- return err
- }
- res, err := tx.Exec(ctx, "INSERT INTO fave_blog_cats (id, user, name, alias, lft, rgt) VALUES (NULL, ?, ?, ?, @mr, @mr + 1);", wrap.User.A_id, pf_name, pf_alias)
- if err != nil {
- return err
- }
- lastID, err = res.LastInsertId()
- if err != nil {
- return err
- }
- return nil
- }), lastID
- }
- func (this *Modules) blog_ActionCategoryUpdate(wrap *wrapper.Wrapper, pf_id, pf_name, pf_alias, pf_parent string) error {
- parentId := this.blog_GetCategoryParentId(wrap, utils.StrToInt(pf_id))
- if utils.StrToInt(pf_parent) == parentId {
- // If parent not changed, just update category data
- return wrap.DB.Transaction(wrap.R.Context(), func(ctx context.Context, tx *wrapper.Tx) error {
- // Process
- if _, err := tx.Exec(
- ctx,
- `UPDATE fave_blog_cats SET
- name = ?,
- alias = ?
- WHERE
- id > 1 AND
- id = ?
- ;`,
- pf_name,
- pf_alias,
- utils.StrToInt(pf_id),
- ); err != nil {
- return err
- }
- return nil
- })
- }
- // TODO: Fix parent change
- // Parent is changed, move category to new parent
- return wrap.DB.Transaction(wrap.R.Context(), func(ctx context.Context, tx *wrapper.Tx) error {
- // Block all rows
- if _, err := tx.Exec(ctx, "SELECT id FROM fave_blog_cats FOR UPDATE;"); err != nil {
- return err
- }
- var parentL int
- var parentR int
- if err := tx.QueryRow(ctx, `SELECT lft, rgt FROM fave_blog_cats WHERE id = ?;`, utils.StrToInt(pf_parent)).Scan(&parentL, &parentR); *wrap.LogCpError(&err) != nil {
- return err
- }
- var targetL int
- var targetR int
- if err := tx.QueryRow(ctx, `SELECT lft, rgt FROM fave_blog_cats WHERE id = ?;`, utils.StrToInt(pf_id)).Scan(&targetL, &targetR); *wrap.LogCpError(&err) != nil {
- return err
- }
- if !(targetL < parentL && targetR > parentR) {
- // Select data
- rows, err := tx.Query(ctx, "SELECT id, lft, rgt FROM fave_blog_cats WHERE lft >= ? and rgt <= ? ORDER BY lft ASC", targetL, targetR)
- if err != nil {
- return err
- }
- defer rows.Close()
- var rows_id []int
- var rows_lft []int
- var rows_rgt []int
- for rows.Next() {
- var row_id int
- var row_lft int
- var row_rgt int
- if err := rows.Scan(&row_id, &row_lft, &row_rgt); *wrap.LogCpError(&err) == nil {
- rows_id = append(rows_id, row_id)
- rows_lft = append(rows_lft, row_lft)
- rows_rgt = append(rows_rgt, row_rgt)
- }
- }
- if targetL > parentR {
- // From right to left
- // Shift
- step := targetR - targetL + 1
- if _, err := tx.Exec(ctx, "UPDATE fave_blog_cats SET lft = lft + ? WHERE lft > ? and lft < ?;", step, parentR, targetL); err != nil {
- return err
- }
- if _, err := tx.Exec(ctx, "UPDATE fave_blog_cats SET rgt = rgt + ? WHERE rgt > ? and rgt < ?;", step, parentR, targetL); err != nil {
- return err
- }
- if _, err := tx.Exec(ctx, "UPDATE fave_blog_cats SET rgt = rgt + ? WHERE id = ?;", step, utils.StrToInt(pf_parent)); err != nil {
- return err
- }
- // Update target rows
- for i, _ := range rows_id {
- new_lft := rows_lft[i] - (targetL - parentR)
- new_rgt := rows_rgt[i] - (targetL - parentR)
- if _, err := tx.Exec(ctx, "UPDATE fave_blog_cats SET lft = ?, rgt = ? WHERE id = ?;", new_lft, new_rgt, rows_id[i]); err != nil {
- return err
- }
- }
- } else {
- // From left to right
- // Shift
- step := targetR - targetL + 1
- if _, err := tx.Exec(ctx, "UPDATE fave_blog_cats SET lft = lft - ? WHERE lft > ? and lft < ?;", step, targetR, parentR); err != nil {
- return err
- }
- if _, err := tx.Exec(ctx, "UPDATE fave_blog_cats SET rgt = rgt - ? WHERE rgt > ? and rgt < ?;", step, targetR, parentR); err != nil {
- return err
- }
- // Update target rows
- for i, _ := range rows_id {
- new_lft := rows_lft[i] + (parentR - targetL - step)
- new_rgt := rows_rgt[i] + (parentR - targetL - step)
- if _, err := tx.Exec(ctx, "UPDATE fave_blog_cats SET lft = ?, rgt = ? WHERE id = ?;", new_lft, new_rgt, rows_id[i]); err != nil {
- return err
- }
- }
- }
- } else {
- // Trying to move category to they child as parent
- return errors.New("Category can't be moved inside here child")
- }
- // Update target cat data
- if _, err := tx.Exec(ctx, "UPDATE fave_blog_cats SET name = ?, alias = ? WHERE id = ?;", pf_name, pf_alias, utils.StrToInt(pf_id)); err != nil {
- return err
- }
- return nil
- })
- }
- func (this *Modules) RegisterAction_BlogCategoriesModify() *Action {
- return this.newAction(AInfo{
- WantDB: true,
- Mount: "blog-categories-modify",
- WantAdmin: true,
- }, func(wrap *wrapper.Wrapper) {
- pf_id := utils.Trim(wrap.R.FormValue("id"))
- pf_name := utils.Trim(wrap.R.FormValue("name"))
- pf_alias := utils.Trim(wrap.R.FormValue("alias"))
- pf_parent := utils.Trim(wrap.R.FormValue("parent"))
- if !utils.IsNumeric(pf_id) || !utils.IsNumeric(pf_parent) {
- wrap.MsgError(`Inner system error`)
- return
- }
- if pf_name == "" {
- wrap.MsgError(`Please specify category name`)
- return
- }
- if pf_alias == "" {
- pf_alias = utils.GenerateSingleAlias(pf_name)
- }
- if !utils.IsValidSingleAlias(pf_alias) {
- wrap.MsgError(`Please specify correct category alias`)
- return
- }
- // Set root category as default
- if pf_parent == "0" {
- pf_parent = "1"
- } else {
- // Check if parent category exists
- var parentId int
- err := wrap.DB.QueryRow(
- wrap.R.Context(),
- `SELECT
- id
- FROM
- fave_blog_cats
- WHERE
- id > 1 AND
- id = ?
- LIMIT 1;`,
- utils.StrToInt(pf_parent),
- ).Scan(&parentId)
- if *wrap.LogCpError(&err) != nil {
- wrap.MsgError(err.Error())
- return
- }
- }
- if pf_id == "0" {
- var err error = nil
- var lastID int64 = 0
- if err, lastID = this.blog_ActionCategoryAdd(wrap, pf_id, pf_name, pf_alias, pf_parent); err != nil {
- wrap.MsgError(err.Error())
- return
- }
- wrap.ResetCacheBlocks()
- wrap.Write(`window.location='/cp/blog/categories-modify/` + utils.Int64ToStr(lastID) + `/';`)
- } else {
- if err := this.blog_ActionCategoryUpdate(wrap, pf_id, pf_name, pf_alias, pf_parent); err != nil {
- wrap.MsgError(err.Error())
- return
- }
- wrap.ResetCacheBlocks()
- wrap.Write(`window.location='/cp/blog/categories-modify/` + pf_id + `/';`)
- }
- })
- }
|