package ap import ( "fmt" "net/http" "ciyon/web/admin" . "ciyon/zciyon" ) func paper_setwhere(post *CiyPost) (map[string]any, *CiySQL) { query := post.Getobj("query") csql := NewCiySQL("ap_paper") csql.Where("name like", Getstr(query, "name")) csql.Where_numrange("readcnt", Getstr(query, "readcnt_1"), Getstr(query, "readcnt_2"), 1) csql.Where("inputuser", Getstr(query, "inputuser")) csql.Where_daterange("uptimes", Getstr(query, "uptimes")) order := Getstr(query, "order", "id desc") csql.Order(order) query["order"] = order return query, csql } func Paper_init(w http.ResponseWriter, r *http.Request) bool { post := NewCiyPost(w, r) _, userid := admin.Verifyfast(CiyDB, post) if userid == 0 { return false } where, csql := paper_setwhere(post) pageno := post.Getint("pageno", 1) pagecount := post.Getint("pagecount", 10) csql.Limit(pageno, pagecount) csql.Column("!content") rows, mainrowcount, err := CiyDB.Get(csql, post.Getint("count")) if err != nil { return ErrJSON(w, "读取错误", err) } ret := map[string]any{} ret["where"] = where ret["pageno"] = pageno ret["pagecount"] = pagecount ret["count"] = mainrowcount ret["list"] = rows if post.Getbool("field") { field, fshow := CiyDB.GetField(csql) FieldAdd(&field, &fshow, 0, "_btn", "操作") field["name"]["thwidth"] = "30em" field["readcnt"]["order"] = "r" ret["fshow"] = fshow ret["field"] = field } if post.Getbool("once") { once := map[string]any{} input := make([]map[string]any, 0) input = append(input, map[string]any{ "form": "name", "type": "input", "name": "名称", "prop": ` style="width:8em;"`, }) input = append(input, map[string]any{ "form": "readcnt", "type": "num", "name": "阅读数", "prop": ` style="width:4em;"`, }) input = append(input, map[string]any{ "form": "inputuser", "type": "select", "name": "撰写人", "select": "adminuser", "all": "全部", }) input = append(input, map[string]any{ "form": "uptimes", "type": "daterange", "name": "更新时间", }) once["input"] = input ret["once"] = once } return SuccJSON(w, ret) } func Paper_update(w http.ResponseWriter, r *http.Request) bool { post := NewCiyPost(w, r) _, userid := admin.Verifyfast(CiyDB, post) if userid == 0 { return false } if admin.Nopower(CiyDB, userid, "p10201u") { return ErrJSON(w, "您未被授权操作") } id := post.Getint("id") name := post.Get("name") title := post.Get("title") if name == "" { return ErrJSON(w, "请填写文档标题") } content := post.Get("content", CIYPOST_ALLOW_HTML) if content == "" { return ErrJSON(w, "请填写内容") } var err error var datarow map[string]any if id > 0 { csql := NewCiySQL("ap_paper") csql.Where("id", id) datarow, err = CiyDB.Getone(csql) if datarow == nil { return ErrJSON(w, "数据不存在", err) } } err = CiyDB.Tran(func() error { var csql *CiySQL csql = NewCiySQL("ap_paper") csql.Where("name", name) csql.Column("id") chkid := Toint(CiyDB.Get1(csql)) if chkid > 0 && ((id > 0 && chkid != id) || id == 0) { return fmt.Errorf("数据已存在") } updata := map[string]any{} updata["name"] = name updata["title"] = title updata["inputuser"] = userid updata["uptimes"] = Tostamp() updata["content"] = content csql = NewCiySQL("ap_paper") if id > 0 { csql.Where("id", id) _, err = CiyDB.Update(csql, updata) } else { id, err = CiyDB.Insert(csql, updata) updata["newid"] = id } if err != nil { return fmt.Errorf("更新失败:%v", err) } admin.SaveLogDB(CiyDB, "ap_paper", datarow, updata) return nil }) if err != nil { return ErrJSON(w, "事务"+err.Error()) } return SuccJSON(w) } func Paper_getdata(w http.ResponseWriter, r *http.Request) bool { post := NewCiyPost(w, r) _, userid := admin.Verifyfast(CiyDB, post) if userid == 0 { return false } id := post.Getint("id") data := post.Getbool("data") ret := map[string]any{} if data { csql := NewCiySQL("ap_paper") csql.Where("id", id) var err error ret["data"], err = CiyDB.Getone(csql) if err != nil { return ErrJSON(w, "读取失败:"+err.Error()) } } return SuccJSON(w, ret) } func Paper_del(w http.ResponseWriter, r *http.Request) bool { post := NewCiyPost(w, r) _, userid := admin.Verifyfast(CiyDB, post) if userid == 0 { return false } if admin.Nopower(CiyDB, userid, "p10201d") { return ErrJSON(w, "您未被授权操作") } ids := post.Get("ids") if ids == "" { return ErrJSON(w, "请选择至少一条") } csql := NewCiySQL("ap_paper") csql.Where("id in", ids) rows, _, err := CiyDB.Get(csql) if err != nil { return ErrJSON(w, "读取数据错误", err) } err = CiyDB.Tran(func() error { for _, row := range rows { rowid := Toint(row["id"]) Delme(CiyDB, rowid, "ap_paper") admin.SaveLogDB(CiyDB, "ap_paper", row, nil) } return nil }) if err != nil { return ErrJSON(w, "事务"+err.Error()) } return SuccJSON(w) }