diff --git a/postrender.go b/postrender.go index 71fd1e4..5348967 100644 --- a/postrender.go +++ b/postrender.go @@ -2,9 +2,12 @@ package writefreely import ( "bytes" + "fmt" "github.com/microcosm-cc/bluemonday" stripmd "github.com/writeas/go-strip-markdown" "github.com/writeas/saturday" + "github.com/writeas/web-core/stringmanip" + "github.com/writeas/writefreely/parse" "html" "html/template" "regexp" @@ -122,6 +125,30 @@ func postTitle(content, friendlyId string) string { return friendlyId } +// TODO: fix duplicated code from postTitle. postTitle is a widely used func we +// don't have time to investigate right now. +func friendlyPostTitle(content, friendlyId string) string { + const maxTitleLen = 80 + + // Strip HTML tags with bluemonday's StrictPolicy, then unescape the HTML + // entities added in by sanitizing the content. + content = html.UnescapeString(bluemonday.StrictPolicy().Sanitize(content)) + + content = strings.TrimLeftFunc(stripmd.Strip(content), unicode.IsSpace) + eol := strings.IndexRune(content, '\n') + blankLine := strings.Index(content, "\n\n") + if blankLine != -1 && blankLine <= eol && blankLine <= assumedTitleLen { + return strings.TrimSpace(content[:blankLine]) + } else if eol == -1 && utf8.RuneCountInString(content) <= maxTitleLen { + return content + } + title, truncd := parse.TruncToWord(parse.PostLede(content, true), maxTitleLen) + if truncd { + title += "..." + } + return title +} + func getSanitizationPolicy() *bluemonday.Policy { policy := bluemonday.UGCPolicy() policy.AllowAttrs("src", "style").OnElements("iframe", "video") @@ -133,3 +160,62 @@ func getSanitizationPolicy() *bluemonday.Policy { policy.AllowURLSchemes("http", "https", "mailto", "xmpp") return policy } + +func sanitizePost(content string) string { + return strings.Replace(content, "<", "<", -1) +} + +// postDescription generates a description based on the given post content, +// title, and post ID. This doesn't consider a V2 post field, `title` when +// choosing what to generate. In case a post has a title, this function will +// fail, and logic should instead be implemented to skip this when there's no +// title, like so: +// var desc string +// if title == "" { +// desc = postDescription(content, title, friendlyId) +// } else { +// desc = shortPostDescription(content) +// } +func postDescription(content, title, friendlyId string) string { + maxLen := 140 + + if content == "" { + content = "Write Freely is a painless, simple, federated blogging platform." + } else { + fmtStr := "%s" + truncation := 0 + if utf8.RuneCountInString(content) > maxLen { + // Post is longer than the max description, so let's show a better description + fmtStr = "%s..." + truncation = 3 + } + + if title == friendlyId { + // No specific title was found; simply truncate the post, starting at the beginning + content = fmt.Sprintf(fmtStr, strings.Replace(stringmanip.Substring(content, 0, maxLen-truncation), "\n", " ", -1)) + } else { + // There was a title, so return a real description + blankLine := strings.Index(content, "\n\n") + if blankLine < 0 { + blankLine = 0 + } + truncd := stringmanip.Substring(content, blankLine, blankLine+maxLen-truncation) + contentNoNL := strings.Replace(truncd, "\n", " ", -1) + content = strings.TrimSpace(fmt.Sprintf(fmtStr, contentNoNL)) + } + } + + return content +} + +func shortPostDescription(content string) string { + maxLen := 140 + fmtStr := "%s" + truncation := 0 + if utf8.RuneCountInString(content) > maxLen { + // Post is longer than the max description, so let's show a better description + fmtStr = "%s..." + truncation = 3 + } + return strings.TrimSpace(fmt.Sprintf(fmtStr, strings.Replace(stringmanip.Substring(content, 0, maxLen-truncation), "\n", " ", -1))) +} diff --git a/posts.go b/posts.go index 32c18dc..72615c8 100644 --- a/posts.go +++ b/posts.go @@ -1,16 +1,29 @@ package writefreely import ( + "database/sql" + "encoding/json" + "fmt" + "github.com/gorilla/mux" "github.com/guregu/null" "github.com/guregu/null/zero" "github.com/kylemcc/twitter-text-go/extract" + stripmd "github.com/writeas/go-strip-markdown" + "github.com/writeas/impart" "github.com/writeas/monday" "github.com/writeas/slug" + "github.com/writeas/web-core/activitystreams" + "github.com/writeas/web-core/bots" "github.com/writeas/web-core/converter" + "github.com/writeas/web-core/i18n" + "github.com/writeas/web-core/log" "github.com/writeas/web-core/tags" + "github.com/writeas/writefreely/page" "github.com/writeas/writefreely/parse" "html/template" + "net/http" "regexp" + "strings" "time" ) @@ -25,6 +38,23 @@ const ( ) type ( + AnonymousPost struct { + ID string + Content string + HTMLContent template.HTML + Font string + Language string + Direction string + Title string + GenTitle string + Description string + Author string + Views int64 + IsPlainText bool + IsCode bool + IsLinkable bool + } + AuthenticatedPost struct { ID string `json:"id" schema:"id"` *SubmittedPost @@ -41,9 +71,6 @@ type ( IsRTL converter.NullJSONBool `json:"rtl" schema:"rtl"` Language converter.NullJSONString `json:"lang" schema:"lang"` Created *string `json:"created" schema:"created"` - - // [{ "medium": "ev" }, { "twitter": "ilikebeans" }] - Crosspost []map[string]string `json:"crosspost" schema:"crosspost"` } // Post represents a post as found in the database. @@ -60,7 +87,6 @@ type ( Created time.Time `db:"created" json:"created"` Updated time.Time `db:"updated" json:"updated"` ViewCount int64 `db:"view_count" json:"-"` - EmbedViewCount int64 `db:"embed_view_count" json:"-"` Title zero.String `db:"title" json:"title"` HTMLTitle template.HTML `db:"title" json:"-"` Content string `db:"content" json:"body"` @@ -80,7 +106,6 @@ type ( *Post IsSubdomain bool `json:"-"` IsTopLevel bool `json:"-"` - Domain string `json:"-"` DisplayDate string `json:"-"` Views int64 `json:"views"` Owner *PublicUser `json:"-"` @@ -88,6 +113,22 @@ type ( Collection *CollectionObj `json:"collection,omitempty"` } + RawPost struct { + Id, Slug string + Title string + Content string + Views int64 + Font string + Created time.Time + IsRTL sql.NullBool + Language sql.NullString + OwnerID int64 + CollectionID sql.NullInt64 + + Found bool + Gone bool + } + AnonymousAuthPost struct { ID string `json:"id"` Token string `json:"token"` @@ -108,6 +149,846 @@ type ( } ) +func (p *Post) Direction() string { + if p.RTL.Valid { + if p.RTL.Bool { + return "rtl" + } + return "ltr" + } + return "auto" +} + +// DisplayTitle dynamically generates a title from the Post's contents if it +// doesn't already have an explicit title. +func (p *Post) DisplayTitle() string { + if p.Title.String != "" { + return p.Title.String + } + t := friendlyPostTitle(p.Content, p.ID) + return t +} + +// PlainDisplayTitle dynamically generates a title from the Post's contents if it +// doesn't already have an explicit title. +func (p *Post) PlainDisplayTitle() string { + if t := stripmd.Strip(p.DisplayTitle()); t != "" { + return t + } + return p.ID +} + +// FormattedDisplayTitle dynamically generates a title from the Post's contents if it +// doesn't already have an explicit title. +func (p *Post) FormattedDisplayTitle() template.HTML { + if p.HTMLTitle != "" { + return p.HTMLTitle + } + return template.HTML(p.DisplayTitle()) +} + +// Summary gives a shortened summary of the post based on the post's title, +// especially for display in a longer list of posts. It extracts a summary for +// posts in the Title\n\nBody format, returning nothing if the entire was short +// enough that the extracted title == extracted summary. +func (p Post) Summary() string { + if p.Content == "" { + return "" + } + p.Content = stripmd.Strip(p.Content) + + title := p.Title.String + var desc string + if title == "" { + // No title, so generate one + title = friendlyPostTitle(p.Content, p.ID) + desc = postDescription(p.Content, title, p.ID) + if desc == title { + return "" + } + return desc + } + + return shortPostDescription(p.Content) +} + +// Excerpt shows any text that comes before a (more) tag. +// TODO: use HTMLExcerpt in templates instead of this method +func (p *Post) Excerpt() template.HTML { + return p.HTMLExcerpt +} + +func (p *Post) CreatedDate() string { + return p.Created.Format("2006-01-02") +} + +func (p *Post) Created8601() string { + return p.Created.Format("2006-01-02T15:04:05Z") +} + +func (p *Post) IsScheduled() bool { + return p.Created.After(time.Now()) +} + +func (p *Post) HasTag(tag string) bool { + // Regexp looks for tag and has a non-capturing group at the end looking + // for the end of the word. + // Assisted by: https://stackoverflow.com/a/35192941/1549194 + hasTag, _ := regexp.MatchString("#"+tag+`(?:[[:punct:]]|\s|\z)`, p.Content) + return hasTag +} + +func (p *Post) HasTitleLink() bool { + if p.Title.String == "" { + return false + } + hasLink, _ := regexp.MatchString(`([^!]+|^)\[.+\]\(.+\)`, p.Title.String) + return hasLink +} + +func handleViewPost(app *app, w http.ResponseWriter, r *http.Request) error { + vars := mux.Vars(r) + friendlyID := vars["post"] + + isJSON := strings.HasSuffix(friendlyID, ".json") + isXML := strings.HasSuffix(friendlyID, ".xml") + isCSS := strings.HasSuffix(friendlyID, ".css") + isMarkdown := strings.HasSuffix(friendlyID, ".md") + isRaw := strings.HasSuffix(friendlyID, ".txt") || isJSON || isXML || isCSS || isMarkdown + + // Display reserved page if that is requested resource + if t, ok := pages[r.URL.Path[1:]+".tmpl"]; ok { + // Serve templated page + err := t.ExecuteTemplate(w, "base", pageForReq(app, r)) + if err != nil { + log.Error("Unable to render page: %v", err) + } + return nil + } else if (strings.Contains(r.URL.Path, ".") && !isRaw && !isMarkdown) || r.URL.Path == "/robots.txt" || r.URL.Path == "/manifest.json" { + // Serve static file + shttp.ServeHTTP(w, r) + return nil + } + + // Display collection if this is a collection + c, _ := app.db.GetCollection(friendlyID) + if c != nil { + return impart.HTTPError{http.StatusMovedPermanently, fmt.Sprintf("/%s/", friendlyID)} + } + + // Normalize the URL, redirecting user to consistent post URL + if friendlyID != strings.ToLower(friendlyID) { + return impart.HTTPError{http.StatusMovedPermanently, fmt.Sprintf("/%s", strings.ToLower(friendlyID))} + } + + ext := "" + if isRaw { + parts := strings.Split(friendlyID, ".") + friendlyID = parts[0] + if len(parts) > 1 { + ext = "." + parts[1] + } + } + + var ownerID sql.NullInt64 + var title string + var content string + var font string + var language []byte + var rtl []byte + var views int64 + var post *AnonymousPost + var found bool + var gone bool + + fixedID := slug.Make(friendlyID) + if fixedID != friendlyID { + return impart.HTTPError{http.StatusFound, fmt.Sprintf("/%s%s", fixedID, ext)} + } + + err := app.db.QueryRow(fmt.Sprintf("SELECT owner_id, title, content, text_appearance, view_count, language, rtl FROM posts WHERE id = ?"), friendlyID).Scan(&ownerID, &title, &content, &font, &views, &language, &rtl) + switch { + case err == sql.ErrNoRows: + found = false + + // Output the error in the correct format + if isJSON { + content = "{\"error\": \"Post not found.\"}" + } else if isRaw { + content = "Post not found." + } else { + return ErrPostNotFound + } + case err != nil: + found = false + + log.Error("Post loading err: %s\n", err) + return ErrInternalGeneral + default: + found = true + + var d string + if len(rtl) == 0 { + d = "auto" + } else if rtl[0] == 49 { + // TODO: find a cleaner way to get this (possibly NULL) value + d = "rtl" + } else { + d = "ltr" + } + generatedTitle := friendlyPostTitle(content, friendlyID) + sanitizedContent := content + if font != "code" { + sanitizedContent = template.HTMLEscapeString(content) + } + var desc string + if title == "" { + desc = postDescription(content, title, friendlyID) + } else { + desc = shortPostDescription(content) + } + post = &AnonymousPost{ + ID: friendlyID, + Content: sanitizedContent, + Title: title, + GenTitle: generatedTitle, + Description: desc, + Author: "", + Font: font, + IsPlainText: isRaw, + IsCode: font == "code", + IsLinkable: font != "code", + Views: views, + Language: string(language), + Direction: d, + } + if !isRaw { + post.HTMLContent = template.HTML(applyMarkdown([]byte(content))) + } + } + + // Check if post has been unpublished + if content == "" { + gone = true + + if isJSON { + content = "{\"error\": \"Post was unpublished.\"}" + } else if isCSS { + content = "" + } else if isRaw { + content = "Post was unpublished." + } else { + return ErrPostUnpublished + } + } + + var u = &User{} + if isRaw { + contentType := "text/plain" + if isJSON { + contentType = "application/json" + } else if isCSS { + contentType = "text/css" + } else if isXML { + contentType = "application/xml" + } else if isMarkdown { + contentType = "text/markdown" + } + w.Header().Set("Content-Type", fmt.Sprintf("%s; charset=utf-8", contentType)) + if isMarkdown && post.Title != "" { + fmt.Fprintf(w, "%s\n", post.Title) + for i := 1; i <= len(post.Title); i++ { + fmt.Fprintf(w, "=") + } + fmt.Fprintf(w, "\n\n") + } + fmt.Fprint(w, content) + + if !found { + return ErrPostNotFound + } else if gone { + return ErrPostUnpublished + } + } else { + var err error + page := struct { + *AnonymousPost + page.StaticPage + Username string + IsOwner bool + SiteURL string + }{ + AnonymousPost: post, + StaticPage: pageForReq(app, r), + SiteURL: app.cfg.App.Host, + } + if u = getUserSession(app, r); u != nil { + page.Username = u.Username + page.IsOwner = ownerID.Valid && ownerID.Int64 == u.ID + } + + err = templates["post"].ExecuteTemplate(w, "post", page) + if err != nil { + log.Error("Post template execute error: %v", err) + } + } + + go func() { + if u != nil && ownerID.Valid && ownerID.Int64 == u.ID { + // Post is owned by someone; skip view increment since that person is viewing this post. + return + } + // Update stats for non-raw post views + if !isRaw && r.Method != "HEAD" && !bots.IsBot(r.UserAgent()) { + _, err := app.db.Exec("UPDATE posts SET view_count = view_count + 1 WHERE id = ?", friendlyID) + if err != nil { + log.Error("Unable to update posts count: %v", err) + } + } + }() + + return nil +} + +// API v2 funcs +// newPost creates a new post with or without an owning Collection. +// +// Endpoints: +// /posts +// /posts?collection={alias} +// ? /collections/{alias}/posts +func newPost(app *app, w http.ResponseWriter, r *http.Request) error { + reqJSON := IsJSON(r.Header.Get("Content-Type")) + vars := mux.Vars(r) + collAlias := vars["alias"] + if collAlias == "" { + collAlias = r.FormValue("collection") + } + accessToken := r.Header.Get("Authorization") + if accessToken == "" { + // TODO: remove this + accessToken = r.FormValue("access_token") + } + + // FIXME: determine web submission with Content-Type header + var u *User + var userID int64 = -1 + var username string + if accessToken == "" { + u = getUserSession(app, r) + if u != nil { + userID = u.ID + username = u.Username + } + } else { + userID = app.db.GetUserID(accessToken) + } + if userID == -1 { + return ErrNotLoggedIn + } + + if accessToken == "" && u == nil && collAlias != "" { + return impart.HTTPError{http.StatusBadRequest, "Parameter `access_token` required."} + } + + // Get post data + var p *SubmittedPost + if reqJSON { + decoder := json.NewDecoder(r.Body) + err := decoder.Decode(&p) + if err != nil { + log.Error("Couldn't parse new post JSON request: %v\n", err) + return ErrBadJSON + } + if p.Title == nil { + t := "" + p.Title = &t + } + if strings.TrimSpace(*(p.Content)) == "" { + return ErrNoPublishableContent + } + } else { + post := r.FormValue("body") + appearance := r.FormValue("font") + title := r.FormValue("title") + rtlValue := r.FormValue("rtl") + langValue := r.FormValue("lang") + if strings.TrimSpace(post) == "" { + return ErrNoPublishableContent + } + + var isRTL, rtlValid bool + if rtlValue == "auto" && langValue != "" { + isRTL = i18n.LangIsRTL(langValue) + rtlValid = true + } else { + isRTL = rtlValue == "true" + rtlValid = rtlValue != "" && langValue != "" + } + + // Create a new post + p = &SubmittedPost{ + Title: &title, + Content: &post, + Font: appearance, + IsRTL: converter.NullJSONBool{sql.NullBool{Bool: isRTL, Valid: rtlValid}}, + Language: converter.NullJSONString{sql.NullString{String: langValue, Valid: langValue != ""}}, + } + } + if !p.isFontValid() { + p.Font = "norm" + } + + var newPost *PublicPost = &PublicPost{} + var coll *Collection + var collID int64 + var err error + if accessToken != "" { + newPost, err = app.db.CreateOwnedPost(p, accessToken, collAlias) + } else { + //return ErrNotLoggedIn + // TODO: verify user is logged in + if collAlias != "" { + coll, err = app.db.GetCollection(collAlias) + if err != nil { + return err + } + if coll.OwnerID != u.ID { + return ErrForbiddenCollection + } + collID = coll.ID + } + // TODO: return PublicPost from createPost + newPost.Post, err = app.db.CreatePost(userID, collID, p) + } + if err != nil { + return err + } + if coll != nil { + coll.ForPublic() + newPost.Collection = &CollectionObj{Collection: *coll} + } + + newPost.extractData() + newPost.OwnerName = username + + // Write success now + response := impart.WriteSuccess(w, newPost, http.StatusCreated) + + if coll != nil && app.cfg.App.Federation { + go federatePost(app, newPost, collID, false) + } + + return response +} + +func existingPost(app *app, w http.ResponseWriter, r *http.Request) error { + reqJSON := IsJSON(r.Header.Get("Content-Type")) + vars := mux.Vars(r) + postID := vars["post"] + + p := AuthenticatedPost{ID: postID} + var err error + + if reqJSON { + // Decode JSON request + decoder := json.NewDecoder(r.Body) + err = decoder.Decode(&p) + if err != nil { + log.Error("Couldn't parse post update JSON request: %v\n", err) + return ErrBadJSON + } + } else { + err = r.ParseForm() + if err != nil { + log.Error("Couldn't parse post update form request: %v\n", err) + return ErrBadFormData + } + + // Can't decode to a nil SubmittedPost property, so create instance now + p.SubmittedPost = &SubmittedPost{} + err = app.formDecoder.Decode(&p, r.PostForm) + if err != nil { + log.Error("Couldn't decode post update form request: %v\n", err) + return ErrBadFormData + } + } + + if p.SubmittedPost == nil { + return ErrPostNoUpdatableVals + } + + // Ensure an access token was given + accessToken := r.Header.Get("Authorization") + // Get user's cookie session if there's no token + var u *User + //var username string + if accessToken == "" { + u = getUserSession(app, r) + if u != nil { + //username = u.Username + } + } + if u == nil && accessToken == "" { + return ErrNoAccessToken + } + + // Get user ID from current session or given access token, if one was given. + var userID int64 + if u != nil { + userID = u.ID + } else if accessToken != "" { + userID, err = AuthenticateUser(app.db, accessToken) + if err != nil { + return err + } + } + + // Modify post struct + p.ID = postID + + err = app.db.UpdateOwnedPost(&p, userID) + if err != nil { + if reqJSON { + return err + } + + if err, ok := err.(impart.HTTPError); ok { + addSessionFlash(app, w, r, err.Message, nil) + } else { + addSessionFlash(app, w, r, err.Error(), nil) + } + } + + var pRes *PublicPost + pRes, err = app.db.GetPost(p.ID, 0) + if reqJSON { + if err != nil { + return err + } + pRes.extractData() + } + + if pRes.CollectionID.Valid { + coll, err := app.db.GetCollectionBy("id = ?", pRes.CollectionID.Int64) + if err == nil && app.cfg.App.Federation { + pRes.Collection = &CollectionObj{Collection: *coll} + go federatePost(app, pRes, pRes.Collection.ID, true) + } + } + + // Write success now + if reqJSON { + return impart.WriteSuccess(w, pRes, http.StatusOK) + } + + addSessionFlash(app, w, r, "Changes saved.", nil) + collectionAlias := vars["alias"] + redirect := "/" + postID + "/meta" + if collectionAlias != "" { + redirect = "/" + collectionAlias + "/" + pRes.Slug.String + "/edit/meta" + } + w.Header().Set("Location", redirect) + w.WriteHeader(http.StatusFound) + + return nil +} + +func deletePost(app *app, w http.ResponseWriter, r *http.Request) error { + vars := mux.Vars(r) + friendlyID := vars["post"] + editToken := r.FormValue("token") + + var ownerID int64 + var u *User + accessToken := r.Header.Get("Authorization") + if accessToken == "" && editToken == "" { + u = getUserSession(app, r) + if u == nil { + return ErrNoAccessToken + } + } + + var res sql.Result + var t *sql.Tx + var err error + var collID sql.NullInt64 + var coll *Collection + var pp *PublicPost + if accessToken != "" || u != nil { + // Caller provided some way to authenticate; assume caller expects the + // post to be deleted based on a specific post owner, thus we should + // return corresponding errors. + if accessToken != "" { + ownerID = app.db.GetUserID(accessToken) + if ownerID == -1 { + return ErrBadAccessToken + } + } else { + ownerID = u.ID + } + + // TODO: don't make two queries + var realOwnerID sql.NullInt64 + err = app.db.QueryRow("SELECT collection_id, owner_id FROM posts WHERE id = ?", friendlyID).Scan(&collID, &realOwnerID) + if err != nil { + return err + } + if !collID.Valid { + // There's no collection; simply delete the post + res, err = app.db.Exec("DELETE FROM posts WHERE id = ? AND owner_id = ?", friendlyID, ownerID) + } else { + // Post belongs to a collection; do any additional clean up + coll, err = app.db.GetCollectionBy("id = ?", collID.Int64) + if err != nil { + log.Error("Unable to get collection: %v", err) + return err + } + if app.cfg.App.Federation { + // First fetch full post for federation + pp, err = app.db.GetOwnedPost(friendlyID, ownerID) + if err != nil { + log.Error("Unable to get owned post: %v", err) + return err + } + collObj := &CollectionObj{Collection: *coll} + pp.Collection = collObj + } + + t, err = app.db.Begin() + if err != nil { + log.Error("No begin: %v", err) + return err + } + res, err = t.Exec("DELETE FROM posts WHERE id = ? AND owner_id = ?", friendlyID, ownerID) + } + } else { + if editToken == "" { + return impart.HTTPError{http.StatusBadRequest, "No authenticated user or post token given."} + } + + // TODO: SELECT owner_id, as well, and return appropriate error if NULL instead of running two queries + var dummy int64 + err = app.db.QueryRow("SELECT 1 FROM posts WHERE id = ?", friendlyID).Scan(&dummy) + switch { + case err == sql.ErrNoRows: + return impart.HTTPError{http.StatusNotFound, "Post not found."} + } + err = app.db.QueryRow("SELECT 1 FROM posts WHERE id = ? AND owner_id IS NULL", friendlyID).Scan(&dummy) + switch { + case err == sql.ErrNoRows: + // Post already has an owner. This could provide a bad experience + // for the user, but it's more important to ensure data isn't lost + // unexpectedly. So prevent deletion via token. + return impart.HTTPError{http.StatusConflict, "This post belongs to some user (hopefully yours). Please log in and delete it from that user's account."} + } + res, err = app.db.Exec("DELETE FROM posts WHERE id = ? AND modify_token = ? AND owner_id IS NULL", friendlyID, editToken) + } + if err != nil { + return err + } + + affected, err := res.RowsAffected() + if err != nil { + if t != nil { + t.Rollback() + log.Error("Rows affected err! Rolling back") + } + return err + } else if affected == 0 { + if t != nil { + t.Rollback() + log.Error("No rows affected! Rolling back") + } + return impart.HTTPError{http.StatusForbidden, "Post not found, or you're not the owner."} + } + if t != nil { + t.Commit() + } + if coll != nil && app.cfg.App.Federation { + go deleteFederatedPost(app, pp, collID.Int64) + } + + return impart.HTTPError{Status: http.StatusNoContent} +} + +// addPost associates a post with the authenticated user. +func addPost(app *app, w http.ResponseWriter, r *http.Request) error { + var ownerID int64 + + // Authenticate user + at := r.Header.Get("Authorization") + if at != "" { + ownerID = app.db.GetUserID(at) + if ownerID == -1 { + return ErrBadAccessToken + } + } else { + u := getUserSession(app, r) + if u == nil { + return ErrNotLoggedIn + } + ownerID = u.ID + } + + // Parse claimed posts in format: + // [{"id": "...", "token": "..."}] + var claims *[]ClaimPostRequest + decoder := json.NewDecoder(r.Body) + err := decoder.Decode(&claims) + if err != nil { + return ErrBadJSONArray + } + + vars := mux.Vars(r) + collAlias := vars["alias"] + + // Update all given posts + res, err := app.db.ClaimPosts(ownerID, collAlias, claims) + if err != nil { + return err + } + return impart.WriteSuccess(w, res, http.StatusOK) +} + +func dispersePost(app *app, w http.ResponseWriter, r *http.Request) error { + var ownerID int64 + + // Authenticate user + at := r.Header.Get("Authorization") + if at != "" { + ownerID = app.db.GetUserID(at) + if ownerID == -1 { + return ErrBadAccessToken + } + } else { + u := getUserSession(app, r) + if u == nil { + return ErrNotLoggedIn + } + ownerID = u.ID + } + + // Parse posts in format: + // ["..."] + var postIDs []string + decoder := json.NewDecoder(r.Body) + err := decoder.Decode(&postIDs) + if err != nil { + return ErrBadJSONArray + } + + // Update all given posts + res, err := app.db.DispersePosts(ownerID, postIDs) + if err != nil { + return err + } + return impart.WriteSuccess(w, res, http.StatusOK) +} + +type ( + PinPostResult struct { + ID string `json:"id,omitempty"` + Code int `json:"code,omitempty"` + ErrorMessage string `json:"error_msg,omitempty"` + } +) + +// pinPost pins a post to a blog +func pinPost(app *app, w http.ResponseWriter, r *http.Request) error { + var userID int64 + + // Authenticate user + at := r.Header.Get("Authorization") + if at != "" { + userID = app.db.GetUserID(at) + if userID == -1 { + return ErrBadAccessToken + } + } else { + u := getUserSession(app, r) + if u == nil { + return ErrNotLoggedIn + } + userID = u.ID + } + + // Parse request + var posts []struct { + ID string `json:"id"` + Position int64 `json:"position"` + } + decoder := json.NewDecoder(r.Body) + err := decoder.Decode(&posts) + if err != nil { + return ErrBadJSONArray + } + + // Validate data + vars := mux.Vars(r) + collAlias := vars["alias"] + + coll, err := app.db.GetCollection(collAlias) + if err != nil { + return err + } + if coll.OwnerID != userID { + return ErrForbiddenCollection + } + + // Do (un)pinning + isPinning := r.URL.Path[strings.LastIndex(r.URL.Path, "/"):] == "/pin" + res := []PinPostResult{} + for _, p := range posts { + err = app.db.UpdatePostPinState(isPinning, p.ID, coll.ID, userID, p.Position) + ppr := PinPostResult{ID: p.ID} + if err != nil { + ppr.Code = http.StatusInternalServerError + // TODO: set error messsage + } else { + ppr.Code = http.StatusOK + } + res = append(res, ppr) + } + return impart.WriteSuccess(w, res, http.StatusOK) +} + +func fetchPost(app *app, w http.ResponseWriter, r *http.Request) error { + var collID int64 + vars := mux.Vars(r) + if collAlias := vars["alias"]; collAlias != "" { + // Fetch collection information, since an alias is provided + coll, err := app.db.GetCollection(collAlias) + if err != nil { + return err + } + _, err = apiCheckCollectionPermissions(app, r, coll) + if err != nil { + return err + } + collID = coll.ID + } + + p, err := app.db.GetPost(vars["post"], collID) + if err != nil { + return err + } + + p.extractData() + + return impart.WriteSuccess(w, p, http.StatusOK) +} + +func fetchPostProperty(app *app, w http.ResponseWriter, r *http.Request) error { + vars := mux.Vars(r) + p, err := app.db.GetPostProperty(vars["post"], 0, vars["property"]) + if err != nil { + return err + } + + return impart.WriteSuccess(w, p, http.StatusOK) +} + func (p *Post) processPost() PublicPost { res := &PublicPost{Post: p, Views: 0} res.Views = p.ViewCount @@ -118,6 +999,52 @@ func (p *Post) processPost() PublicPost { return *res } +func (p *PublicPost) CanonicalURL() string { + if p.Collection == nil || p.Collection.Alias == "" { + return hostName + "/" + p.ID + } + return p.Collection.CanonicalURL() + p.Slug.String +} + +func (p *PublicPost) ActivityObject() *activitystreams.Object { + o := activitystreams.NewArticleObject() + o.ID = p.Collection.FederatedAPIBase() + "api/posts/" + p.ID + o.Published = p.Created + o.URL = p.CanonicalURL() + o.AttributedTo = p.Collection.FederatedAccount() + o.CC = []string{ + p.Collection.FederatedAccount() + "/followers", + } + o.Name = p.DisplayTitle() + if p.HTMLContent == template.HTML("") { + p.formatContent(false) + } + o.Content = string(p.HTMLContent) + if p.Language.Valid { + o.ContentMap = map[string]string{ + p.Language.String: string(p.HTMLContent), + } + } + if len(p.Tags) == 0 { + o.Tag = []activitystreams.Tag{} + } else { + var tagBaseURL string + if isSingleUser { + tagBaseURL = p.Collection.CanonicalURL() + "tag:" + } else { + tagBaseURL = fmt.Sprintf("%s/%s/tag:", hostName, p.Collection.Alias) + } + for _, t := range p.Tags { + o.Tag = append(o.Tag, activitystreams.Tag{ + Type: activitystreams.TagHashtag, + HRef: tagBaseURL + t, + Name: "#" + t, + }) + } + } + return o +} + // TODO: merge this into getSlugFromPost or phase it out func getSlug(title, lang string) string { return getSlugFromPost("", title, lang) @@ -146,8 +1073,229 @@ func (p *SubmittedPost) isFontValid() bool { "code": true, } - if _, valid := validFonts[p.Font]; valid { - return true + _, valid := validFonts[p.Font] + return valid +} + +func getRawPost(app *app, friendlyID string) *RawPost { + var content, font, title string + var isRTL sql.NullBool + var lang sql.NullString + var ownerID sql.NullInt64 + var created time.Time + + err := app.db.QueryRow("SELECT title, content, text_appearance, language, rtl, created, owner_id FROM posts WHERE id = ?", friendlyID).Scan(&title, &content, &font, &lang, &isRTL, &created, &ownerID) + switch { + case err == sql.ErrNoRows: + return &RawPost{Content: "", Found: false, Gone: false} + case err != nil: + return &RawPost{Content: "", Found: true, Gone: false} + } + + return &RawPost{Title: title, Content: content, Font: font, Created: created, IsRTL: isRTL, Language: lang, OwnerID: ownerID.Int64, Found: true, Gone: content == ""} + +} + +// TODO; return a Post! +func getRawCollectionPost(app *app, slug, collAlias string) *RawPost { + var id, title, content, font string + var isRTL sql.NullBool + var lang sql.NullString + var created time.Time + var ownerID null.Int + var views int64 + + err := app.db.QueryRow("SELECT id, title, content, text_appearance, language, rtl, view_count, created, owner_id FROM posts WHERE slug = ? AND collection_id = (SELECT id FROM collections WHERE alias = ?)", slug, collAlias).Scan(&id, &title, &content, &font, &lang, &isRTL, &views, &created, &ownerID) + switch { + case err == sql.ErrNoRows: + return &RawPost{Content: "", Found: false, Gone: false} + case err != nil: + return &RawPost{Content: "", Found: true, Gone: false} + } + + return &RawPost{ + Id: id, + Slug: slug, + Title: title, + Content: content, + Font: font, + Created: created, + IsRTL: isRTL, + Language: lang, + OwnerID: ownerID.Int64, + Found: true, + Gone: content == "", + Views: views, + } +} + +func viewCollectionPost(app *app, w http.ResponseWriter, r *http.Request) error { + vars := mux.Vars(r) + slug := vars["slug"] + + isJSON := strings.HasSuffix(slug, ".json") + isXML := strings.HasSuffix(slug, ".xml") + isMarkdown := strings.HasSuffix(slug, ".md") + isRaw := strings.HasSuffix(slug, ".txt") || isJSON || isXML || isMarkdown + + if strings.Contains(r.URL.Path, ".") && !isRaw { + // Serve static file + shttp.ServeHTTP(w, r) + return nil + } + + cr := &collectionReq{} + err := processCollectionRequest(cr, vars, w, r) + if err != nil { + return err + } + + // Check for hellbanned users + u, err := checkUserForCollection(app, cr, r, true) + if err != nil { + return err + } + + // Normalize the URL, redirecting user to consistent post URL + if slug != strings.ToLower(slug) { + loc := fmt.Sprintf("/%s", strings.ToLower(slug)) + if !app.cfg.App.SingleUser { + loc = "/" + cr.alias + loc + } + return impart.HTTPError{http.StatusMovedPermanently, loc} + } + + // Display collection if this is a collection + var c *Collection + if app.cfg.App.SingleUser { + c, err = app.db.GetCollectionByID(1) + } else { + c, err = app.db.GetCollection(cr.alias) + } + if err != nil { + if err, ok := err.(impart.HTTPError); ok { + if err.Status == http.StatusNotFound { + // Redirect if necessary + newAlias := app.db.GetCollectionRedirect(cr.alias) + if newAlias != "" { + return impart.HTTPError{http.StatusFound, "/" + newAlias + "/" + slug} + } + } + } + return err + } + + // Check collection permissions + if c.IsPrivate() && (u == nil || u.ID != c.OwnerID) { + return ErrPostNotFound + } + if c.IsProtected() && ((u == nil || u.ID != c.OwnerID) && !isAuthorizedForCollection(app, c.Alias, r)) { + return impart.HTTPError{http.StatusFound, c.CanonicalURL() + "/?g=" + slug} + } + + cr.isCollOwner = u != nil && c.OwnerID == u.ID + + if isRaw { + slug = strings.Split(slug, ".")[0] + } + + // Fetch extra data about the Collection + // TODO: refactor out this logic, shared in collection.go:fetchCollection() + coll := &CollectionObj{Collection: *c} + owner, err := app.db.GetUserByID(coll.OwnerID) + if err != nil { + // Log the error and just continue + log.Error("Error getting user for collection: %v", err) + } else { + coll.Owner = owner + } + + p, err := app.db.GetPost(slug, coll.ID) + if err != nil { + if err == ErrCollectionPageNotFound && slug == "feed" { + // User tried to access blog feed without a trailing slash, and + // there's no post with a slug "feed" + return impart.HTTPError{http.StatusFound, c.CanonicalURL() + "/feed/"} + } + return err + } + p.IsOwner = owner != nil && p.OwnerID.Valid && owner.ID == p.OwnerID.Int64 + p.Collection = coll + p.IsTopLevel = app.cfg.App.SingleUser + + // Check if post has been unpublished + if p.Content == "" { + return impart.HTTPError{http.StatusGone, "Post was unpublished."} + } + + // Serve collection post + if isRaw { + contentType := "text/plain" + if isJSON { + contentType = "application/json" + } else if isXML { + contentType = "application/xml" + } else if isMarkdown { + contentType = "text/markdown" + } + w.Header().Set("Content-Type", fmt.Sprintf("%s; charset=utf-8", contentType)) + if isMarkdown && p.Title.String != "" { + fmt.Fprintf(w, "# %s\n\n", p.Title.String) + } + fmt.Fprint(w, p.Content) + } else if strings.Contains(r.Header.Get("Accept"), "application/activity+json") { + p.extractData() + ap := p.ActivityObject() + ap.Context = []interface{}{activitystreams.Namespace} + return impart.RenderActivityJSON(w, ap, http.StatusOK) + } else { + p.extractData() + p.Content = strings.Replace(p.Content, "", "", 1) + // TODO: move this to function + p.formatContent(cr.isCollOwner) + tp := struct { + *PublicPost + IsOwner bool + IsPinned bool + IsCustomDomain bool + PinnedPosts *[]PublicPost + }{ + PublicPost: p, + IsOwner: cr.isCollOwner, + IsCustomDomain: cr.isCustomDomain, + } + tp.PinnedPosts, _ = app.db.GetPinnedPosts(coll) + tp.IsPinned = len(*tp.PinnedPosts) > 0 && PostsContains(tp.PinnedPosts, p) + if err := templates["collection-post"].ExecuteTemplate(w, "post", tp); err != nil { + log.Error("Error in collection-post template: %v", err) + } + } + + go func() { + if p.OwnerID.Valid { + // Post is owned by someone. Don't update stats if owner is viewing the post. + if u != nil && p.OwnerID.Int64 == u.ID { + return + } + } + // Update stats for non-raw post views + if !isRaw && r.Method != "HEAD" && !bots.IsBot(r.UserAgent()) { + _, err := app.db.Exec("UPDATE posts SET view_count = view_count + 1 WHERE slug = ? AND collection_id = ?", slug, coll.ID) + if err != nil { + log.Error("Unable to update posts count: %v", err) + } + } + }() + + return nil +} + +// TODO: move this to utils after making it more generic +func PostsContains(sl *[]PublicPost, s *PublicPost) bool { + for _, e := range *sl { + if e.ID == s.ID { + return true + } } return false } @@ -157,6 +1305,14 @@ func (p *Post) extractData() { p.extractImages() } +func (rp *RawPost) UserFacingCreated() string { + return rp.Created.Format(postMetaDateFormat) +} + +func (rp *RawPost) Created8601() string { + return rp.Created.Format("2006-01-02T15:04:05Z") +} + var imageURLRegex = regexp.MustCompile(`(?i)^https?:\/\/[^ ]*\.(gif|png|jpg|jpeg)$`) func (p *Post) extractImages() { diff --git a/routes.go b/routes.go index fcc9d1c..ff84ca2 100644 --- a/routes.go +++ b/routes.go @@ -10,10 +10,8 @@ import ( ) func initRoutes(handler *Handler, r *mux.Router, cfg *config.Config, db *datastore) { - isSingleUser := !cfg.App.MultiUser - hostSubroute := cfg.App.Host[strings.Index(cfg.App.Host, "://")+3:] - if isSingleUser { + if cfg.App.SingleUser { hostSubroute = "{domain}" } else { if strings.HasPrefix(hostSubroute, "localhost") { @@ -21,14 +19,13 @@ func initRoutes(handler *Handler, r *mux.Router, cfg *config.Config, db *datasto } } - if isSingleUser { + if cfg.App.SingleUser { log.Info("Adding %s routes (single user)...", hostSubroute) - - return + } else { + log.Info("Adding %s routes (multi-user)...", hostSubroute) } // Primary app routes - log.Info("Adding %s routes (multi-user)...", hostSubroute) write := r.Host(hostSubroute).Subrouter() // Federation endpoints @@ -37,4 +34,24 @@ func initRoutes(handler *Handler, r *mux.Router, cfg *config.Config, db *datasto ni := nodeinfo.NewService(*niCfg, nodeInfoResolver{cfg, db}) write.HandleFunc(nodeinfo.NodeInfoPath, handler.LogHandlerFunc(http.HandlerFunc(ni.NodeInfoDiscover))) write.HandleFunc(niCfg.InfoURL, handler.LogHandlerFunc(http.HandlerFunc(ni.NodeInfo))) + + // Handle posts + write.HandleFunc("/api/posts", handler.All(newPost)).Methods("POST") + posts := write.PathPrefix("/api/posts/").Subrouter() + posts.HandleFunc("/{post:[a-zA-Z0-9]{10}}", handler.All(fetchPost)).Methods("GET") + posts.HandleFunc("/{post:[a-zA-Z0-9]{10}}", handler.All(existingPost)).Methods("POST", "PUT") + posts.HandleFunc("/{post:[a-zA-Z0-9]{10}}", handler.All(deletePost)).Methods("DELETE") + posts.HandleFunc("/{post:[a-zA-Z0-9]{10}}/{property}", handler.All(fetchPostProperty)).Methods("GET") + posts.HandleFunc("/claim", handler.All(addPost)).Methods("POST") + posts.HandleFunc("/disperse", handler.All(dispersePost)).Methods("POST") + + // All the existing stuff + write.HandleFunc("/{action}/edit", handler.Web(handleViewPad, UserLevelOptional)).Methods("GET") + write.HandleFunc("/{action}/meta", handler.Web(handleViewMeta, UserLevelOptional)).Methods("GET") + // Collections + if cfg.App.SingleUser { + } else { + // Posts + write.HandleFunc("/{post}", handler.Web(handleViewPost, UserLevelOptional)) + } }