123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471 |
- package fetdata
- import (
- "math"
- "strings"
- "golang-fave/engine/wrapper"
- "golang-fave/utils"
- )
- type ShopPagination struct {
- Num string
- Link string
- Current bool
- Dots bool
- }
- type Shop struct {
- wrap *wrapper.Wrapper
- category *ShopCategory
- product *ShopProduct
- products []*ShopProduct
- productsCount int
- productsPerPage int
- productsMaxPage int
- productsCurrPage int
- pagination []*ShopPagination
- paginationPrev *ShopPagination
- paginationNext *ShopPagination
- bufferCats map[string][]*ShopCategory
- }
- func (this *Shop) load() {
- if this == nil {
- return
- }
- sql_nums := `
- SELECT
- COUNT(*)
- FROM
- shop_products
- WHERE
- active = 1
- ;
- `
- sql_rows := `
- SELECT
- shop_products.id,
- shop_products.user,
- shop_products.currency,
- shop_products.price,
- shop_products.name,
- shop_products.alias,
- shop_products.vendor,
- shop_products.quantity,
- shop_products.category,
- shop_products.briefly,
- shop_products.content,
- UNIX_TIMESTAMP(shop_products.datetime) as datetime,
- shop_products.active,
- users.id,
- users.first_name,
- users.last_name,
- users.email,
- users.admin,
- users.active,
- shop_currencies.id,
- shop_currencies.name,
- shop_currencies.coefficient,
- shop_currencies.code,
- shop_currencies.symbol,
- shop_cats.id,
- shop_cats.user,
- shop_cats.name,
- shop_cats.alias,
- shop_cats.lft,
- shop_cats.rgt
- FROM
- shop_products
- LEFT JOIN users ON users.id = shop_products.user
- LEFT JOIN shop_currencies ON shop_currencies.id = shop_products.currency
- LEFT JOIN shop_cats ON shop_cats.id = shop_products.category
- WHERE
- shop_products.active = 1
- ORDER BY
- shop_products.id DESC
- LIMIT ?, ?;
- `
- // Category selected
- if this.category != nil {
- var cat_ids []string
- if rows, err := this.wrap.DB.Query(
- `SELECT
- node.id
- FROM
- shop_cats AS node,
- shop_cats AS parent
- WHERE
- node.lft BETWEEN parent.lft AND parent.rgt AND
- node.id > 1 AND
- parent.id = ?
- GROUP BY
- node.id
- ORDER BY
- node.lft ASC
- ;`,
- this.category.Id(),
- ); err == nil {
- defer rows.Close()
- for rows.Next() {
- var cat_id string
- if err := rows.Scan(&cat_id); err == nil {
- cat_ids = append(cat_ids, cat_id)
- }
- }
- }
- sql_nums = `
- SELECT
- COUNT(*)
- FROM
- (
- SELECT
- COUNT(*)
- FROM
- shop_products
- LEFT JOIN shop_cat_product_rel ON shop_cat_product_rel.product_id = shop_products.id
- WHERE
- shop_products.active = 1 AND
- shop_cat_product_rel.category_id IN (` + strings.Join(cat_ids, ", ") + `)
- GROUP BY
- shop_products.id
- ) AS tbl
- ;
- `
- sql_rows = `
- SELECT
- shop_products.id,
- shop_products.user,
- shop_products.currency,
- shop_products.price,
- shop_products.name,
- shop_products.alias,
- shop_products.vendor,
- shop_products.quantity,
- shop_products.category,
- shop_products.briefly,
- shop_products.content,
- UNIX_TIMESTAMP(shop_products.datetime) AS datetime,
- shop_products.active,
- users.id,
- users.first_name,
- users.last_name,
- users.email,
- users.admin,
- users.active,
- shop_currencies.id,
- shop_currencies.name,
- shop_currencies.coefficient,
- shop_currencies.code,
- shop_currencies.symbol,
- shop_cats.id,
- shop_cats.user,
- shop_cats.name,
- shop_cats.alias,
- shop_cats.lft,
- shop_cats.rgt
- FROM
- shop_products
- LEFT JOIN shop_cat_product_rel ON shop_cat_product_rel.product_id = shop_products.id
- LEFT JOIN users ON users.id = shop_products.user
- LEFT JOIN shop_currencies ON shop_currencies.id = shop_products.currency
- LEFT JOIN shop_cats ON shop_cats.id = shop_products.category
- WHERE
- shop_products.active = 1 AND
- shop_cat_product_rel.category_id IN (` + strings.Join(cat_ids, ", ") + `)
- GROUP BY
- shop_products.id
- ORDER BY
- shop_products.id DESC
- LIMIT ?, ?;
- `
- }
- if err := this.wrap.DB.QueryRow(sql_nums).Scan(&this.productsCount); err == nil {
- if this.category == nil {
- this.productsPerPage = (*this.wrap.Config).Shop.Pagination.Index
- } else {
- this.productsPerPage = (*this.wrap.Config).Shop.Pagination.Category
- }
- this.productsMaxPage = int(math.Ceil(float64(this.productsCount) / float64(this.productsPerPage)))
- this.productsCurrPage = this.wrap.GetCurrentPage(this.productsMaxPage)
- offset := this.productsCurrPage*this.productsPerPage - this.productsPerPage
- if rows, err := this.wrap.DB.Query(sql_rows, offset, this.productsPerPage); err == nil {
- defer rows.Close()
- for rows.Next() {
- rp := utils.MySql_shop_product{}
- ru := utils.MySql_user{}
- rc := utils.MySql_shop_currency{}
- ro := utils.MySql_shop_category{}
- if err := rows.Scan(
- &rp.A_id,
- &rp.A_user,
- &rp.A_currency,
- &rp.A_price,
- &rp.A_name,
- &rp.A_alias,
- &rp.A_vendor,
- &rp.A_quantity,
- &rp.A_category,
- &rp.A_briefly,
- &rp.A_content,
- &rp.A_datetime,
- &rp.A_active,
- &ru.A_id,
- &ru.A_first_name,
- &ru.A_last_name,
- &ru.A_email,
- &ru.A_admin,
- &ru.A_active,
- &rc.A_id,
- &rc.A_name,
- &rc.A_coefficient,
- &rc.A_code,
- &rc.A_symbol,
- &ro.A_id,
- &ro.A_user,
- &ro.A_name,
- &ro.A_alias,
- &ro.A_lft,
- &ro.A_rgt,
- ); err == nil {
- this.products = append(this.products, &ShopProduct{
- wrap: this.wrap,
- object: &rp,
- user: &User{wrap: this.wrap, object: &ru},
- currency: &Currency{wrap: this.wrap, object: &rc},
- category: &ShopCategory{wrap: this.wrap, object: &ro},
- })
- }
- }
- }
- }
- // Build pagination
- if true {
- for i := 1; i < this.productsCurrPage; i++ {
- if this.productsCurrPage >= 5 && i > 1 && i < this.productsCurrPage-1 {
- continue
- }
- if this.productsCurrPage >= 5 && i > 1 && i < this.productsCurrPage {
- this.pagination = append(this.pagination, &ShopPagination{
- Dots: true,
- })
- }
- link := this.wrap.R.URL.Path
- if i > 1 {
- link = link + "?p=" + utils.IntToStr(i)
- }
- this.pagination = append(this.pagination, &ShopPagination{
- Num: utils.IntToStr(i),
- Link: link,
- Current: false,
- })
- }
- // Current page
- link := this.wrap.R.URL.Path
- if this.productsCurrPage > 1 {
- link = link + "?p=" + utils.IntToStr(this.productsCurrPage)
- }
- this.pagination = append(this.pagination, &ShopPagination{
- Num: utils.IntToStr(this.productsCurrPage),
- Link: link,
- Current: true,
- })
- for i := this.productsCurrPage + 1; i <= this.productsMaxPage; i++ {
- if this.productsCurrPage < this.productsMaxPage-3 && i == this.productsCurrPage+3 {
- this.pagination = append(this.pagination, &ShopPagination{
- Dots: true,
- })
- }
- if this.productsCurrPage < this.productsMaxPage-3 && i > this.productsCurrPage+1 && i <= this.productsMaxPage-1 {
- continue
- }
- link := this.wrap.R.URL.Path
- if i > 1 {
- link = link + "?p=" + utils.IntToStr(i)
- }
- this.pagination = append(this.pagination, &ShopPagination{
- Num: utils.IntToStr(i),
- Link: link,
- Current: false,
- })
- }
- } else {
- for i := 1; i <= this.productsMaxPage; i++ {
- link := this.wrap.R.URL.Path
- if i > 1 {
- link = link + "?p=" + utils.IntToStr(i)
- }
- this.pagination = append(this.pagination, &ShopPagination{
- Num: utils.IntToStr(i),
- Link: link,
- Current: i == this.productsCurrPage,
- })
- }
- }
- // Pagination prev/next
- if this.productsMaxPage > 1 {
- link := this.wrap.R.URL.Path
- if this.productsCurrPage-1 > 1 {
- link = this.wrap.R.URL.Path + "?p=" + utils.IntToStr(this.productsCurrPage-1)
- }
- this.paginationPrev = &ShopPagination{
- Num: utils.IntToStr(this.productsCurrPage - 1),
- Link: link,
- Current: this.productsCurrPage <= 1,
- }
- if this.productsCurrPage >= 1 && this.productsCurrPage < this.productsMaxPage {
- link = this.wrap.R.URL.Path + "?p=" + utils.IntToStr(this.productsCurrPage+1)
- } else {
- link = this.wrap.R.URL.Path + "?p=" + utils.IntToStr(this.productsMaxPage)
- }
- this.paginationNext = &ShopPagination{
- Num: utils.IntToStr(this.productsCurrPage + 1),
- Link: link,
- Current: this.productsCurrPage >= this.productsMaxPage,
- }
- }
- }
- func (this *Shop) Category() *ShopCategory {
- if this == nil {
- return nil
- }
- return this.category
- }
- func (this *Shop) Product() *ShopProduct {
- if this == nil {
- return nil
- }
- return this.product
- }
- func (this *Shop) HaveProducts() bool {
- if this == nil {
- return false
- }
- if len(this.products) <= 0 {
- return false
- }
- return true
- }
- func (this *Shop) Products() []*ShopProduct {
- if this == nil {
- return []*ShopProduct{}
- }
- return this.products
- }
- func (this *Shop) ProductsCount() int {
- if this == nil {
- return 0
- }
- return this.productsCount
- }
- func (this *Shop) ProductsPerPage() int {
- if this == nil {
- return 0
- }
- return this.productsPerPage
- }
- func (this *Shop) ProductsMaxPage() int {
- if this == nil {
- return 0
- }
- return this.productsMaxPage
- }
- func (this *Shop) ProductsCurrPage() int {
- if this == nil {
- return 0
- }
- return this.productsCurrPage
- }
- func (this *Shop) Pagination() []*ShopPagination {
- if this == nil {
- return []*ShopPagination{}
- }
- return this.pagination
- }
- func (this *Shop) PaginationPrev() *ShopPagination {
- if this == nil {
- return nil
- }
- return this.paginationPrev
- }
- func (this *Shop) PaginationNext() *ShopPagination {
- if this == nil {
- return nil
- }
- return this.paginationNext
- }
- func (this *Shop) Categories(mlvl int) []*ShopCategory {
- if this == nil {
- return []*ShopCategory{}
- }
- if this.bufferCats == nil {
- this.bufferCats = map[string][]*ShopCategory{}
- }
- key := ""
- where := ``
- if mlvl > 0 {
- where += `AND tbl.depth <= ` + utils.IntToStr(mlvl)
- }
- if _, ok := this.bufferCats[key]; !ok {
- var cats []*ShopCategory
- if rows, err := this.wrap.DB.Query(`
- SELECT
- tbl.*
- FROM
- (
- SELECT
- node.id,
- node.user,
- node.name,
- node.alias,
- node.lft,
- node.rgt,
- (COUNT(parent.id) - 1) AS depth
- FROM
- shop_cats AS node,
- shop_cats AS parent
- WHERE
- node.lft BETWEEN parent.lft AND parent.rgt
- GROUP BY
- node.id
- ORDER BY
- node.lft ASC
- ) AS tbl
- WHERE
- tbl.id > 1
- ` + where + `
- ;
- `); err == nil {
- defer rows.Close()
- for rows.Next() {
- row := utils.MySql_shop_category{}
- var Depth int
- if err := rows.Scan(&row.A_id, &row.A_user, &row.A_name, &row.A_alias, &row.A_lft, &row.A_rgt, &Depth); err == nil {
- cats = append(cats, &ShopCategory{object: &row, depth: Depth})
- }
- }
- }
- this.bufferCats[key] = cats
- }
- return this.bufferCats[key]
- }
|