GoBlog/micropub.go

693 lines
22 KiB
Go
Raw Normal View History

2020-10-06 17:07:48 +00:00
package main
import (
2021-01-21 16:59:47 +00:00
"encoding/json"
2020-10-06 17:07:48 +00:00
"errors"
2021-06-23 17:20:50 +00:00
"io"
"mime"
2020-10-06 17:07:48 +00:00
"net/http"
"net/url"
"regexp"
2020-10-06 17:07:48 +00:00
"strings"
"time"
2020-10-06 17:07:48 +00:00
"github.com/spf13/cast"
"github.com/thoas/go-funk"
2022-02-26 19:38:52 +00:00
"go.goblog.app/app/pkgs/bufferpool"
"go.goblog.app/app/pkgs/contenttype"
2020-10-06 17:07:48 +00:00
"gopkg.in/yaml.v3"
)
const micropubPath = "/micropub"
2020-10-06 17:07:48 +00:00
func (a *goBlog) serveMicropubQuery(w http.ResponseWriter, r *http.Request) {
2022-02-26 19:38:52 +00:00
var result interface{}
switch query := r.URL.Query(); query.Get("q") {
case "config":
2022-02-26 19:38:52 +00:00
type micropubConfig struct {
MediaEndpoint string `json:"media-endpoint"`
}
result = micropubConfig{MediaEndpoint: a.getFullAddress(micropubPath + micropubMediaSubPath)}
case "source":
2022-02-26 19:38:52 +00:00
if urlString := query.Get("url"); urlString != "" {
u, err := url.Parse(query.Get("url"))
if err != nil {
a.serveError(w, r, err.Error(), http.StatusBadRequest)
return
}
2021-08-05 06:09:34 +00:00
p, err := a.getPost(u.Path)
if err != nil {
a.serveError(w, r, err.Error(), http.StatusBadRequest)
return
}
2022-02-26 19:38:52 +00:00
result = a.postToMfItem(p)
} else {
2021-08-05 06:09:34 +00:00
posts, err := a.getPosts(&postsRequestConfig{
2022-02-26 19:38:52 +00:00
limit: stringToInt(query.Get("limit")),
offset: stringToInt(query.Get("offset")),
2020-11-12 10:48:37 +00:00
})
if err != nil {
a.serveError(w, r, err.Error(), http.StatusInternalServerError)
return
}
list := map[string][]*microformatItem{}
2020-10-15 15:32:46 +00:00
for _, p := range posts {
2021-06-23 17:20:50 +00:00
list["items"] = append(list["items"], a.postToMfItem(p))
}
2022-02-26 19:38:52 +00:00
result = list
}
2020-11-12 11:44:54 +00:00
case "category":
allCategories := []string{}
for blog := range a.cfg.Blogs {
values, err := a.db.allTaxonomyValues(blog, a.cfg.Micropub.CategoryParam)
2020-11-12 11:44:54 +00:00
if err != nil {
a.serveError(w, r, err.Error(), http.StatusInternalServerError)
2020-11-12 11:44:54 +00:00
return
}
allCategories = append(allCategories, values...)
}
2022-02-26 19:38:52 +00:00
result = map[string]interface{}{"categories": allCategories}
default:
a.serve404(w, r)
2022-02-26 19:38:52 +00:00
return
}
buf := bufferpool.Get()
defer bufferpool.Put(buf)
mw := a.min.Writer(contenttype.JSON, buf)
err := json.NewEncoder(mw).Encode(result)
_ = mw.Close()
if err != nil {
a.serveError(w, r, "Failed to encode json", http.StatusInternalServerError)
return
}
2022-02-26 19:38:52 +00:00
w.Header().Set(contentType, contenttype.JSONUTF8)
_, _ = buf.WriteTo(w)
}
func (a *goBlog) serveMicropubPost(w http.ResponseWriter, r *http.Request) {
2020-10-06 17:07:48 +00:00
defer r.Body.Close()
2021-06-23 17:20:50 +00:00
switch mt, _, _ := mime.ParseMediaType(r.Header.Get(contentType)); mt {
case contenttype.WWWForm, contenttype.MultipartForm:
_ = r.ParseMultipartForm(0)
if r.Form == nil {
a.serveError(w, r, "Failed to parse form", http.StatusBadRequest)
2020-11-22 19:30:02 +00:00
return
2020-10-06 17:07:48 +00:00
}
if action := micropubAction(r.Form.Get("action")); action != "" {
2021-06-23 17:20:50 +00:00
switch action {
case actionDelete:
a.micropubDelete(w, r, r.Form.Get("url"))
case actionUndelete:
a.micropubUndelete(w, r, r.Form.Get("url"))
2021-06-23 17:20:50 +00:00
default:
a.serveError(w, r, "Action not supported", http.StatusNotImplemented)
}
2020-10-06 17:07:48 +00:00
return
}
2021-06-23 17:20:50 +00:00
a.micropubCreatePostFromForm(w, r)
case contenttype.JSON:
2020-10-06 17:07:48 +00:00
parsedMfItem := &microformatItem{}
2022-02-11 23:48:59 +00:00
err := json.NewDecoder(io.LimitReader(r.Body, 10000000)).Decode(parsedMfItem)
if err != nil {
2021-06-23 17:20:50 +00:00
a.serveError(w, r, err.Error(), http.StatusBadRequest)
2020-10-06 17:07:48 +00:00
return
}
if parsedMfItem.Action != "" {
2021-06-23 17:20:50 +00:00
switch parsedMfItem.Action {
case actionDelete:
a.micropubDelete(w, r, parsedMfItem.URL)
case actionUndelete:
a.micropubUndelete(w, r, parsedMfItem.URL)
2021-06-23 17:20:50 +00:00
case actionUpdate:
a.micropubUpdate(w, r, parsedMfItem.URL, parsedMfItem)
default:
a.serveError(w, r, "Action not supported", http.StatusNotImplemented)
}
2020-10-06 17:07:48 +00:00
return
}
2021-06-23 17:20:50 +00:00
a.micropubCreatePostFromJson(w, r, parsedMfItem)
default:
a.serveError(w, r, "wrong content type", http.StatusBadRequest)
2020-10-06 17:07:48 +00:00
}
}
2021-06-23 17:20:50 +00:00
func (a *goBlog) micropubParseValuePostParamsValueMap(entry *post, values map[string][]string) error {
2020-10-06 17:07:48 +00:00
if h, ok := values["h"]; ok && (len(h) != 1 || h[0] != "entry") {
2021-06-23 17:20:50 +00:00
return errors.New("only entry type is supported so far")
2020-10-06 17:07:48 +00:00
}
delete(values, "h")
2021-06-23 17:20:50 +00:00
entry.Parameters = map[string][]string{}
if content, ok := values["content"]; ok && len(content) > 0 {
2020-10-06 17:07:48 +00:00
entry.Content = content[0]
delete(values, "content")
2020-10-06 17:07:48 +00:00
}
2021-06-23 17:20:50 +00:00
if published, ok := values["published"]; ok && len(published) > 0 {
entry.Published = published[0]
delete(values, "published")
}
2021-06-23 17:20:50 +00:00
if updated, ok := values["updated"]; ok && len(updated) > 0 {
entry.Updated = updated[0]
delete(values, "updated")
}
2021-06-23 17:20:50 +00:00
if slug, ok := values["mp-slug"]; ok && len(slug) > 0 {
entry.Slug = slug[0]
delete(values, "mp-slug")
2021-01-15 20:56:46 +00:00
}
2021-07-14 16:50:24 +00:00
// Status
statusStr := ""
if status, ok := values["post-status"]; ok && len(status) > 0 {
statusStr = status[0]
delete(values, "post-status")
}
visibilityStr := ""
if visibility, ok := values["visibility"]; ok && len(visibility) > 0 {
visibilityStr = visibility[0]
delete(values, "visibility")
}
if finalStatus := micropubStatus(statusNil, statusStr, visibilityStr); finalStatus != statusNil {
entry.Status = finalStatus
}
2020-10-06 17:07:48 +00:00
// Parameter
if name, ok := values["name"]; ok {
entry.Parameters["title"] = name
delete(values, "name")
2020-10-06 17:07:48 +00:00
}
if category, ok := values["category"]; ok {
entry.Parameters[a.cfg.Micropub.CategoryParam] = category
delete(values, "category")
2020-10-06 17:07:48 +00:00
} else if categories, ok := values["category[]"]; ok {
entry.Parameters[a.cfg.Micropub.CategoryParam] = categories
delete(values, "category[]")
2020-10-06 17:07:48 +00:00
}
if inReplyTo, ok := values["in-reply-to"]; ok {
entry.Parameters[a.cfg.Micropub.ReplyParam] = inReplyTo
delete(values, "in-reply-to")
2020-10-06 17:07:48 +00:00
}
if likeOf, ok := values["like-of"]; ok {
entry.Parameters[a.cfg.Micropub.LikeParam] = likeOf
delete(values, "like-of")
2020-10-06 17:07:48 +00:00
}
if bookmarkOf, ok := values["bookmark-of"]; ok {
entry.Parameters[a.cfg.Micropub.BookmarkParam] = bookmarkOf
delete(values, "bookmark-of")
2020-10-06 17:07:48 +00:00
}
if audio, ok := values["audio"]; ok {
entry.Parameters[a.cfg.Micropub.AudioParam] = audio
delete(values, "audio")
2020-10-06 17:07:48 +00:00
} else if audio, ok := values["audio[]"]; ok {
entry.Parameters[a.cfg.Micropub.AudioParam] = audio
delete(values, "audio[]")
2020-10-06 17:07:48 +00:00
}
if photo, ok := values["photo"]; ok {
entry.Parameters[a.cfg.Micropub.PhotoParam] = photo
delete(values, "photo")
2020-10-06 17:07:48 +00:00
} else if photos, ok := values["photo[]"]; ok {
entry.Parameters[a.cfg.Micropub.PhotoParam] = photos
delete(values, "photo[]")
2020-10-06 17:07:48 +00:00
}
if photoAlt, ok := values["mp-photo-alt"]; ok {
entry.Parameters[a.cfg.Micropub.PhotoDescriptionParam] = photoAlt
delete(values, "mp-photo-alt")
2020-10-06 17:07:48 +00:00
} else if photoAlts, ok := values["mp-photo-alt[]"]; ok {
entry.Parameters[a.cfg.Micropub.PhotoDescriptionParam] = photoAlts
delete(values, "mp-photo-alt[]")
2020-10-06 17:07:48 +00:00
}
if location, ok := values["location"]; ok {
entry.Parameters[a.cfg.Micropub.LocationParam] = location
delete(values, "location")
}
for n, p := range values {
entry.Parameters[n] = append(entry.Parameters[n], p...)
2020-10-06 17:07:48 +00:00
}
2021-06-23 17:20:50 +00:00
return nil
2020-10-06 17:07:48 +00:00
}
type micropubAction string
const (
actionUpdate micropubAction = "update"
actionDelete micropubAction = "delete"
actionUndelete micropubAction = "undelete"
)
2020-10-06 17:07:48 +00:00
type microformatItem struct {
Type []string `json:"type,omitempty"`
URL string `json:"url,omitempty"`
Action micropubAction `json:"action,omitempty"`
Properties *microformatProperties `json:"properties,omitempty"`
Replace map[string][]interface{} `json:"replace,omitempty"`
Add map[string][]interface{} `json:"add,omitempty"`
Delete interface{} `json:"delete,omitempty"`
2020-10-06 17:07:48 +00:00
}
type microformatProperties struct {
Name []string `json:"name,omitempty"`
Published []string `json:"published,omitempty"`
Updated []string `json:"updated,omitempty"`
2021-01-15 20:56:46 +00:00
PostStatus []string `json:"post-status,omitempty"`
2021-07-14 16:50:24 +00:00
Visibility []string `json:"visibility,omitempty"`
Category []string `json:"category,omitempty"`
Content []string `json:"content,omitempty"`
URL []string `json:"url,omitempty"`
InReplyTo []string `json:"in-reply-to,omitempty"`
LikeOf []string `json:"like-of,omitempty"`
BookmarkOf []string `json:"bookmark-of,omitempty"`
MpSlug []string `json:"mp-slug,omitempty"`
Photo []interface{} `json:"photo,omitempty"`
Audio []string `json:"audio,omitempty"`
2020-10-06 17:07:48 +00:00
}
2021-06-23 17:20:50 +00:00
func (a *goBlog) micropubParsePostParamsMfItem(entry *post, mf *microformatItem) error {
2020-10-06 17:07:48 +00:00
if len(mf.Type) != 1 || mf.Type[0] != "h-entry" {
2021-06-23 17:20:50 +00:00
return errors.New("only entry type is supported so far")
2020-10-06 17:07:48 +00:00
}
2021-06-23 17:20:50 +00:00
entry.Parameters = map[string][]string{}
if mf.Properties == nil {
return nil
2020-12-08 18:36:19 +00:00
}
2020-10-06 17:07:48 +00:00
// Content
2021-06-23 17:20:50 +00:00
if len(mf.Properties.Content) > 0 && mf.Properties.Content[0] != "" {
2020-10-06 17:07:48 +00:00
entry.Content = mf.Properties.Content[0]
}
2021-06-23 17:20:50 +00:00
if len(mf.Properties.Published) > 0 {
entry.Published = mf.Properties.Published[0]
}
2021-06-23 17:20:50 +00:00
if len(mf.Properties.Updated) > 0 {
entry.Updated = mf.Properties.Updated[0]
}
2021-06-23 17:20:50 +00:00
if len(mf.Properties.MpSlug) > 0 {
entry.Slug = mf.Properties.MpSlug[0]
}
2021-07-14 16:50:24 +00:00
// Status
status := ""
if len(mf.Properties.PostStatus) > 0 {
status = mf.Properties.PostStatus[0]
}
visibility := ""
if len(mf.Properties.Visibility) > 0 {
visibility = mf.Properties.Visibility[0]
}
if finalStatus := micropubStatus(statusNil, status, visibility); finalStatus != statusNil {
entry.Status = finalStatus
}
2020-10-06 17:07:48 +00:00
// Parameter
2021-06-23 17:20:50 +00:00
if len(mf.Properties.Name) > 0 {
2020-10-06 17:07:48 +00:00
entry.Parameters["title"] = mf.Properties.Name
}
if len(mf.Properties.Category) > 0 {
entry.Parameters[a.cfg.Micropub.CategoryParam] = mf.Properties.Category
2020-10-06 17:07:48 +00:00
}
2021-06-23 17:20:50 +00:00
if len(mf.Properties.InReplyTo) > 0 {
entry.Parameters[a.cfg.Micropub.ReplyParam] = mf.Properties.InReplyTo
2020-10-06 17:07:48 +00:00
}
2021-06-23 17:20:50 +00:00
if len(mf.Properties.LikeOf) > 0 {
entry.Parameters[a.cfg.Micropub.LikeParam] = mf.Properties.LikeOf
2020-10-06 17:07:48 +00:00
}
2021-06-23 17:20:50 +00:00
if len(mf.Properties.BookmarkOf) > 0 {
entry.Parameters[a.cfg.Micropub.BookmarkParam] = mf.Properties.BookmarkOf
2020-10-06 17:07:48 +00:00
}
if len(mf.Properties.Audio) > 0 {
entry.Parameters[a.cfg.Micropub.AudioParam] = mf.Properties.Audio
2020-10-06 17:07:48 +00:00
}
if len(mf.Properties.Photo) > 0 {
for _, photo := range mf.Properties.Photo {
if theString, justString := photo.(string); justString {
entry.Parameters[a.cfg.Micropub.PhotoParam] = append(entry.Parameters[a.cfg.Micropub.PhotoParam], theString)
entry.Parameters[a.cfg.Micropub.PhotoDescriptionParam] = append(entry.Parameters[a.cfg.Micropub.PhotoDescriptionParam], "")
2020-10-06 17:07:48 +00:00
} else if thePhoto, isPhoto := photo.(map[string]interface{}); isPhoto {
entry.Parameters[a.cfg.Micropub.PhotoParam] = append(entry.Parameters[a.cfg.Micropub.PhotoParam], cast.ToString(thePhoto["value"]))
entry.Parameters[a.cfg.Micropub.PhotoDescriptionParam] = append(entry.Parameters[a.cfg.Micropub.PhotoDescriptionParam], cast.ToString(thePhoto["alt"]))
2020-10-06 17:07:48 +00:00
}
}
}
2021-06-23 17:20:50 +00:00
return nil
2020-10-06 17:07:48 +00:00
}
func (a *goBlog) computeExtraPostParameters(p *post) error {
2021-08-04 20:48:50 +00:00
if p.Parameters == nil {
p.Parameters = map[string][]string{}
}
2020-10-15 15:32:46 +00:00
p.Content = regexp.MustCompile("\r\n").ReplaceAllString(p.Content, "\n")
2022-02-25 15:29:42 +00:00
if split := strings.Split(p.Content, "---\n"); len(split) >= 3 && strings.TrimSpace(split[0]) == "" {
2020-10-06 17:07:48 +00:00
// Contains frontmatter
fm := split[1]
meta := map[string]interface{}{}
err := yaml.Unmarshal([]byte(fm), &meta)
if err != nil {
return err
}
// Find section and copy frontmatter to params
for key, value := range meta {
// Delete existing content - replace
2020-10-15 15:32:46 +00:00
p.Parameters[key] = []string{}
2020-10-06 17:07:48 +00:00
if a, ok := value.([]interface{}); ok {
for _, ae := range a {
2020-10-15 15:32:46 +00:00
p.Parameters[key] = append(p.Parameters[key], cast.ToString(ae))
2020-10-06 17:07:48 +00:00
}
} else {
2020-10-15 15:32:46 +00:00
p.Parameters[key] = append(p.Parameters[key], cast.ToString(value))
2020-10-06 17:07:48 +00:00
}
}
// Remove frontmatter from content
2020-10-15 15:32:46 +00:00
p.Content = strings.Join(split[2:], "---\n")
2020-10-06 17:07:48 +00:00
}
// Check settings
2020-10-15 15:32:46 +00:00
if blog := p.Parameters["blog"]; len(blog) == 1 && blog[0] != "" {
p.Blog = blog[0]
delete(p.Parameters, "blog")
2020-10-06 17:07:48 +00:00
} else {
p.Blog = a.cfg.DefaultBlog
2020-10-06 17:07:48 +00:00
}
2021-01-15 20:56:46 +00:00
if path := p.Parameters["path"]; len(path) == 1 {
2020-10-15 15:32:46 +00:00
p.Path = path[0]
delete(p.Parameters, "path")
2020-10-06 17:07:48 +00:00
}
2021-01-15 20:56:46 +00:00
if section := p.Parameters["section"]; len(section) == 1 {
2020-10-15 15:32:46 +00:00
p.Section = section[0]
delete(p.Parameters, "section")
2020-10-06 17:07:48 +00:00
}
2021-01-15 20:56:46 +00:00
if slug := p.Parameters["slug"]; len(slug) == 1 {
2020-10-15 15:32:46 +00:00
p.Slug = slug[0]
delete(p.Parameters, "slug")
2020-10-06 17:07:48 +00:00
}
2021-01-15 20:56:46 +00:00
if published := p.Parameters["published"]; len(published) == 1 {
p.Published = published[0]
delete(p.Parameters, "published")
}
2021-01-15 20:56:46 +00:00
if updated := p.Parameters["updated"]; len(updated) == 1 {
p.Updated = updated[0]
delete(p.Parameters, "updated")
}
2021-01-15 20:56:46 +00:00
if status := p.Parameters["status"]; len(status) == 1 {
p.Status = postStatus(status[0])
delete(p.Parameters, "status")
}
if priority := p.Parameters["priority"]; len(priority) == 1 {
p.Priority = cast.ToInt(priority[0])
delete(p.Parameters, "priority")
}
2020-10-15 15:32:46 +00:00
if p.Path == "" && p.Section == "" {
// Has no path or section -> default section
p.Section = a.cfg.Blogs[p.Blog].DefaultSection
}
2020-10-15 15:32:46 +00:00
if p.Published == "" && p.Section != "" {
// Has no published date, but section -> published now
p.Published = time.Now().Local().Format(time.RFC3339)
}
// Add images not in content
images := p.Parameters[a.cfg.Micropub.PhotoParam]
imageAlts := p.Parameters[a.cfg.Micropub.PhotoDescriptionParam]
useAlts := len(images) == len(imageAlts)
for i, image := range images {
2020-10-15 15:32:46 +00:00
if !strings.Contains(p.Content, image) {
if useAlts && len(imageAlts[i]) > 0 {
2020-10-15 15:32:46 +00:00
p.Content += "\n\n![" + imageAlts[i] + "](" + image + " \"" + imageAlts[i] + "\")"
} else {
2020-10-15 15:32:46 +00:00
p.Content += "\n\n![](" + image + ")"
}
}
2020-10-06 17:07:48 +00:00
}
// Remove all parameters where there are just empty strings
for pk, pvs := range p.Parameters {
if len(pvs) == 0 || strings.Join(pvs, "") == "" {
delete(p.Parameters, pk)
}
}
2020-10-06 17:07:48 +00:00
return nil
}
2021-06-23 17:20:50 +00:00
func (a *goBlog) micropubCreatePostFromForm(w http.ResponseWriter, r *http.Request) {
p := &post{}
err := a.micropubParseValuePostParamsValueMap(p, r.Form)
if err != nil {
a.serveError(w, r, err.Error(), http.StatusBadRequest)
return
}
a.micropubCreate(w, r, p)
}
func (a *goBlog) micropubCreatePostFromJson(w http.ResponseWriter, r *http.Request, parsedMfItem *microformatItem) {
p := &post{}
err := a.micropubParsePostParamsMfItem(p, parsedMfItem)
if err != nil {
a.serveError(w, r, err.Error(), http.StatusBadRequest)
return
}
a.micropubCreate(w, r, p)
}
2022-02-26 19:38:52 +00:00
func (a *goBlog) micropubCheckScope(w http.ResponseWriter, r *http.Request, required string) bool {
if !strings.Contains(r.Context().Value(indieAuthScope).(string), required) {
a.serveError(w, r, required+" scope missing", http.StatusForbidden)
return false
}
return true
}
2021-06-23 17:20:50 +00:00
func (a *goBlog) micropubCreate(w http.ResponseWriter, r *http.Request, p *post) {
2022-02-26 19:38:52 +00:00
if !a.micropubCheckScope(w, r, "create") {
2021-06-23 17:20:50 +00:00
return
}
if err := a.computeExtraPostParameters(p); err != nil {
a.serveError(w, r, err.Error(), http.StatusBadRequest)
return
}
if err := a.createPost(p); err != nil {
a.serveError(w, r, err.Error(), http.StatusBadRequest)
return
}
http.Redirect(w, r, a.fullPostURL(p), http.StatusAccepted)
}
func (a *goBlog) micropubDelete(w http.ResponseWriter, r *http.Request, u string) {
2022-02-26 19:38:52 +00:00
if !a.micropubCheckScope(w, r, "delete") {
2020-11-22 19:30:02 +00:00
return
}
2021-06-23 17:20:50 +00:00
uu, err := url.Parse(u)
if err != nil {
a.serveError(w, r, err.Error(), http.StatusBadRequest)
return
}
if err := a.deletePost(uu.Path); err != nil {
a.serveError(w, r, err.Error(), http.StatusBadRequest)
2020-11-22 19:30:02 +00:00
return
}
2021-06-23 17:20:50 +00:00
http.Redirect(w, r, uu.String(), http.StatusNoContent)
}
func (a *goBlog) micropubUndelete(w http.ResponseWriter, r *http.Request, u string) {
2022-02-26 19:38:52 +00:00
if !a.micropubCheckScope(w, r, "undelete") {
return
}
uu, err := url.Parse(u)
if err != nil {
a.serveError(w, r, err.Error(), http.StatusBadRequest)
return
}
if err := a.undeletePost(uu.Path); err != nil {
a.serveError(w, r, err.Error(), http.StatusBadRequest)
return
}
http.Redirect(w, r, uu.String(), http.StatusNoContent)
}
2021-06-23 17:20:50 +00:00
func (a *goBlog) micropubUpdate(w http.ResponseWriter, r *http.Request, u string, mf *microformatItem) {
2022-02-26 19:38:52 +00:00
if !a.micropubCheckScope(w, r, "update") {
2020-11-22 19:30:02 +00:00
return
}
2021-06-23 17:20:50 +00:00
uu, err := url.Parse(u)
if err != nil {
a.serveError(w, r, err.Error(), http.StatusBadRequest)
return
}
2021-10-24 16:27:00 +00:00
ppath := uu.Path
if ppath == "" {
// Probably homepage "/"
ppath = "/"
}
p, err := a.getPost(ppath)
if err != nil {
a.serveError(w, r, err.Error(), http.StatusBadRequest)
return
}
// Check if post is marked as deleted
if strings.HasSuffix(string(p.Status), statusDeletedSuffix) {
a.serveError(w, r, "post is marked as deleted, undelete it first", http.StatusBadRequest)
return
}
// Update post
2021-01-15 20:56:46 +00:00
oldPath := p.Path
oldStatus := p.Status
2021-07-14 16:50:24 +00:00
a.micropubUpdateReplace(p, mf.Replace)
a.micropubUpdateAdd(p, mf.Add)
a.micropubUpdateDelete(p, mf.Delete)
err = a.computeExtraPostParameters(p)
if err != nil {
a.serveError(w, r, err.Error(), http.StatusInternalServerError)
return
}
2021-07-14 16:50:24 +00:00
err = a.replacePost(p, oldPath, oldStatus)
if err != nil {
a.serveError(w, r, err.Error(), http.StatusInternalServerError)
return
}
http.Redirect(w, r, a.fullPostURL(p), http.StatusNoContent)
}
func (a *goBlog) micropubUpdateReplace(p *post, replace map[string][]interface{}) {
if content, ok := replace["content"]; ok && len(content) > 0 {
p.Content = cast.ToStringSlice(content)[0]
}
if published, ok := replace["published"]; ok && len(published) > 0 {
p.Published = cast.ToStringSlice(published)[0]
}
if updated, ok := replace["updated"]; ok && len(updated) > 0 {
p.Updated = cast.ToStringSlice(updated)[0]
}
// Status
statusStr := ""
if status, ok := replace["post-status"]; ok && len(status) > 0 {
statusStr = cast.ToStringSlice(status)[0]
}
visibilityStr := ""
if visibility, ok := replace["visibility"]; ok && len(visibility) > 0 {
visibilityStr = cast.ToStringSlice(visibility)[0]
}
if finalStatus := micropubStatus(p.Status, statusStr, visibilityStr); finalStatus != statusNil {
p.Status = finalStatus
}
// Parameters
if name, ok := replace["name"]; ok && name != nil {
p.Parameters["title"] = cast.ToStringSlice(name)
}
if category, ok := replace["category"]; ok && category != nil {
p.Parameters[a.cfg.Micropub.CategoryParam] = cast.ToStringSlice(category)
}
if reply, ok := replace["in-reply-to"]; ok && reply != nil {
p.Parameters[a.cfg.Micropub.ReplyParam] = cast.ToStringSlice(reply)
}
if like, ok := replace["like-of"]; ok && like != nil {
p.Parameters[a.cfg.Micropub.LikeParam] = cast.ToStringSlice(like)
}
if bookmark, ok := replace["bookmark-of"]; ok && bookmark != nil {
p.Parameters[a.cfg.Micropub.BookmarkParam] = cast.ToStringSlice(bookmark)
}
if audio, ok := replace["audio"]; ok && audio != nil {
p.Parameters[a.cfg.Micropub.AudioParam] = cast.ToStringSlice(audio)
}
// TODO: photos
}
func (a *goBlog) micropubUpdateAdd(p *post, add map[string][]interface{}) {
for key, value := range add {
switch key {
case "content":
p.Content += strings.TrimSpace(strings.Join(cast.ToStringSlice(value), " "))
case "published":
p.Published = strings.TrimSpace(strings.Join(cast.ToStringSlice(value), " "))
case "updated":
p.Updated = strings.TrimSpace(strings.Join(cast.ToStringSlice(value), " "))
case "category":
p.Parameters[a.cfg.Micropub.CategoryParam] = append(p.Parameters[a.cfg.Micropub.CategoryParam], cast.ToStringSlice(value)...)
2021-07-14 16:50:24 +00:00
case "in-reply-to":
p.Parameters[a.cfg.Micropub.ReplyParam] = cast.ToStringSlice(value)
case "like-of":
p.Parameters[a.cfg.Micropub.LikeParam] = cast.ToStringSlice(value)
case "bookmark-of":
p.Parameters[a.cfg.Micropub.BookmarkParam] = cast.ToStringSlice(value)
case "audio":
p.Parameters[a.cfg.Micropub.AudioParam] = append(p.Parameters[a.cfg.Micropub.AudioParam], cast.ToStringSlice(value)...)
2021-07-14 16:50:24 +00:00
// TODO: photo
}
}
2021-07-14 16:50:24 +00:00
}
func (a *goBlog) micropubUpdateDelete(p *post, del interface{}) {
if del == nil {
return
}
deleteProperties, ok := del.([]interface{})
if ok {
// Completely remove properties
for _, prop := range deleteProperties {
switch prop {
case "content":
p.Content = ""
case "published":
p.Published = ""
case "updated":
p.Updated = ""
case "category":
delete(p.Parameters, a.cfg.Micropub.CategoryParam)
case "in-reply-to":
delete(p.Parameters, a.cfg.Micropub.ReplyParam)
delete(p.Parameters, a.cfg.Micropub.ReplyTitleParam)
case "like-of":
delete(p.Parameters, a.cfg.Micropub.LikeParam)
delete(p.Parameters, a.cfg.Micropub.LikeTitleParam)
case "bookmark-of":
delete(p.Parameters, a.cfg.Micropub.BookmarkParam)
case "audio":
delete(p.Parameters, a.cfg.Micropub.AudioParam)
case "photo":
delete(p.Parameters, a.cfg.Micropub.PhotoParam)
delete(p.Parameters, a.cfg.Micropub.PhotoDescriptionParam)
}
}
// Return
return
}
toDelete, ok := del.(map[string]interface{})
if ok {
// Only delete parts of properties
for key, values := range toDelete {
switch key {
// Properties to completely delete
case "content":
p.Content = ""
case "published":
p.Published = ""
case "updated":
p.Updated = ""
case "in-reply-to":
delete(p.Parameters, a.cfg.Micropub.ReplyParam)
delete(p.Parameters, a.cfg.Micropub.ReplyTitleParam)
case "like-of":
delete(p.Parameters, a.cfg.Micropub.LikeParam)
delete(p.Parameters, a.cfg.Micropub.LikeTitleParam)
case "bookmark-of":
delete(p.Parameters, a.cfg.Micropub.BookmarkParam)
// Properties to delete part of
// TODO: Support partial deletes of more properties
case "category":
delValues := cast.ToStringSlice(values)
p.Parameters[a.cfg.Micropub.CategoryParam] = funk.FilterString(p.Parameters[a.cfg.Micropub.CategoryParam], func(s string) bool {
return !funk.ContainsString(delValues, s)
})
}
}
}
2021-07-14 16:50:24 +00:00
}
func micropubStatus(defaultStatus postStatus, status string, visibility string) (final postStatus) {
final = defaultStatus
switch status {
case "published":
final = statusPublished
case "draft":
final = statusDraft
}
if final != statusDraft {
// Only override status if it's not a draft
switch visibility {
case "public":
final = statusPublished
case "unlisted":
final = statusUnlisted
case "private":
final = statusPrivate
}
}
2021-07-14 16:50:24 +00:00
return final
}