2022-08-13 06:11:36 +00:00
|
|
|
package photo
|
|
|
|
|
|
|
|
import (
|
2022-08-21 22:40:24 +00:00
|
|
|
"fmt"
|
2022-08-13 06:11:36 +00:00
|
|
|
"net/http"
|
2023-06-26 05:55:07 +00:00
|
|
|
"path/filepath"
|
2022-08-13 06:11:36 +00:00
|
|
|
"strconv"
|
|
|
|
|
2024-03-15 06:08:14 +00:00
|
|
|
"code.nonshy.com/nonshy/website/pkg/chat"
|
2024-01-06 03:08:44 +00:00
|
|
|
"code.nonshy.com/nonshy/website/pkg/config"
|
2022-08-26 04:21:46 +00:00
|
|
|
"code.nonshy.com/nonshy/website/pkg/log"
|
|
|
|
"code.nonshy.com/nonshy/website/pkg/models"
|
|
|
|
pphoto "code.nonshy.com/nonshy/website/pkg/photo"
|
|
|
|
"code.nonshy.com/nonshy/website/pkg/session"
|
|
|
|
"code.nonshy.com/nonshy/website/pkg/templates"
|
2022-08-13 06:11:36 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// Edit controller (/photo/edit?id=N) to change properties about your picture.
|
|
|
|
func Edit() http.HandlerFunc {
|
|
|
|
// Reuse the upload page but with an EditPhoto variable.
|
|
|
|
tmpl := templates.Must("photo/upload.html")
|
|
|
|
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
// Query params.
|
|
|
|
photoID, err := strconv.Atoi(r.FormValue("id"))
|
|
|
|
if err != nil {
|
|
|
|
session.FlashError(w, r, "Photo 'id' parameter required.")
|
|
|
|
templates.Redirect(w, "/")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// Find this photo by ID.
|
|
|
|
photo, err := models.GetPhoto(uint64(photoID))
|
|
|
|
if err != nil {
|
|
|
|
templates.NotFoundPage(w, r)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// Load the current user.
|
|
|
|
currentUser, err := session.CurrentUser(r)
|
|
|
|
if err != nil {
|
|
|
|
session.FlashError(w, r, "Unexpected error: couldn't get CurrentUser")
|
|
|
|
templates.Redirect(w, "/")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
Change Logs
* Add a ChangeLog table to collect historic updates to various database tables.
* Created, Updated (with field diffs) and Deleted actions are logged, as well
as certification photo approves/denies.
* Specific items added to the change log:
* When a user photo is marked Explicit by an admin
* When users block/unblock each other
* When photo comments are posted, edited, and deleted
* When forums are created, edited, and deleted
* When forum comments are created, edited and deleted
* When a new forum thread is created
* When a user uploads or removes their own certification photo
* When an admin approves or rejects a certification photo
* When a user uploads, modifies or deletes their gallery photos
* When a friend request is sent
* When a friend request is accepted, ignored, or rejected
* When a friendship is removed
2024-02-26 01:03:36 +00:00
|
|
|
// In case an admin is editing this photo: remember the HTTP request current user,
|
|
|
|
// before the currentUser may be set to the photo's owner below.
|
|
|
|
var requestUser = currentUser
|
|
|
|
|
2022-08-13 06:11:36 +00:00
|
|
|
// Do we have permission for this photo?
|
2023-12-21 22:37:16 +00:00
|
|
|
if photo.UserID != currentUser.ID {
|
|
|
|
if !currentUser.IsAdmin {
|
|
|
|
templates.ForbiddenPage(w, r)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// Find the owner of this photo and assume currentUser is them for the remainder
|
|
|
|
// of this controller.
|
|
|
|
if user, err := models.GetUser(photo.UserID); err != nil {
|
|
|
|
session.FlashError(w, r, "Couldn't get the owner User for this photo!")
|
|
|
|
templates.Redirect(w, "/")
|
|
|
|
return
|
|
|
|
} else {
|
|
|
|
currentUser = user
|
|
|
|
}
|
2022-08-13 06:11:36 +00:00
|
|
|
}
|
|
|
|
|
2024-01-06 03:08:44 +00:00
|
|
|
// Is the user throttled for Site Gallery photo uploads?
|
|
|
|
var SiteGalleryThrottled = models.IsSiteGalleryThrottled(currentUser, photo)
|
|
|
|
|
2022-08-13 06:11:36 +00:00
|
|
|
// Are we saving the changes?
|
|
|
|
if r.Method == http.MethodPost {
|
|
|
|
var (
|
|
|
|
caption = r.FormValue("caption")
|
|
|
|
isExplicit = r.FormValue("explicit") == "true"
|
|
|
|
isGallery = r.FormValue("gallery") == "true"
|
2023-03-17 03:04:43 +00:00
|
|
|
visibility = models.PhotoVisibility(r.FormValue("visibility"))
|
2022-08-13 06:11:36 +00:00
|
|
|
|
|
|
|
// Profile pic fields
|
|
|
|
setProfilePic = r.FormValue("intent") == "profile-pic"
|
|
|
|
crop = pphoto.ParseCropCoords(r.FormValue("crop"))
|
2023-03-17 03:04:43 +00:00
|
|
|
|
2023-09-15 00:40:12 +00:00
|
|
|
// Are we GOING private or changing to Inner Circle?
|
2023-03-17 03:04:43 +00:00
|
|
|
goingPrivate = visibility == models.PhotoPrivate && visibility != photo.Visibility
|
2023-09-15 00:40:12 +00:00
|
|
|
goingCircle = visibility == models.PhotoInnerCircle && visibility != photo.Visibility
|
2022-08-13 06:11:36 +00:00
|
|
|
)
|
|
|
|
|
2024-01-06 03:08:44 +00:00
|
|
|
// Respect the Site Gallery throttle in case the user is messing around.
|
|
|
|
if SiteGalleryThrottled {
|
|
|
|
isGallery = false
|
|
|
|
}
|
|
|
|
|
Change Logs
* Add a ChangeLog table to collect historic updates to various database tables.
* Created, Updated (with field diffs) and Deleted actions are logged, as well
as certification photo approves/denies.
* Specific items added to the change log:
* When a user photo is marked Explicit by an admin
* When users block/unblock each other
* When photo comments are posted, edited, and deleted
* When forums are created, edited, and deleted
* When forum comments are created, edited and deleted
* When a new forum thread is created
* When a user uploads or removes their own certification photo
* When an admin approves or rejects a certification photo
* When a user uploads, modifies or deletes their gallery photos
* When a friend request is sent
* When a friend request is accepted, ignored, or rejected
* When a friendship is removed
2024-02-26 01:03:36 +00:00
|
|
|
// Diff for the ChangeLog.
|
|
|
|
diffs := []models.FieldDiff{
|
|
|
|
models.NewFieldDiff("Caption", photo.Caption, caption),
|
|
|
|
models.NewFieldDiff("Explicit", photo.Explicit, isExplicit),
|
|
|
|
models.NewFieldDiff("Gallery", photo.Gallery, isGallery),
|
|
|
|
models.NewFieldDiff("Visibility", photo.Visibility, visibility),
|
|
|
|
}
|
|
|
|
|
2022-08-13 06:11:36 +00:00
|
|
|
photo.Caption = caption
|
|
|
|
photo.Explicit = isExplicit
|
|
|
|
photo.Gallery = isGallery
|
2023-03-17 03:04:43 +00:00
|
|
|
photo.Visibility = visibility
|
2022-08-13 06:11:36 +00:00
|
|
|
|
2023-06-26 05:55:07 +00:00
|
|
|
// Can not use a GIF as profile pic.
|
|
|
|
if setProfilePic && filepath.Ext(photo.Filename) == ".gif" {
|
|
|
|
session.FlashError(w, r, "You can not use a GIF as your profile picture.")
|
|
|
|
templates.Redirect(w, "/")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-08-13 06:11:36 +00:00
|
|
|
// Are we cropping ourselves a new profile pic?
|
|
|
|
log.Error("Profile pic? %+v and crop is: %+v", setProfilePic, crop)
|
|
|
|
if setProfilePic && crop != nil && len(crop) >= 4 {
|
|
|
|
cropFilename, err := pphoto.ReCrop(photo.Filename, crop[0], crop[1], crop[2], crop[3])
|
|
|
|
log.Error("ReCrop got: %s, %s", cropFilename, err)
|
|
|
|
if err != nil {
|
|
|
|
session.FlashError(w, r, "Couldn't re-crop for profile picture: %s", err)
|
|
|
|
} else {
|
|
|
|
// If there was an old profile pic, remove it from disk.
|
|
|
|
if photo.CroppedFilename != "" {
|
|
|
|
pphoto.Delete(photo.CroppedFilename)
|
|
|
|
}
|
|
|
|
photo.CroppedFilename = cropFilename
|
|
|
|
log.Warn("HERE WE SET (%s) ON PHOTO (%+v)", cropFilename, photo)
|
|
|
|
}
|
2023-06-26 05:55:07 +00:00
|
|
|
} else {
|
|
|
|
setProfilePic = false
|
2022-08-13 06:11:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if err := photo.Save(); err != nil {
|
|
|
|
session.FlashError(w, r, "Couldn't save photo: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set their profile pic to this one.
|
2022-08-14 00:42:42 +00:00
|
|
|
if setProfilePic {
|
|
|
|
currentUser.ProfilePhoto = *photo
|
|
|
|
log.Error("Set user ProfilePhotoID=%d", photo.ID)
|
|
|
|
if err := currentUser.Save(); err != nil {
|
|
|
|
session.FlashError(w, r, "Couldn't save user: %s", err)
|
|
|
|
}
|
2022-08-13 06:11:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Flash success.
|
|
|
|
session.Flash(w, r, "Photo settings updated!")
|
|
|
|
|
Change Logs
* Add a ChangeLog table to collect historic updates to various database tables.
* Created, Updated (with field diffs) and Deleted actions are logged, as well
as certification photo approves/denies.
* Specific items added to the change log:
* When a user photo is marked Explicit by an admin
* When users block/unblock each other
* When photo comments are posted, edited, and deleted
* When forums are created, edited, and deleted
* When forum comments are created, edited and deleted
* When a new forum thread is created
* When a user uploads or removes their own certification photo
* When an admin approves or rejects a certification photo
* When a user uploads, modifies or deletes their gallery photos
* When a friend request is sent
* When a friend request is accepted, ignored, or rejected
* When a friendship is removed
2024-02-26 01:03:36 +00:00
|
|
|
// Log the change.
|
|
|
|
models.LogUpdated(currentUser, requestUser, "photos", photo.ID, "Updated the photo's settings.", diffs)
|
|
|
|
|
2024-03-15 06:08:14 +00:00
|
|
|
// Maybe kick them from the chat if this photo save makes them a Shy Account.
|
|
|
|
if _, err := chat.MaybeDisconnectUser(currentUser); err != nil {
|
|
|
|
log.Error("chat.MaybeDisconnectUser(%s#%d): %s", currentUser.Username, currentUser.ID, err)
|
|
|
|
}
|
|
|
|
|
2023-03-17 03:04:43 +00:00
|
|
|
// If this picture has moved to Private, revoke any notification we gave about it before.
|
2023-09-15 00:40:12 +00:00
|
|
|
if goingPrivate || goingCircle {
|
|
|
|
log.Info("The picture is GOING PRIVATE (to %s), revoke any notifications about it", photo.Visibility)
|
2023-03-17 03:04:43 +00:00
|
|
|
models.RemoveNotification("photos", photo.ID)
|
|
|
|
}
|
|
|
|
|
2022-08-13 06:11:36 +00:00
|
|
|
// Return the user to their gallery.
|
2024-02-11 00:17:15 +00:00
|
|
|
templates.Redirect(w, "/u/"+currentUser.Username+"/photos")
|
2022-08-13 06:11:36 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
var vars = map[string]interface{}{
|
2024-01-06 03:08:44 +00:00
|
|
|
"EditPhoto": photo,
|
|
|
|
"SiteGalleryThrottled": SiteGalleryThrottled,
|
|
|
|
"SiteGalleryThrottleLimit": config.SiteGalleryRateLimitMax,
|
2022-08-13 06:11:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if err := tmpl.Execute(w, r, vars); err != nil {
|
|
|
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// Delete controller (/photo/Delete?id=N) to change properties about your picture.
|
|
|
|
func Delete() http.HandlerFunc {
|
|
|
|
// Reuse the upload page but with an EditPhoto variable.
|
|
|
|
tmpl := templates.Must("photo/delete.html")
|
|
|
|
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
// Query params.
|
|
|
|
photoID, err := strconv.Atoi(r.FormValue("id"))
|
|
|
|
if err != nil {
|
2022-08-21 22:40:24 +00:00
|
|
|
log.Error("photo.Delete: failed to parse `id` param (%s) as int: %s", r.FormValue("id"), err)
|
2022-08-13 06:11:36 +00:00
|
|
|
session.FlashError(w, r, "Photo 'id' parameter required.")
|
|
|
|
templates.Redirect(w, "/")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-08-21 22:40:24 +00:00
|
|
|
// Page to redirect to in case of errors.
|
|
|
|
redirect := fmt.Sprintf("%s?id=%d", r.URL.Path, photoID)
|
|
|
|
|
2022-08-13 06:11:36 +00:00
|
|
|
// Find this photo by ID.
|
|
|
|
photo, err := models.GetPhoto(uint64(photoID))
|
|
|
|
if err != nil {
|
|
|
|
templates.NotFoundPage(w, r)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// Load the current user.
|
|
|
|
currentUser, err := session.CurrentUser(r)
|
|
|
|
if err != nil {
|
|
|
|
session.FlashError(w, r, "Unexpected error: couldn't get CurrentUser")
|
|
|
|
templates.Redirect(w, "/")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
Change Logs
* Add a ChangeLog table to collect historic updates to various database tables.
* Created, Updated (with field diffs) and Deleted actions are logged, as well
as certification photo approves/denies.
* Specific items added to the change log:
* When a user photo is marked Explicit by an admin
* When users block/unblock each other
* When photo comments are posted, edited, and deleted
* When forums are created, edited, and deleted
* When forum comments are created, edited and deleted
* When a new forum thread is created
* When a user uploads or removes their own certification photo
* When an admin approves or rejects a certification photo
* When a user uploads, modifies or deletes their gallery photos
* When a friend request is sent
* When a friend request is accepted, ignored, or rejected
* When a friendship is removed
2024-02-26 01:03:36 +00:00
|
|
|
// In case an admin is editing this photo: remember the HTTP request current user,
|
|
|
|
// before the currentUser may be set to the photo's owner below.
|
|
|
|
var requestUser = currentUser
|
|
|
|
|
2022-08-13 06:11:36 +00:00
|
|
|
// Do we have permission for this photo?
|
2023-12-21 22:37:16 +00:00
|
|
|
if photo.UserID != currentUser.ID {
|
|
|
|
if !currentUser.IsAdmin {
|
|
|
|
templates.ForbiddenPage(w, r)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// Find the owner of this photo and assume currentUser is them for the remainder
|
|
|
|
// of this controller.
|
|
|
|
if user, err := models.GetUser(photo.UserID); err != nil {
|
|
|
|
session.FlashError(w, r, "Couldn't get the owner User for this photo!")
|
|
|
|
templates.Redirect(w, "/")
|
|
|
|
return
|
|
|
|
} else {
|
|
|
|
currentUser = user
|
|
|
|
}
|
2022-08-13 06:11:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Confirm deletion?
|
|
|
|
if r.Method == http.MethodPost {
|
|
|
|
confirm := r.PostFormValue("confirm") == "true"
|
|
|
|
if !confirm {
|
|
|
|
session.FlashError(w, r, "Confirm you want to delete this photo.")
|
2022-08-21 22:40:24 +00:00
|
|
|
templates.Redirect(w, redirect)
|
2022-08-13 06:11:36 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-08-21 22:40:24 +00:00
|
|
|
// Was this our profile picture?
|
|
|
|
if currentUser.ProfilePhotoID != nil && *currentUser.ProfilePhotoID == photo.ID {
|
|
|
|
log.Debug("Delete Photo: was the user's profile photo, unset ProfilePhotoID")
|
|
|
|
if err := currentUser.RemoveProfilePhoto(); err != nil {
|
|
|
|
session.FlashError(w, r, "Error unsetting your current profile photo: %s", err)
|
|
|
|
templates.Redirect(w, redirect)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-13 06:11:36 +00:00
|
|
|
// Remove the images from disk.
|
|
|
|
for _, filename := range []string{
|
|
|
|
photo.Filename,
|
|
|
|
photo.CroppedFilename,
|
|
|
|
} {
|
|
|
|
if len(filename) > 0 {
|
|
|
|
if err := pphoto.Delete(filename); err != nil {
|
|
|
|
log.Error("Delete Photo: couldn't remove file from disk: %s: %s", filename, err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-10-28 21:34:35 +00:00
|
|
|
// Take back notifications on it.
|
|
|
|
models.RemoveNotification("photos", photo.ID)
|
|
|
|
|
2022-08-13 06:11:36 +00:00
|
|
|
if err := photo.Delete(); err != nil {
|
|
|
|
session.FlashError(w, r, "Couldn't delete photo: %s", err)
|
2022-08-21 22:40:24 +00:00
|
|
|
templates.Redirect(w, redirect)
|
2022-08-13 06:11:36 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
Change Logs
* Add a ChangeLog table to collect historic updates to various database tables.
* Created, Updated (with field diffs) and Deleted actions are logged, as well
as certification photo approves/denies.
* Specific items added to the change log:
* When a user photo is marked Explicit by an admin
* When users block/unblock each other
* When photo comments are posted, edited, and deleted
* When forums are created, edited, and deleted
* When forum comments are created, edited and deleted
* When a new forum thread is created
* When a user uploads or removes their own certification photo
* When an admin approves or rejects a certification photo
* When a user uploads, modifies or deletes their gallery photos
* When a friend request is sent
* When a friend request is accepted, ignored, or rejected
* When a friendship is removed
2024-02-26 01:03:36 +00:00
|
|
|
// Log the change.
|
|
|
|
models.LogDeleted(currentUser, requestUser, "photos", photo.ID, "Deleted the photo.", photo)
|
|
|
|
|
2022-08-13 06:11:36 +00:00
|
|
|
session.Flash(w, r, "Photo deleted!")
|
|
|
|
|
2024-03-15 06:08:14 +00:00
|
|
|
// Maybe kick them from chat if this deletion makes them into a Shy Account.
|
|
|
|
if _, err := chat.MaybeDisconnectUser(currentUser); err != nil {
|
|
|
|
log.Error("chat.MaybeDisconnectUser(%s#%d): %s", currentUser.Username, currentUser.ID, err)
|
|
|
|
}
|
|
|
|
|
2022-08-13 06:11:36 +00:00
|
|
|
// Return the user to their gallery.
|
2024-02-11 00:17:15 +00:00
|
|
|
templates.Redirect(w, "/u/"+currentUser.Username+"/photos")
|
2023-12-21 22:37:16 +00:00
|
|
|
return
|
2022-08-13 06:11:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var vars = map[string]interface{}{
|
|
|
|
"Photo": photo,
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := tmpl.Execute(w, r, vars); err != nil {
|
|
|
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|