2018-05-25 18:28:32 +02:00
|
|
|
# Content DB
|
|
|
|
# Copyright (C) 2018 rubenwardy
|
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
|
|
|
|
from flask import *
|
|
|
|
from flask_user import *
|
|
|
|
from app import app
|
|
|
|
from app.models import *
|
|
|
|
|
|
|
|
from app.utils import *
|
|
|
|
|
|
|
|
from flask_wtf import FlaskForm
|
|
|
|
from wtforms import *
|
|
|
|
from wtforms.validators import *
|
|
|
|
|
|
|
|
|
|
|
|
class CreateScreenshotForm(FlaskForm):
|
|
|
|
title = StringField("Title/Caption", [Optional()])
|
|
|
|
fileUpload = FileField("File Upload", [InputRequired()])
|
|
|
|
submit = SubmitField("Save")
|
|
|
|
|
2018-05-25 19:57:30 +02:00
|
|
|
|
|
|
|
class EditScreenshotForm(FlaskForm):
|
|
|
|
title = StringField("Title/Caption", [Optional()])
|
|
|
|
approved = BooleanField("Is Approved")
|
|
|
|
delete = BooleanField("Delete")
|
|
|
|
submit = SubmitField("Save")
|
|
|
|
|
2018-05-25 18:28:32 +02:00
|
|
|
@app.route("/packages/<author>/<name>/screenshots/new/", methods=["GET", "POST"])
|
|
|
|
@login_required
|
|
|
|
@is_package_page
|
2018-05-25 19:57:30 +02:00
|
|
|
def create_screenshot_page(package, id=None):
|
|
|
|
if not package.checkPerm(current_user, Permission.ADD_SCREENSHOTS):
|
2018-05-25 18:28:32 +02:00
|
|
|
return redirect(package.getDetailsURL())
|
|
|
|
|
|
|
|
# Initial form class from post data and default data
|
|
|
|
form = CreateScreenshotForm()
|
|
|
|
if request.method == "POST" and form.validate():
|
|
|
|
uploadedPath = doFileUpload(form.fileUpload.data, ["png", "jpg", "jpeg"],
|
|
|
|
"a PNG or JPG image file")
|
|
|
|
if uploadedPath is not None:
|
|
|
|
ss = PackageScreenshot()
|
|
|
|
ss.package = package
|
|
|
|
ss.title = form["title"].data
|
|
|
|
ss.url = uploadedPath
|
|
|
|
db.session.add(ss)
|
|
|
|
|
|
|
|
msg = "{}: Screenshot added {}" \
|
|
|
|
.format(package.title, ss.title)
|
|
|
|
triggerNotif(package.author, current_user, msg, package.getDetailsURL())
|
|
|
|
db.session.commit()
|
|
|
|
return redirect(package.getDetailsURL())
|
|
|
|
|
|
|
|
return render_template("packages/screenshot_new.html", package=package, form=form)
|
2018-05-25 19:57:30 +02:00
|
|
|
|
|
|
|
@app.route("/packages/<author>/<name>/screenshots/<id>/edit/", methods=["GET", "POST"])
|
|
|
|
@login_required
|
|
|
|
@is_package_page
|
|
|
|
def edit_screenshot_page(package, id):
|
|
|
|
screenshot = PackageScreenshot.query.get(id)
|
|
|
|
if screenshot is None or screenshot.package != package:
|
|
|
|
abort(404)
|
|
|
|
|
|
|
|
canEdit = package.checkPerm(current_user, Permission.ADD_SCREENSHOTS)
|
|
|
|
canApprove = package.checkPerm(current_user, Permission.APPROVE_SCREENSHOT)
|
|
|
|
if not (canEdit or canApprove):
|
|
|
|
return redirect(package.getDetailsURL())
|
|
|
|
|
|
|
|
clearNotifications(screenshot.getEditURL())
|
|
|
|
|
|
|
|
# Initial form class from post data and default data
|
|
|
|
form = EditScreenshotForm(formdata=request.form, obj=screenshot)
|
|
|
|
if request.method == "POST" and form.validate():
|
|
|
|
if canEdit and form["delete"].data:
|
|
|
|
PackageScreenshot.query.filter_by(id=id).delete()
|
|
|
|
|
|
|
|
else:
|
|
|
|
wasApproved = screenshot.approved
|
|
|
|
|
|
|
|
if canEdit:
|
|
|
|
screenshot.title = form["title"].data
|
|
|
|
|
|
|
|
if canApprove:
|
|
|
|
screenshot.approved = form["approved"].data
|
|
|
|
else:
|
|
|
|
screenshot.approved = wasApproved
|
|
|
|
|
|
|
|
db.session.commit()
|
|
|
|
return redirect(package.getDetailsURL())
|
|
|
|
|
|
|
|
return render_template("packages/screenshot_edit.html", package=package, screenshot=screenshot, form=form)
|