Example #1
0
func (self *ViewQuestionHandler) Get() {
	name := self.GetString(":name")
	id, _ := self.GetInt(":id")

	if name != "" && id > 0 {
		if name == "question" {

			if qs, err := model.GetQuestion(id); qs != nil && err == nil {
				qs.Views = qs.Views + 1
				//qs.Hotup = qs.Hotup + 1
				//qs.Hotscore = helper.Qhot_QScore(qs.Hotup, qs.Hotdown)
				//qs.Hotness = helper.Qhot(qs.Views, qs.ReplyCount, qs.Hotscore, qs.Hotscore, qs.Created, qs.ReplyTime)
				//qs.Hotvote = helper.Qhot_Vote(qs.Hotup, qs.Hotdown)
				if row, e := model.PutQuestion(id, qs); e != nil {
					fmt.Println("ViewQuestionHandler更新话题ID", id, "访问次数数据错误,row:", row, e)
					self.Abort("500")
				} else {
					self.Ctx.Output.Context.WriteString(strconv.Itoa(int(qs.Views)))
				}
			}
		} else {
			self.Abort("501")
		}

	} else {
		self.Abort("501")
	}

}
Example #2
0
func (self *EditQuestionHandler) Post() {
	self.TplNames = "sdc/edit-question.html"

	flash := beego.NewFlash()
	tags := template.HTMLEscapeString(strings.TrimSpace(strings.ToLower(self.GetString("tags"))))

	qid, _ := self.GetInt(":qid")

	if qid_handler, err := model.GetQuestion(qid); err == nil {
		uid, _ := self.GetSession("userid").(int64)
		role, _ := self.GetSession("userrole").(int64)
		allow := bool(false)

		if qid_handler.Uid == uid && qid_handler.Id == qid {
			allow = true
		} else if role < 0 {
			allow = true
		}

		if allow {

			self.Data["question"] = *qid_handler
			self.Data["inode"], _ = model.GetNode(qid_handler.Nid)

			if tags == "" {

				flash.Error("尚未设置标签,请设定正确的标签!")
				flash.Store(&self.Controller)
				return
			} else {
				qid_title := template.HTMLEscapeString(strings.TrimSpace(self.GetString("title")))
				qid_content := template.HTMLEscapeString(strings.TrimSpace(self.GetString("content")))

				if qid_title != "" && qid_content != "" {
					tags := template.HTMLEscapeString(strings.TrimSpace(strings.ToLower(self.GetString("tags"))))

					if qs, err := model.GetQuestion(qid); qs != nil && err == nil {

						qs.Title = qid_title

						//删去用户没再使用的图片
						helper.DelLostImages(qs.Content, qid_content)
						qs.Content = qid_content

						if s, e := helper.GetBannerThumbnail(qid_content); e == nil {
							qs.Attachment = s
						}

						if thumbnails, thumbnailslarge, thumbnailsmedium, thumbnailssmall, e := helper.GetThumbnails(qid_content); e == nil {
							qs.Thumbnails = thumbnails
							qs.ThumbnailsLarge = thumbnailslarge
							qs.ThumbnailsMedium = thumbnailsmedium
							qs.ThumbnailsSmall = thumbnailssmall
						}
						/*
							if cat, err := model.GetCategory(nd.Pid); err == nil {
								qs.Category = cat.Title
							}
						*/

						qs.Tags = tags
						qs.Updated = time.Now()

						if row, err := model.PutQuestion(qid, qs); row == 1 && err == nil {
							model.SetRecordforImageOnEdit(qid, qs.Uid)
							self.Redirect("/"+strconv.Itoa(int(qid))+"/", 302)
						} else {

							flash.Error("更新问题出现错误:", fmt.Sprint(err))
							flash.Store(&self.Controller)
							return
						}
					} else {
						flash.Error("无法获取根本不存在的问题!")
						flash.Store(&self.Controller)
						return
					}

				} else {

					flash.Error("问题标题或内容为空!")
					flash.Store(&self.Controller)
					return
				}
			}

		} else {

			//没有权限执行该操作则直接跳转到登录页面
			self.Redirect("/user/signin/", 302)
		}
	} else {

		flash.Error(fmt.Sprint(err))
		flash.Store(&self.Controller)
		return
	}

}
Example #3
0
func (self *HateHandler) Get() {

	if helper.IsSpider(self.Ctx.Request.UserAgent()) != true {
		name := self.GetString(":name")
		id, _ := self.GetInt(":id")
		uid, _ := self.GetSession("userid").(int64)

		if name == "question" {
			if model.IsQuestionMark(uid, id) {
				//self.Abort("304") <-白痴函数 妈的 难道这货不是用来设置状态号的?居然尼玛的直接panic!
				self.Ctx.Output.SetStatus(304)
				return

			} else {
				if qs, err := model.GetQuestion(id); err == nil {

					qs.Hotdown = qs.Hotdown + 1
					qs.Hotscore = helper.Qhot_QScore(qs.Hotup, qs.Hotdown)
					qs.Hotvote = helper.Qhot_Vote(qs.Hotup, qs.Hotdown)
					qs.Hotness = helper.Qhot(qs.Views, qs.ReplyCount, qs.Hotscore, model.GetAScoresByPid(id), qs.Created, qs.ReplyTime)

					if _, err := model.PutQuestion(id, qs); err != nil {
						fmt.Println("PutQuestion执行错误:", err)
					} else {
						model.SetQuestionMark(uid, id)
					}
					self.Ctx.WriteString(strconv.Itoa(int(qs.Hotscore)))
				} else {
					return
				}
			}
		} else if name == "answer" {
			if model.IsAnswerMark(uid, id) {
				self.Ctx.Output.SetStatus(304)
				return

			} else {
				if ans, err := model.GetAnswer(id); err == nil {

					ans.Hotdown = ans.Hotdown + 1
					ans.Views = ans.Views + 1
					ans.Hotscore = helper.Qhot_QScore(ans.Hotup, ans.Hotdown)
					ans.Hotvote = helper.Qhot_Vote(ans.Hotup, ans.Hotdown)
					ans.Hotness = helper.Qhot(ans.Views, ans.ReplyCount, ans.Hotscore, ans.Views, ans.Created, ans.ReplyTime)

					if _, err := model.PutAnswer(id, ans); err != nil {
						fmt.Println("PutAnswer执行错误:", err)
					} else {
						model.SetAnswerMark(uid, id)
					}
					self.Ctx.WriteString(strconv.Itoa(int(ans.Hotscore)))
				} else {
					return
				}
			}
		} else if name == "topic" {

			if tp, err := model.GetTopic(id); err == nil {

				tp.Hotdown = tp.Hotdown + 1
				tp.Hotscore = helper.Hotness_Score(tp.Hotup, tp.Hotdown)
				tp.Hotness = helper.Hotness(tp.Hotup, tp.Hotdown, time.Now())
				model.PutTopic(id, tp)
				//&spades; 没用 ({{.article.Hotdown}})
				self.Ctx.WriteString(strconv.Itoa(int(tp.Hotdown)))
			} else {
				return
			}
		} else if name == "node" {

			if nd, err := model.GetNode(id); err == nil {

				nd.Hotdown = nd.Hotdown + 1
				nd.Hotscore = helper.Hotness_Score(nd.Hotup, nd.Hotdown)
				nd.Hotness = helper.Hotness(nd.Hotup, nd.Hotdown, time.Now())
				model.PutNode(id, nd)
				self.Ctx.WriteString("node hated")
			} else {
				return
			}
		} else {
			self.Ctx.Output.SetStatus(304)
		}

	} else {
		self.Ctx.Output.SetStatus(401)
	}

}