func CharacterEditorPost(ctx *web.Context, val string) string { if util.SignedIn(ctx) { char := NewCharacter() char.Owner = util.ReadUsername(ctx) char.ID = ctx.Params["CharacterID"] char.Game = ctx.Params["Game"] char.Name = ctx.Params["Name"] char.World = ctx.Params["World"] char.Alligiance = ctx.Params["Alligiance"] char.Bio = ctx.Params["Bio"] if db, err := util.GetDB(); err == nil { blog := util.NewBlogData() db.Retrieve("BlogData_"+char.Owner, &blog) dummy := NewCharacter() rev, err := db.Retrieve(char.ID, &dummy) if err == nil { if dummy.Owner != char.Owner { return util.MessagePage("You are not authorized to edit this charater.", ctx) } char.Rev = rev db.Edit(&char) return util.MessagePage("Character updated.", ctx) } else { char.ID = "Character_" + strconv.Itoa(blog.CharacterIndex) + "_" + char.Owner db.Insert(&char) blog.CharacterIndex++ blog.Characters = append(blog.Characters, char.ID) db.Edit(&blog) return util.MessagePage("Character created.", ctx) } } } return util.MessagePage("Operation failed, try again later.", ctx) }
func ViewPost(ctx *web.Context, val string) string { db, err := util.GetDB() if err != nil { return util.FileNotFound } user := ctx.Params["user"] retval, err := util.LoadTemplate(user, "posts.html", ctx) if err != nil { return util.FileNotFound } blogData := util.NewBlogData() _, err = db.Retrieve("BlogData_"+user, &blogData) if err != nil { return util.FileNotFound } post := NewPost() posts := "" for i := len(blogData.Posts) - 1; i > -1; i-- { _, err := db.Retrieve(blogData.Posts[i], &post) if err != nil { post.Title = "Error: Post not found." post.Content = "" } else { post.Content = strings.Replace(post.Content, "\n", "<br>", -1) } posts += post.HTML(ctx) + "<br>" } retval = strings.Replace(retval, "{{Posts}}", posts, -1) return retval }
//The HTTP get method for getting the page for editing posts. func GetEditPost(ctx *web.Context, val string) string { db, err := util.GetDB() if err != nil { return util.FileNotFound } post := NewPost() postID, ok := ctx.Params["PostID"] var newPost bool if ok && postID != "NewPost" { db.Retrieve(postID, &post) if userKey, ok := util.ReadUserKey(ctx); !(ok && util.GetUserKey(userKey) == post.Owner) { return util.MessagePage("You do not have permission to edit this post.", ctx) } newPost = false } else { postID = "NewPost" newPost = true } if file, err := util.LoadTemplate("", "EditPost.html", ctx); err == nil { if newPost { file = strings.Replace(file, "{{Message}}", "<h3>Writing New Post</h3>", 1) } else { file = strings.Replace(file, "{{Message}}", "<h3>Editing Existing Post</h3>", 1) } file = strings.Replace(file, "{{PostID}}", postID, 1) file = strings.Replace(file, "{{Title}}", post.Title, 1) file = strings.Replace(file, "{{Author}}", post.Author, 1) file = strings.Replace(file, "{{Content}}", post.Content, 1) authors := "" defaultAuthor := post.Author if defaultAuthor != "" { char := char.NewCharacter() db.Retrieve(defaultAuthor, &char) authors += "\t\t<option value=\"" + defaultAuthor + "\">" + char.Name + " (" + char.Game + " - " + char.World + ")</option>\n" } authors += "\t\t<option value=\"\">Me</option>\n" blog := util.NewBlogData() db.Retrieve("BlogData_"+util.ReadUsername(ctx), &blog) for i := 0; i < len(blog.Characters); i++ { if blog.Characters[i] != defaultAuthor { char := char.NewCharacter() db.Retrieve(blog.Characters[i], &char) authors += "\t\t<option value=\"" + blog.Characters[i] + "\">" + char.Name + " (" + char.Game + " - " + char.World + ")</option>\n" } } file = strings.Replace(file, "{{AuthorOptions}}", authors, 1) return file } return util.FileNotFound }
func EditCharacterGet(ctx *web.Context, val string) string { if db, err := util.GetDB(); err == nil { blog := util.NewBlogData() db.Retrieve("BlogData_"+util.ReadUsername(ctx), &blog) chars := "<option>----</option>\n" for i := 0; i < len(blog.Characters); i++ { char := NewCharacter() db.Retrieve(blog.Characters[i], &char) chars += "\t\t<option value=\"" + blog.Characters[i] + "\">" + char.Name + " (" + char.Game + " - " + char.World + ")</option>\n" } file, err := util.LoadTemplate("Edit Character", "EditCharacter.html", ctx) if err == nil { file = strings.Replace(file, "{{CharacterOptions}}", chars, -1) return file } } return util.FileNotFound }
//The HTTP post method for editing posts. func PostEditPost(ctx *web.Context, val string) string { db, err := util.GetDB() if err != nil { return util.FileNotFound } post := NewPost() post.ID = ctx.Params["PostID"] newPost := post.ID == "NewPost" if !newPost { db.Retrieve(post.ID, &post) } pleaseSignIn := "You must sign in to post." username := "" //authenticate the user if userkey, ok := util.ReadUserKey(ctx); !ok { //is the user signed in? return util.MessagePage(pleaseSignIn, ctx) } else if username = util.GetUserKey(userkey); username == "" { return util.MessagePage(pleaseSignIn, ctx) } else if post.ID != "NewPost" { //if it is not a new post, make sure the user has the right to edit it db.Retrieve(post.ID, &post) if ok && post.Owner != username { return util.MessagePage("You do not have permission to edit this post.", ctx) } } //save the post post.Title = ctx.Params["Title"] post.Author = ctx.Params["Author"] post.Content = ctx.Params["Content"] post.Owner = username if newPost { //manage the BlogData blogData := util.NewBlogData() db.Retrieve("BlogData_"+username, &blogData) blogData.PostIndex++ post.ID = "Post_" + strconv.Itoa(blogData.PostIndex) + "_" + username blogData.Posts = append(blogData.Posts, post.ID) db.Edit(&blogData) db.Insert(&post) } else { db.Edit(&post) } return util.MessagePage("Post saved.", ctx) }