Don't consider post unpublished when title exists

Previously, you could create a post with a title but no body, e.g. by
publishing via email. This would still show the post on a blog, but
would give a 410 Gone page when trying to access the page.

This issue originally reported on the forum:
https://discuss.write.as/t/removing-post-unpublished-by-author-post/725
This commit is contained in:
Matt Baer 2019-07-14 12:59:33 -04:00
parent 71fb63580a
commit 909976dd90
2 changed files with 4 additions and 4 deletions

View File

@ -926,7 +926,7 @@ func (db *datastore) GetEditablePost(id, editToken string) (*PublicPost, error)
return nil, err
}
if p.Content == "" {
if p.Content == "" && p.Title.String == "" {
return nil, ErrPostUnpublished
}
@ -976,7 +976,7 @@ func (db *datastore) GetPost(id string, collectionID int64) (*PublicPost, error)
return nil, err
}
if p.Content == "" {
if p.Content == "" && p.Title.String == "" {
return nil, ErrPostUnpublished
}
@ -1005,7 +1005,7 @@ func (db *datastore) GetOwnedPost(id string, ownerID int64) (*PublicPost, error)
return nil, err
}
if p.Content == "" {
if p.Content == "" && p.Title.String == "" {
return nil, ErrPostUnpublished
}

View File

@ -1299,7 +1299,7 @@ func viewCollectionPost(app *App, w http.ResponseWriter, r *http.Request) error
p.IsTopLevel = app.cfg.App.SingleUser
// Check if post has been unpublished
if p.Content == "" {
if p.Content == "" && p.Title.String == "" {
return impart.HTTPError{http.StatusGone, "Post was unpublished."}
}