本文整理汇总了Golang中github.com/ovh/tat/models.Topic.Insert方法的典型用法代码示例。如果您正苦于以下问题:Golang Topic.Insert方法的具体用法?Golang Topic.Insert怎么用?Golang Topic.Insert使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/ovh/tat/models.Topic
的用法示例。
在下文中一共展示了Topic.Insert方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: insertTopicDM
func (*MessagesController) insertTopicDM(userFrom, userTo models.User) (models.Topic, error) {
var topic = models.Topic{}
topicName := "/Private/" + userFrom.Username + "/DM/" + userTo.Username
topic.Topic = topicName
topic.Description = userTo.Fullname
err := topic.Insert(&userFrom)
if err != nil {
log.Errorf("Error while InsertTopic %s", err)
return topic, err
}
return topic, nil
}
示例2: checkTopicParentDM
func (*MessagesController) checkTopicParentDM(user models.User) error {
topicName := "/Private/" + user.Username + "/DM"
var topicParent = models.Topic{}
err := topicParent.FindByTopic(topicName, false)
if err != nil {
topicParent.Topic = topicName
topicParent.Description = "DM Topics"
err = topicParent.Insert(&user)
if err != nil {
log.Errorf("Error while InsertTopic Parent %s", err)
return err
}
}
return nil
}
示例3: Create
// Create creates a new topic
func (*TopicsController) Create(ctx *gin.Context) {
var topicIn topicCreateJSON
ctx.Bind(&topicIn)
var user = models.User{}
err := user.FindByUsername(utils.GetCtxUsername(ctx))
if err != nil {
ctx.JSON(http.StatusInternalServerError, gin.H{"error": "Error while fetching user."})
return
}
var topic models.Topic
topic.Topic = topicIn.Topic
topic.Description = topicIn.Description
err = topic.Insert(&user)
if err != nil {
log.Errorf("Error while InsertTopic %s", err)
ctx.JSON(http.StatusInternalServerError, err)
return
}
ctx.JSON(http.StatusCreated, topic)
}