diff options
author | r <r@freesoftwareextremist.com> | 2019-12-22 16:27:49 +0000 |
---|---|---|
committer | r <r@freesoftwareextremist.com> | 2019-12-22 16:27:49 +0000 |
commit | 05daa6a148ee4d5d43ab1f055862b6a4b2eb75ec (patch) | |
tree | 0e82031aec5432ca06b5aefeb2151a27757f6312 | |
parent | 2506615f4228de4189202123d414e8f22b2c1c1b (diff) | |
download | bloat-05daa6a148ee4d5d43ab1f055862b6a4b2eb75ec.tar.gz bloat-05daa6a148ee4d5d43ab1f055862b6a4b2eb75ec.zip |
Add nsfw checkbox for posts
-rw-r--r-- | service/auth.go | 4 | ||||
-rw-r--r-- | service/logging.go | 8 | ||||
-rw-r--r-- | service/service.go | 5 | ||||
-rw-r--r-- | service/transport.go | 4 | ||||
-rw-r--r-- | static/main.css | 11 | ||||
-rw-r--r-- | templates/postform.tmpl | 26 | ||||
-rw-r--r-- | templates/status.tmpl | 4 |
7 files changed, 42 insertions, 20 deletions
diff --git a/service/auth.go b/service/auth.go index 13e9c50..1b2700c 100644 --- a/service/auth.go +++ b/service/auth.go @@ -157,12 +157,12 @@ func (s *authService) UnRetweet(ctx context.Context, client io.Writer, c *model. 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, files []*multipart.FileHeader) (id string, err error) { +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) { c, err = s.getClient(ctx) if err != nil { return } - return s.Service.PostTweet(ctx, client, c, content, replyToID, visibility, files) + return s.Service.PostTweet(ctx, client, c, content, replyToID, visibility, isNSFW, files) } func (s *authService) Follow(ctx context.Context, client io.Writer, c *model.Client, id string) (err error) { diff --git a/service/logging.go b/service/logging.go index ceba716..444584e 100644 --- a/service/logging.go +++ b/service/logging.go @@ -133,12 +133,12 @@ func (s *loggingService) UnRetweet(ctx context.Context, client io.Writer, c *mod 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, files []*multipart.FileHeader) (id string, err error) { +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) { defer func(begin time.Time) { - s.logger.Printf("method=%v, content=%v, reply_to_id=%v, visibility=%v, took=%v, err=%v\n", - "PostTweet", content, replyToID, visibility, time.Since(begin), err) + s.logger.Printf("method=%v, content=%v, reply_to_id=%v, visibility=%v, is_nsfw=%v, took=%v, err=%v\n", + "PostTweet", content, replyToID, visibility, isNSFW, time.Since(begin), err) }(time.Now()) - return s.Service.PostTweet(ctx, client, c, content, replyToID, visibility, files) + return s.Service.PostTweet(ctx, client, c, content, replyToID, visibility, isNSFW, files) } func (s *loggingService) Follow(ctx context.Context, client io.Writer, c *model.Client, id string) (err error) { diff --git a/service/service.go b/service/service.go index 07a026a..ad47408 100644 --- a/service/service.go +++ b/service/service.go @@ -38,7 +38,7 @@ type Service interface { 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) 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, files []*multipart.FileHeader) (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) 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) } @@ -482,7 +482,7 @@ func (svc *service) UnRetweet(ctx context.Context, client io.Writer, c *model.Cl return } -func (svc *service) PostTweet(ctx context.Context, client io.Writer, c *model.Client, content string, replyToID string, visibility string, files []*multipart.FileHeader) (id string, err error) { +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) { var mediaIds []string for _, f := range files { a, err := c.UploadMediaFromMultipartFileHeader(ctx, f) @@ -503,6 +503,7 @@ func (svc *service) PostTweet(ctx context.Context, client io.Writer, c *model.Cl InReplyToID: replyToID, MediaIDs: mediaIds, Visibility: visibility, + Sensitive: isNSFW, } s, err := c.PostStatus(ctx, tweet) diff --git a/service/transport.go b/service/transport.go index 4e852f2..e3ec113 100644 --- a/service/transport.go +++ b/service/transport.go @@ -156,9 +156,11 @@ func NewHandler(s Service, staticDir string) http.Handler { content := getMultipartFormValue(req.MultipartForm, "content") replyToID := getMultipartFormValue(req.MultipartForm, "reply_to_id") visibility := getMultipartFormValue(req.MultipartForm, "visibility") + isNSFW := "on" == getMultipartFormValue(req.MultipartForm, "is_nsfw") + files := req.MultipartForm.File["attachments"] - id, err := s.PostTweet(ctx, w, nil, content, replyToID, visibility, files) + id, err := s.PostTweet(ctx, w, nil, content, replyToID, visibility, isNSFW, files) if err != nil { s.ServeErrorPage(ctx, w, err) return diff --git a/static/main.css b/static/main.css index 2dcb4a6..b4b616b 100644 --- a/static/main.css +++ b/static/main.css @@ -234,6 +234,8 @@ .user-profile-img { max-height: 100px; max-width: 100px; + object-fit: contain; + vertical-align: top; } .user-profile-decription { @@ -284,6 +286,11 @@ position: relative; } +.status-profile-img-container .img-link { + width: 48px; + overflow: hidden; +} + .status-nsfw-overlay { height: 100%; width: 100%; @@ -305,3 +312,7 @@ .status-video-container:hover .status-nsfw-overlay { display: none; } + +.post-form-field>* { + vertical-align: middle; +} diff --git a/templates/postform.tmpl b/templates/postform.tmpl index 309e139..ea93efa 100644 --- a/templates/postform.tmpl +++ b/templates/postform.tmpl @@ -9,17 +9,25 @@ <textarea id="post-content" name="content" class="post-content" cols="50" rows="5">{{if .ReplyContext}}{{.ReplyContext.ReplyContent}}{{end}}</textarea> </div> <div> - <label for ="post-visilibity"> Visibility </label> - <select id="post-visilibity" name="visibility"> - <option value="public" {{if eq .DefaultVisibility "public"}}selected{{end}}>Public</option> - <option value="unlisted" {{if eq .DefaultVisibility "unlisted"}}selected{{end}}>Unlisted</option> - <option value="private" {{if eq .DefaultVisibility "private"}}selected{{end}}>Private</option> - <option value="direct" {{if eq .DefaultVisibility "direct"}}selected{{end}}>Direct</option> - </select> + <span class="post-form-field"> + <label for="post-visilibity"> Visibility </label> + <select id="post-visilibity" name="visibility"> + <option value="public" {{if eq .DefaultVisibility "public"}}selected{{end}}>Public</option> + <option value="unlisted" {{if eq .DefaultVisibility "unlisted"}}selected{{end}}>Unlisted</option> + <option value="private" {{if eq .DefaultVisibility "private"}}selected{{end}}>Private</option> + <option value="direct" {{if eq .DefaultVisibility "direct"}}selected{{end}}>Direct</option> + </select> + </span> + <span class="post-form-field"> + <input type="checkbox" id="nsfw-checkbox" name="is_nsfw" value="on"> + <label for="nsfw-checkbox"> Is NSFW </label> + </span> </div> <div> - <label for ="post-file-picker"> Attachments </label> - <input id="post-file-picker" type="file" name="attachments" multiple> + <span class="post-form-field"> + <label for ="post-file-picker"> Attachments </label> + <input id="post-file-picker" type="file" name="attachments" multiple> + </span> </div> <button type="submit"> Post </button> </form> diff --git a/templates/status.tmpl b/templates/status.tmpl index e62296d..c27a674 100644 --- a/templates/status.tmpl +++ b/templates/status.tmpl @@ -2,7 +2,7 @@ {{if .Reblog}} <div class="retweet-info"> <a class="img-link" href="/user/{{.Account.ID}}"> - <img class="status-profile-img" src="{{.Account.AvatarStatic}}" alt="profile-avatar" /> + <img class="status-profile-img" src="{{.Account.AvatarStatic}}" alt="avatar" /> </a> <span class="status-dname"> {{EmojiFilter .Account.DisplayName .Account.Emojis}} </span> <span class="icon dripicons-retweet retweeted"></span> @@ -15,7 +15,7 @@ {{if not .HideAccountInfo}} <div class="status-profile-img-container"> <a class="img-link" href="/user/{{.Account.ID}}"> - <img class="status-profile-img" src="{{.Account.AvatarStatic}}" alt="profile-avatar" /> + <img class="status-profile-img" src="{{.Account.AvatarStatic}}" alt="avatar" /> </a> </div> {{end}} |