本文整理汇总了Golang中github.com/deepzz0/goblog/helper.Response类的典型用法代码示例。如果您正苦于以下问题:Golang Response类的具体用法?Golang Response怎么用?Golang Response使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了Response类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: updateSitemap
func (this *SysconfigController) updateSitemap(resp *helper.Response) {
content := this.GetString("content")
if content == "" {
resp.Status = RS.RS_params_error
resp.Tips(helper.WARNING, RS.RS_params_error)
return
}
_, err := os.Stat(models.SiteFile)
if err != nil && !strings.Contains(err.Error(), "no such file") {
log.Error(err)
return
} else {
os.Remove(models.SiteFile)
}
f, err := os.Create(models.SiteFile)
if err != nil {
log.Error(err)
return
}
defer f.Close()
_, err = f.WriteString(content)
if err != nil {
resp.Status = RS.RS_failed
resp.Err = helper.Error{Level: helper.WARNING, Msg: "错误|" + err.Error()}
}
}
示例2: deleteVerify
func (this *SysconfigController) deleteVerify(resp *helper.Response) {
name := this.GetString("name")
if name == "" {
resp.Status = RS.RS_params_error
resp.Tips(helper.WARNING, RS.RS_params_error)
return
}
models.ManageConf.DelVerification(name)
}
示例3: getSitemap
func (this *SysconfigController) getSitemap(resp *helper.Response) {
f, err := os.Open(models.SiteFile)
if err != nil {
resp.Status = RS.RS_failed
resp.Err = helper.Error{Level: helper.WARNING, Msg: "错误|" + err.Error()}
return
}
defer f.Close()
data, _ := ioutil.ReadAll(f)
resp.Data = string(data)
}
示例4: getCategory
func (this *CategoryController) getCategory(resp *helper.Response) {
id := this.GetString("id")
if id != "" {
if cat := models.Blogger.GetCategoryByID(id); cat != nil {
b, _ := json.Marshal(cat)
resp.Data = string(b)
}
} else {
resp.Status = RS.RS_failed
resp.Err = helper.Error{Level: helper.WARNING, Msg: "错误|参数错误。"}
}
}
示例5: getBlogroll
func (this *BlogrollController) getBlogroll(resp *helper.Response) {
id := this.GetString("id")
if id != "" {
if br := models.Blogger.GetBlogrollByID(id); br != nil {
b, _ := json.Marshal(br)
resp.Data = string(b)
}
} else {
resp.Status = RS.RS_failed
resp.Err = helper.Error{Level: helper.WARNING, Msg: "错误|参数错误。"}
}
}
示例6: doDeleteTag
func (this *CategoryController) doDeleteTag(resp *helper.Response) {
id := this.GetString("id")
if id == "" {
resp.Status = RS.RS_failed
resp.Err = helper.Error{Level: helper.WARNING, Msg: "哦噢。。。|参数错误。"}
return
}
if code := models.Blogger.DelTagByID(id); code != RS.RS_success {
resp.Status = code
resp.Err = helper.Error{Level: helper.WARNING, Msg: "抱歉|系统没有找到该标签。"}
return
}
}
示例7: doDeleteTopic
func (this *TopicsController) doDeleteTopic(resp *helper.Response) {
id, err := this.GetInt("id")
if err != nil {
resp.Status = RS.RS_failed
resp.Err = helper.Error{Level: helper.WARNING, Msg: "ID错误|走正常途径哦。"}
return
}
err = models.TMgr.DelTopic(int32(id))
if err != nil {
resp.Status = RS.RS_failed
resp.Err = helper.Error{Level: helper.WARNING, Msg: "删除失败|" + err.Error()}
return
}
}
示例8: getTopic
func (this *TopicsController) getTopic(resp *helper.Response) {
id, err := this.GetInt("id")
if err != nil {
resp.Status = RS.RS_failed
resp.Err = helper.Error{Level: helper.WARNING, Msg: "错误|ID格式不正确。"}
return
}
if topic, err := models.TMgr.LoadTopic(int32(id)); err != nil || topic == nil {
resp.Status = RS.RS_failed
resp.Err = helper.Error{Level: helper.WARNING, Msg: "错误|系统未查询到该文章。"}
return
} else {
resp.Data = topic
}
}
示例9: modifyPasswd
func (this *UserController) modifyPasswd(resp *helper.Response) {
modifypasswdT, err := template.ParseFiles("views/manage/user/modifypasswd.html")
if err != nil {
panic(err)
}
var buffer bytes.Buffer
modifypasswdT.Execute(&buffer, nil)
resp.Data = buffer.String()
}
示例10: doDeleteTopics
func (this *TopicsController) doDeleteTopics(resp *helper.Response) {
ids := this.GetString("ids")
log.Debugf("%s", ids)
if ids == "" {
resp.Status = RS.RS_failed
resp.Err = helper.Error{Level: helper.WARNING, Msg: "ID错误|走正常途径哦。"}
return
}
sliceID := strings.Split(ids, ",")
for _, v := range sliceID {
id, err := strconv.Atoi(v)
if err != nil {
log.Error(err)
resp.Status = RS.RS_failed
resp.Err = helper.Error{Level: helper.WARNING, Msg: "ID错误|走正常途径哦。"}
return
}
err = models.TMgr.DelTopic(int32(id))
if err != nil {
resp.Status = RS.RS_failed
resp.Err = helper.Error{Level: helper.WARNING, Msg: "删除失败|" + err.Error()}
return
}
}
}
示例11: doRestore
func (this *TrashController) doRestore(resp *helper.Response) {
id, err := this.GetInt32("id")
if err != nil {
resp.Status = RS.RS_failed
resp.Tips(helper.WARNING, RS.RS_params_error)
return
}
if topic := models.TMgr.GetWaitDelTopic(id); topic == nil {
resp.Status = RS.RS_not_found
resp.Tips(helper.WARNING, RS.RS_not_found)
return
} else {
if code := models.TMgr.RestoreTopic(topic); code != RS.RS_success {
resp.Status = code
resp.Tips(helper.WARNING, code)
return
}
}
}
示例12: saveBlogroll
func (this *BlogrollController) saveBlogroll(resp *helper.Response) {
content := this.GetString("json")
var br models.Blogroll
err := json.Unmarshal([]byte(content), &br)
if err != nil {
log.Error(err)
resp.Status = RS.RS_failed
resp.Err = helper.Error{Level: helper.WARNING, Msg: "内容错误|要仔细检查哦。"}
return
}
if br.ID == "TEST" {
resp.Status = RS.RS_failed
resp.Err = helper.Error{Level: helper.WARNING, Msg: "内容错误|请修改你需要添加的工具。"}
return
}
if blogroll := models.Blogger.GetBlogrollByID(br.ID); blogroll != nil {
*blogroll = br
sort.Sort(models.Blogger.Blogrolls)
} else {
br.CreateTime = time.Now()
models.Blogger.AddBlogroll(&br)
}
}
示例13: saveCategory
func (this *CategoryController) saveCategory(resp *helper.Response) {
content := this.GetString("json")
var cat models.Category
err := json.Unmarshal([]byte(content), &cat)
if err != nil {
log.Error(err)
resp.Status = RS.RS_failed
resp.Err = helper.Error{Level: helper.WARNING, Msg: "内容错误|要仔细检查哦。"}
return
}
if cat.ID == "TEST" {
resp.Status = RS.RS_failed
resp.Err = helper.Error{Level: helper.WARNING, Msg: "内容错误|请修改你需要添加的分类。"}
return
}
if category := models.Blogger.GetCategoryByID(cat.ID); category != nil {
*category = cat
sort.Sort(models.Blogger.Categories)
} else {
cat.CreateTime = time.Now()
models.Blogger.AddCategory(&cat)
}
}
示例14: saveSocial
func (this *SocialController) saveSocial(resp *helper.Response) {
content := this.GetString("json")
var sc models.Social
err := json.Unmarshal([]byte(content), &sc)
if err != nil {
log.Error(err)
resp.Status = RS.RS_failed
resp.Err = helper.Error{Level: helper.WARNING, Msg: "内容错误|要仔细检查哦。"}
return
}
if sc.ID == "TEST" {
resp.Status = RS.RS_failed
resp.Err = helper.Error{Level: helper.WARNING, Msg: "内容错误|请修改你需要添加的社交。"}
return
}
if social := models.Blogger.GetSocialByID(sc.ID); social != nil {
*social = sc
sort.Sort(models.Blogger.Socials)
} else {
sc.CreateTime = time.Now()
models.Blogger.AddSocial(&sc)
}
}
示例15: doModifyInfo
func (this *UserController) doModifyInfo(resp *helper.Response) {
if blogname := this.GetString("blogname"); blogname != "" {
models.Blogger.BlogName = blogname
}
if icon := this.GetString("icon"); icon != "" {
models.Blogger.HeadIcon = icon
}
if introduce := this.GetString("introduce"); introduce != "" {
models.Blogger.Introduce = introduce
}
if sex := this.GetString("sex"); sex != "" {
models.Blogger.Sex = sex
}
if email := this.GetString("email"); email != "" {
models.Blogger.Email = email
}
if address := this.GetString("address"); address != "" {
models.Blogger.Address = address
}
if education := this.GetString("education"); education != "" {
models.Blogger.Education = education
}
resp.Success()
}