mirror of
https://gitea.phreedom.club/localhost_frssoft/bloat.git
synced 2024-11-05 04:29:21 +02:00
Add post format selection
This commit is contained in:
parent
ac4ff88adb
commit
591360f2a8
|
@ -6,6 +6,7 @@ import (
|
||||||
"io"
|
"io"
|
||||||
"os"
|
"os"
|
||||||
"strings"
|
"strings"
|
||||||
|
"web/model"
|
||||||
)
|
)
|
||||||
|
|
||||||
type config struct {
|
type config struct {
|
||||||
|
@ -17,6 +18,7 @@ type config struct {
|
||||||
TemplatesGlobPattern string
|
TemplatesGlobPattern string
|
||||||
DatabasePath string
|
DatabasePath string
|
||||||
CustomCSS string
|
CustomCSS string
|
||||||
|
PostFormats []model.PostFormat
|
||||||
Logfile string
|
Logfile string
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -43,6 +45,12 @@ func getDefaultConfig() *config {
|
||||||
TemplatesGlobPattern: "templates/*",
|
TemplatesGlobPattern: "templates/*",
|
||||||
DatabasePath: "database.db",
|
DatabasePath: "database.db",
|
||||||
CustomCSS: "",
|
CustomCSS: "",
|
||||||
|
PostFormats: []model.PostFormat{
|
||||||
|
model.PostFormat{"Plain Text", "text/plain"},
|
||||||
|
model.PostFormat{"HTML", "text/html"},
|
||||||
|
model.PostFormat{"Markdown", "text/markdown"},
|
||||||
|
model.PostFormat{"BBCode", "text/bbcode"},
|
||||||
|
},
|
||||||
Logfile: "",
|
Logfile: "",
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -87,6 +95,25 @@ func Parse(r io.Reader) (c *config, err error) {
|
||||||
c.DatabasePath = val
|
c.DatabasePath = val
|
||||||
case "custom_css":
|
case "custom_css":
|
||||||
c.CustomCSS = val
|
c.CustomCSS = val
|
||||||
|
case "post_formats":
|
||||||
|
vals := strings.Split(val, ",")
|
||||||
|
var formats []model.PostFormat
|
||||||
|
for _, v := range vals {
|
||||||
|
pair := strings.Split(v, ":")
|
||||||
|
if len(pair) != 2 {
|
||||||
|
return nil, errors.New("invalid config key " + key)
|
||||||
|
}
|
||||||
|
n := strings.TrimSpace(pair[0])
|
||||||
|
t := strings.TrimSpace(pair[1])
|
||||||
|
if len(n) < 1 || len(t) < 1 {
|
||||||
|
return nil, errors.New("invalid config key " + key)
|
||||||
|
}
|
||||||
|
formats = append(formats, model.PostFormat{
|
||||||
|
Name: n,
|
||||||
|
Type: t,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
c.PostFormats = formats
|
||||||
case "logfile":
|
case "logfile":
|
||||||
c.Logfile = val
|
c.Logfile = val
|
||||||
default:
|
default:
|
||||||
|
|
|
@ -5,4 +5,5 @@ client_website=http://localhost:8080
|
||||||
static_directory=static
|
static_directory=static
|
||||||
templates_glob_pattern=templates/*
|
templates_glob_pattern=templates/*
|
||||||
#custom_css=custom.css
|
#custom_css=custom.css
|
||||||
|
#post_formats=PlainText:text/plain,HTML:text/html,Markdown:text/markdown,BBCode:text/bbcode
|
||||||
database_path=database
|
database_path=database
|
||||||
|
|
3
main.go
3
main.go
|
@ -71,7 +71,8 @@ func main() {
|
||||||
logger = log.New(lf, "", log.LstdFlags)
|
logger = log.New(lf, "", log.LstdFlags)
|
||||||
}
|
}
|
||||||
|
|
||||||
s := service.NewService(config.ClientName, config.ClientScope, config.ClientWebsite, customCSS, renderer, sessionRepo, appRepo)
|
s := service.NewService(config.ClientName, config.ClientScope, config.ClientWebsite,
|
||||||
|
customCSS, config.PostFormats, renderer, sessionRepo, appRepo)
|
||||||
s = service.NewAuthService(sessionRepo, appRepo, s)
|
s = service.NewAuthService(sessionRepo, appRepo, s)
|
||||||
s = service.NewLoggingService(logger, s)
|
s = service.NewLoggingService(logger, s)
|
||||||
handler := service.NewHandler(s, config.StaticDirectory)
|
handler := service.NewHandler(s, config.StaticDirectory)
|
||||||
|
|
|
@ -273,6 +273,7 @@ type Toot struct {
|
||||||
Sensitive bool `json:"sensitive"`
|
Sensitive bool `json:"sensitive"`
|
||||||
SpoilerText string `json:"spoiler_text"`
|
SpoilerText string `json:"spoiler_text"`
|
||||||
Visibility string `json:"visibility"`
|
Visibility string `json:"visibility"`
|
||||||
|
ContentType string `json:"content_type"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// Mention hold information for mention.
|
// Mention hold information for mention.
|
||||||
|
|
|
@ -266,6 +266,9 @@ func (c *Client) PostStatus(ctx context.Context, toot *Toot) (*Status, error) {
|
||||||
if toot.SpoilerText != "" {
|
if toot.SpoilerText != "" {
|
||||||
params.Set("spoiler_text", toot.SpoilerText)
|
params.Set("spoiler_text", toot.SpoilerText)
|
||||||
}
|
}
|
||||||
|
if toot.ContentType != "" {
|
||||||
|
params.Set("content_type", toot.ContentType)
|
||||||
|
}
|
||||||
|
|
||||||
var status Status
|
var status Status
|
||||||
err := c.doAPI(ctx, http.MethodPost, "/api/v1/statuses", params, &status, nil)
|
err := c.doAPI(ctx, http.MethodPost, "/api/v1/statuses", params, &status, nil)
|
||||||
|
|
|
@ -1,8 +1,14 @@
|
||||||
package model
|
package model
|
||||||
|
|
||||||
|
type PostFormat struct {
|
||||||
|
Name string
|
||||||
|
Type string
|
||||||
|
}
|
||||||
|
|
||||||
type PostContext struct {
|
type PostContext struct {
|
||||||
DefaultVisibility string
|
DefaultVisibility string
|
||||||
ReplyContext *ReplyContext
|
ReplyContext *ReplyContext
|
||||||
|
Formats []PostFormat
|
||||||
}
|
}
|
||||||
|
|
||||||
type ReplyContext struct {
|
type ReplyContext struct {
|
||||||
|
|
|
@ -181,12 +181,12 @@ func (s *authService) UnRetweet(ctx context.Context, client io.Writer, c *model.
|
||||||
return s.Service.UnRetweet(ctx, client, c, id)
|
return s.Service.UnRetweet(ctx, client, c, id)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *authService) PostTweet(ctx context.Context, client io.Writer, c *model.Client, content string, replyToID string, visibility string, isNSFW bool, files []*multipart.FileHeader) (id string, err error) {
|
func (s *authService) PostTweet(ctx context.Context, client io.Writer, c *model.Client, content string, replyToID string, format string, visibility string, isNSFW bool, files []*multipart.FileHeader) (id string, err error) {
|
||||||
c, err = s.getClient(ctx)
|
c, err = s.getClient(ctx)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
return s.Service.PostTweet(ctx, client, c, content, replyToID, visibility, isNSFW, files)
|
return s.Service.PostTweet(ctx, client, c, content, replyToID, format, visibility, isNSFW, files)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *authService) Follow(ctx context.Context, client io.Writer, c *model.Client, id string) (err error) {
|
func (s *authService) Follow(ctx context.Context, client io.Writer, c *model.Client, id string) (err error) {
|
||||||
|
|
|
@ -157,12 +157,12 @@ func (s *loggingService) UnRetweet(ctx context.Context, client io.Writer, c *mod
|
||||||
return s.Service.UnRetweet(ctx, client, c, id)
|
return s.Service.UnRetweet(ctx, client, c, id)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *loggingService) PostTweet(ctx context.Context, client io.Writer, c *model.Client, content string, replyToID string, visibility string, isNSFW bool, files []*multipart.FileHeader) (id string, err error) {
|
func (s *loggingService) PostTweet(ctx context.Context, client io.Writer, c *model.Client, content string, replyToID string, format string, visibility string, isNSFW bool, files []*multipart.FileHeader) (id string, err error) {
|
||||||
defer func(begin time.Time) {
|
defer func(begin time.Time) {
|
||||||
s.logger.Printf("method=%v, content=%v, reply_to_id=%v, visibility=%v, is_nsfw=%v, took=%v, err=%v\n",
|
s.logger.Printf("method=%v, content=%v, reply_to_id=%v, format=%v, visibility=%v, is_nsfw=%v, took=%v, err=%v\n",
|
||||||
"PostTweet", content, replyToID, visibility, isNSFW, time.Since(begin), err)
|
"PostTweet", content, replyToID, format, visibility, isNSFW, time.Since(begin), err)
|
||||||
}(time.Now())
|
}(time.Now())
|
||||||
return s.Service.PostTweet(ctx, client, c, content, replyToID, visibility, isNSFW, files)
|
return s.Service.PostTweet(ctx, client, c, content, replyToID, format, visibility, isNSFW, files)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *loggingService) Follow(ctx context.Context, client io.Writer, c *model.Client, id string) (err error) {
|
func (s *loggingService) Follow(ctx context.Context, client io.Writer, c *model.Client, id string) (err error) {
|
||||||
|
|
|
@ -43,7 +43,7 @@ type Service interface {
|
||||||
UnLike(ctx context.Context, client io.Writer, c *model.Client, id string) (err error)
|
UnLike(ctx context.Context, client io.Writer, c *model.Client, id string) (err error)
|
||||||
Retweet(ctx context.Context, client io.Writer, c *model.Client, id string) (err error)
|
Retweet(ctx context.Context, client io.Writer, c *model.Client, id string) (err error)
|
||||||
UnRetweet(ctx context.Context, client io.Writer, c *model.Client, id string) (err error)
|
UnRetweet(ctx context.Context, client io.Writer, c *model.Client, id string) (err error)
|
||||||
PostTweet(ctx context.Context, client io.Writer, c *model.Client, content string, replyToID string, visibility string, isNSFW bool, files []*multipart.FileHeader) (id string, err error)
|
PostTweet(ctx context.Context, client io.Writer, c *model.Client, content string, replyToID string, format string, visibility string, isNSFW bool, files []*multipart.FileHeader) (id string, err error)
|
||||||
Follow(ctx context.Context, client io.Writer, c *model.Client, id string) (err error)
|
Follow(ctx context.Context, client io.Writer, c *model.Client, id string) (err error)
|
||||||
UnFollow(ctx context.Context, client io.Writer, c *model.Client, id string) (err error)
|
UnFollow(ctx context.Context, client io.Writer, c *model.Client, id string) (err error)
|
||||||
}
|
}
|
||||||
|
@ -53,19 +53,21 @@ type service struct {
|
||||||
clientScope string
|
clientScope string
|
||||||
clientWebsite string
|
clientWebsite string
|
||||||
customCSS string
|
customCSS string
|
||||||
|
postFormats []model.PostFormat
|
||||||
renderer renderer.Renderer
|
renderer renderer.Renderer
|
||||||
sessionRepo model.SessionRepository
|
sessionRepo model.SessionRepository
|
||||||
appRepo model.AppRepository
|
appRepo model.AppRepository
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewService(clientName string, clientScope string, clientWebsite string,
|
func NewService(clientName string, clientScope string, clientWebsite string,
|
||||||
customCSS string, renderer renderer.Renderer, sessionRepo model.SessionRepository,
|
customCSS string, postFormats []model.PostFormat, renderer renderer.Renderer,
|
||||||
appRepo model.AppRepository) Service {
|
sessionRepo model.SessionRepository, appRepo model.AppRepository) Service {
|
||||||
return &service{
|
return &service{
|
||||||
clientName: clientName,
|
clientName: clientName,
|
||||||
clientScope: clientScope,
|
clientScope: clientScope,
|
||||||
clientWebsite: clientWebsite,
|
clientWebsite: clientWebsite,
|
||||||
customCSS: customCSS,
|
customCSS: customCSS,
|
||||||
|
postFormats: postFormats,
|
||||||
renderer: renderer,
|
renderer: renderer,
|
||||||
sessionRepo: sessionRepo,
|
sessionRepo: sessionRepo,
|
||||||
appRepo: appRepo,
|
appRepo: appRepo,
|
||||||
|
@ -297,6 +299,7 @@ func (svc *service) ServeTimelinePage(ctx context.Context, client io.Writer,
|
||||||
|
|
||||||
postContext := model.PostContext{
|
postContext := model.PostContext{
|
||||||
DefaultVisibility: c.Session.Settings.DefaultVisibility,
|
DefaultVisibility: c.Session.Settings.DefaultVisibility,
|
||||||
|
Formats: svc.postFormats,
|
||||||
}
|
}
|
||||||
|
|
||||||
commonData, err := svc.getCommonData(ctx, client, c)
|
commonData, err := svc.getCommonData(ctx, client, c)
|
||||||
|
@ -353,6 +356,7 @@ func (svc *service) ServeThreadPage(ctx context.Context, client io.Writer, c *mo
|
||||||
|
|
||||||
postContext = model.PostContext{
|
postContext = model.PostContext{
|
||||||
DefaultVisibility: s.Visibility,
|
DefaultVisibility: s.Visibility,
|
||||||
|
Formats: svc.postFormats,
|
||||||
ReplyContext: &model.ReplyContext{
|
ReplyContext: &model.ReplyContext{
|
||||||
InReplyToID: id,
|
InReplyToID: id,
|
||||||
InReplyToName: status.Account.Acct,
|
InReplyToName: status.Account.Acct,
|
||||||
|
@ -647,7 +651,7 @@ func (svc *service) UnRetweet(ctx context.Context, client io.Writer, c *model.Cl
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
func (svc *service) PostTweet(ctx context.Context, client io.Writer, c *model.Client, content string, replyToID string, visibility string, isNSFW bool, files []*multipart.FileHeader) (id string, err error) {
|
func (svc *service) PostTweet(ctx context.Context, client io.Writer, c *model.Client, content string, replyToID string, format string, visibility string, isNSFW bool, files []*multipart.FileHeader) (id string, err error) {
|
||||||
var mediaIds []string
|
var mediaIds []string
|
||||||
for _, f := range files {
|
for _, f := range files {
|
||||||
a, err := c.UploadMediaFromMultipartFileHeader(ctx, f)
|
a, err := c.UploadMediaFromMultipartFileHeader(ctx, f)
|
||||||
|
@ -667,6 +671,7 @@ func (svc *service) PostTweet(ctx context.Context, client io.Writer, c *model.Cl
|
||||||
Status: content,
|
Status: content,
|
||||||
InReplyToID: replyToID,
|
InReplyToID: replyToID,
|
||||||
MediaIDs: mediaIds,
|
MediaIDs: mediaIds,
|
||||||
|
ContentType: format,
|
||||||
Visibility: visibility,
|
Visibility: visibility,
|
||||||
Sensitive: isNSFW,
|
Sensitive: isNSFW,
|
||||||
}
|
}
|
||||||
|
|
|
@ -183,12 +183,13 @@ func NewHandler(s Service, staticDir string) http.Handler {
|
||||||
|
|
||||||
content := getMultipartFormValue(req.MultipartForm, "content")
|
content := getMultipartFormValue(req.MultipartForm, "content")
|
||||||
replyToID := getMultipartFormValue(req.MultipartForm, "reply_to_id")
|
replyToID := getMultipartFormValue(req.MultipartForm, "reply_to_id")
|
||||||
|
format := getMultipartFormValue(req.MultipartForm, "format")
|
||||||
visibility := getMultipartFormValue(req.MultipartForm, "visibility")
|
visibility := getMultipartFormValue(req.MultipartForm, "visibility")
|
||||||
isNSFW := "on" == getMultipartFormValue(req.MultipartForm, "is_nsfw")
|
isNSFW := "on" == getMultipartFormValue(req.MultipartForm, "is_nsfw")
|
||||||
|
|
||||||
files := req.MultipartForm.File["attachments"]
|
files := req.MultipartForm.File["attachments"]
|
||||||
|
|
||||||
id, err := s.PostTweet(ctx, w, nil, content, replyToID, visibility, isNSFW, files)
|
id, err := s.PostTweet(ctx, w, nil, content, replyToID, format, visibility, isNSFW, files)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
s.ServeErrorPage(ctx, w, err)
|
s.ServeErrorPage(ctx, w, err)
|
||||||
return
|
return
|
||||||
|
|
|
@ -12,6 +12,14 @@
|
||||||
<textarea id="post-content" name="content" class="post-content" cols="50" rows="5">{{if .ReplyContext}}{{.ReplyContext.ReplyContent}}{{end}}</textarea>
|
<textarea id="post-content" name="content" class="post-content" cols="50" rows="5">{{if .ReplyContext}}{{.ReplyContext.ReplyContent}}{{end}}</textarea>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
|
{{if gt (len .Formats) 0}}
|
||||||
|
<span class="post-form-field">
|
||||||
|
<label for="post-format"> Format </label>
|
||||||
|
<select id="post-format" name="format">
|
||||||
|
{{range .Formats}} <option value="{{.Type}}">{{.Name}}</option> {{end}}
|
||||||
|
</select>
|
||||||
|
</span>
|
||||||
|
{{end}}
|
||||||
<span class="post-form-field">
|
<span class="post-form-field">
|
||||||
<label for="post-visilibity"> Visibility </label>
|
<label for="post-visilibity"> Visibility </label>
|
||||||
<select id="post-visilibity" name="visibility">
|
<select id="post-visilibity" name="visibility">
|
||||||
|
@ -25,8 +33,6 @@
|
||||||
<input type="checkbox" id="nsfw-checkbox" name="is_nsfw" value="on">
|
<input type="checkbox" id="nsfw-checkbox" name="is_nsfw" value="on">
|
||||||
<label for="nsfw-checkbox"> Is NSFW </label>
|
<label for="nsfw-checkbox"> Is NSFW </label>
|
||||||
</span>
|
</span>
|
||||||
<span class="post-form-field">
|
|
||||||
</span>
|
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<span class="post-form-field">
|
<span class="post-form-field">
|
||||||
|
|
Loading…
Reference in New Issue