-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathapp.py
1235 lines (1053 loc) · 33.4 KB
/
app.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import os
import subprocess
from flask import Flask, render_template, request, redirect, abort, url_for, send_file
import psycopg2
import logging
from werkzeug.utils import secure_filename
from werkzeug.exceptions import HTTPException
import hashlib
import re
from functools import wraps
from random import shuffle
from PIL import Image as PilImage
from datetime import datetime, timezone
from flask_sqlalchemy import SQLAlchemy
from sqlalchemy import func, ForeignKey, text
from sqlalchemy.orm import DeclarativeBase, Mapped, mapped_column, relationship
from s3 import get_bucket, get_file_s3, upload_file, remove_file, get_file_list, get_file
from typing import Optional
import shutil
import pandas as pd
import json_log_formatter
class Base(DeclarativeBase):
pass
class Mural(Base):
__tablename__ = "murals"
id: Mapped[int] = mapped_column(primary_key=True)
title: Mapped[str]
artistknown: Mapped[bool]
remarks: Mapped[str]
notes: Mapped[str]
private_notes: Mapped[str]
year: Mapped[int]
location: Mapped[str]
nextmuralid: Mapped[Optional[int]] = mapped_column(ForeignKey("murals.id"))
nextmural: Mapped[Optional["Mural"]] = relationship()
active: Mapped[bool]
spotify: Mapped[str]
class Artist(Base):
__tablename__ = "artists"
id: Mapped[int] = mapped_column(primary_key=True)
name: Mapped[str]
notes: Mapped[str]
class Image(Base):
__tablename__ = "images"
id: Mapped[int] = mapped_column(primary_key=True)
caption: Mapped[str]
alttext: Mapped[str]
ordering: Mapped[int]
imghash: Mapped[str]
attribution: Mapped[str]
datecreated: Mapped[datetime]
fullsizehash: Mapped[Optional[str]]
class Tag(Base):
__tablename__ = "tags"
id: Mapped[int] = mapped_column(primary_key=True)
name: Mapped[str]
description: Mapped[str]
class ArtistMuralRelation(Base):
__tablename__ = "artistmuralrelation"
artist_id: Mapped[int] = mapped_column(ForeignKey("artists.id"), primary_key=True)
artist: Mapped[Artist] = relationship()
mural_id: Mapped[int] = mapped_column(ForeignKey("murals.id"), primary_key=True)
mural: Mapped[Mural] = relationship()
class ImageMuralRelation(Base):
__tablename__ = "imagemuralrelation"
image_id: Mapped[int] = mapped_column(ForeignKey("images.id"), primary_key=True)
image: Mapped[Image] = relationship()
mural_id: Mapped[int] = mapped_column(ForeignKey("murals.id"), primary_key=True)
mural: Mapped[Mural] = relationship()
class MuralTag(Base):
__tablename__ = "mural_tags"
tag_id: Mapped[int] = mapped_column(ForeignKey("tags.id"), primary_key=True)
tag: Mapped[Tag] = relationship()
mural_id: Mapped[int] = mapped_column(ForeignKey("murals.id"), primary_key=True)
mural: Mapped[Mural] = relationship()
class Feedback(Base):
__tablename__ = "feedback"
feedback_id: Mapped[int] = mapped_column(primary_key=True)
notes: Mapped[str]
contact: Mapped[str]
time: Mapped[str]
mural_id: Mapped[int] = mapped_column(ForeignKey("murals.id"))
mural: Mapped[Mural] = relationship()
app = Flask(__name__)
logger = logging.getLogger()
logger.setLevel(logging.INFO)
logging.info("Starting up...")
if os.path.exists(os.path.join(os.getcwd(), "config.py")):
app.config.from_pyfile(os.path.join(os.getcwd(), "config.py"))
else:
app.config.from_pyfile(os.path.join(os.getcwd(), "config.env.py"))
if app.config["JSON_LOGS"] is True:
formatter = json_log_formatter.JSONFormatter()
json_handler = logging.StreamHandler()
json_handler.setFormatter(formatter)
logger.addHandler(json_handler)
logging.info("Starting up...")
git_cmd = ['git', 'rev-parse', '--short', 'HEAD']
app.config["GIT_REVISION"] = subprocess.check_output(git_cmd).decode('utf-8').rstrip()
logging.info("Connecting to S3 Bucket {0}".format(app.config["BUCKET_NAME"]))
s3_bucket = get_bucket(app.config["S3_URL"], app.config["S3_KEY"], app.config["S3_SECRET"], app.config["BUCKET_NAME"])
app.config['SQLALCHEMY_DATABASE_URI'] = 'postgresql://{0}:{1}@{2}:{3}/{4}'.format(
app.config["DBUSER"],
app.config["DBPWD"],
app.config["DBHOST"],
app.config["DBPORT"],
app.config["DBNAME"],
)
logging.info("Connecting to DB {0}".format(app.config["DBNAME"]))
try:
db = SQLAlchemy(app)
except KeyboardInterrupt:
logging.error("Keyboard Interrupt during DB acquisition")
with app.app_context():
db.create_all()
########################
#
# Helpers
#
########################
"""
Create a JSON object for a mural
"""
def mural_json(mural: Mural):
artists = []
if mural.artistknown:
artists = list(map(artist_json, db.session.execute(
db.select(Artist)
.join(ArtistMuralRelation, Artist.id == ArtistMuralRelation.artist_id)
.where(ArtistMuralRelation.mural_id == mural.id)
).scalars()));
prevmuralid = db.session.execute(
db.select(Mural.id).where(Mural.nextmuralid == mural.id)
).scalar();
image_data = db.session.execute(
db.select(Image)
.join(ImageMuralRelation, Image.id == ImageMuralRelation.image_id)
.where(ImageMuralRelation.mural_id == mural.id)
.order_by(Image.ordering)
).scalars()
images = []
thumbnail = None
for image in image_data:
if image.ordering == 0:
thumbnail = get_file_s3(s3_bucket, image.imghash)
else:
images.append(image_json(image))
return {
"id": mural.id,
"title": mural.title,
"year": mural.year,
"location": mural.location,
"remarks": mural.remarks,
"notes": mural.notes,
"prevmuralid": prevmuralid,
"nextmuralid": mural.nextmuralid,
"private_notes": mural.private_notes,
"active": "checked" if mural.active else "unchecked",
"thumbnail": thumbnail,
"artists": artists,
"images": images,
"spotify": mural.spotify,
"tags": getTags(mural.id)
}
"""
Create a JSON object for Feedback
"""
def feedback_json(feedback: Feedback):
feedback = feedback[0]
dt = datetime.now(timezone.utc)
dt = dt.replace(tzinfo=None)
fb_dt = feedback.time
diff = dt-fb_dt
return {
"id": feedback.feedback_id,
"mural_id": feedback.mural_id,
"notes": feedback.notes,
"contact": feedback.contact,
"approxtime": "{0} days ago".format(diff.days), #approx_time,
"exacttime": fb_dt
}
"""
Create a JSON object for an artist
"""
def artist_json(artist: Artist):
return {
"id": artist.id,
"name": artist.name,
"notes": artist.notes
}
"""
Create a JSON object for a tag
"""
def tag_json(tag: Tag):
return {
"name": tag.name,
"description": tag.description
}
"""
Create a JSON object for an image
"""
def image_json(image: Image):
out = {
"imgurl": get_file_s3(s3_bucket, image.imghash),
"ordering": image.ordering,
"caption": image.caption,
"alttext": image.alttext,
"attribution": image.attribution,
"datecreated": image.datecreated,
"id": image.id
}
if image.fullsizehash != None:
out["fullsizeimage"] = get_file_s3(s3_bucket, image.fullsizehash)
return out
"""
Crop a given image to a centered square
"""
def crop_center(pil_img, crop_width, crop_height):
img_width, img_height = pil_img.size
return pil_img.crop(((img_width - crop_width) // 2,
(img_height - crop_height) // 2,
(img_width + crop_width) // 2,
(img_height + crop_height) // 2))
"""
Search all murals given query
"""
def searchMurals(query):
return list(map(mural_json, db.session.execute(
db.select(Mural)
.where(text(
"murals.text_search_index @@ websearch_to_tsquery(:query)"
))
.order_by(Mural.id)
.limit(150),
{ "query": query }
).scalars()))
"""
Get murals in list, paginated
"""
def getMuralsPaginated(page_num):
return list(map(mural_json, db.session.execute(
db.select(Mural)
.where(Mural.active == True)
.order_by(Mural.title.asc())
.offset(page_num*app.config['ITEMSPERPAGE'])
.limit(app.config['ITEMSPERPAGE'])
).scalars()))
"""
Get all murals
"""
def getAllMurals():
return list(map(mural_json, db.paginate(
db.select(Mural)
.order_by(Mural.title.asc()),
per_page=200,
).items))
"""
Get all tags
"""
def getAllTags():
return list(db.session.execute(
db.select(Tag)
).scalars())
"""
Get Feedback for a Mural
"""
def getMuralFeedback(mural_id):
return list(map(feedback_json, db.session.execute(
db.select(Feedback)
.where(Feedback.mural_id == mural_id)
)))
"""
Get all murals from year
"""
def getAllMuralsFromYear(year):
return list(map(mural_json, db.paginate(
db.select(Mural)
.where(Mural.year == year)
.order_by(Mural.title.asc()),
per_page=150,
).items))
"""
Get all tags
"""
def getAllTags():
return list(db.session.execute(
db.select(Tag.name)
).scalars())
"""
Get all murals from artist given artist ID
"""
def getAllMuralsFromArtist(id):
return list(map(mural_json, db.paginate(
db.select(Mural)
.join(ArtistMuralRelation, Mural.id == ArtistMuralRelation.mural_id)
.where(ArtistMuralRelation.artist_id == id)
.order_by(Mural.id.asc()),
per_page=150,
).items))
"""
Get artist details
"""
def getArtistDetails(id):
return artist_json(db.session.execute(
db.select(Artist).where(Artist.id == id)
).scalar_one())
"""
Get Tag details
"""
def getTagDetails(name):
return tag_json(db.session.execute(
db.select(Tag).where(Tag.name == name)
).scalar_one())
"""
Exports database tables to CSV files
Stores in provided directory
"""
def export_database(dir, public):
if public:
mural_select = db.select(Mural.id, Mural.title, Mural.notes, Mural.remarks, Mural.year, Mural.location, Mural.spotify)\
.order_by(Mural.id.asc())
else:
mural_select = db.select(Mural.id, Mural.title, Mural.private_notes, Mural.notes, Mural.remarks, Mural.year, Mural.location, Mural.spotify)\
.order_by(Mural.id.asc())
feedback_select = db.select(Feedback).order_by(Feedback.feedback_id.asc())
feedback_df = pd.read_sql(feedback_select, db.engine)
feedback_df.to_csv(dir+"feedback.csv")
murals_df = pd.read_sql(mural_select, db.engine)
murals_df['tags'] = murals_df.apply(lambda x: getTags(x['id']), axis=1)
murals_df['artists'] = murals_df.apply(lambda x: getArtists(x['id']), axis=1)
images_select = db.select(Image.id, Image.caption, Image.alttext, Image.attribution, Image.datecreated).where(Image.ordering != 0).order_by(Image.id.asc())
images_df = pd.read_sql(images_select, db.engine)
if not os.path.exists(dir):
os.makedirs(dir)
murals_df.to_csv(dir+"murals.csv")
images_df.to_csv(dir+"images.csv")
"""
Exports images to <path>/images
"""
def export_images(path):
murals = db.session.execute(
db.select(Mural)
.order_by(Mural.id.asc())
).scalars()
for m in murals:
images = db.session.execute(
db.select(Image)
.join(ImageMuralRelation, ImageMuralRelation.image_id == Image.id)
.where(ImageMuralRelation.mural_id == m.id)
.filter(Image.ordering != 0)
).scalars()
basepath = path + "images/" + str(m.id) + "/"
if not os.path.exists(basepath):
os.makedirs(basepath)
for i in images:
get_file(app.config['BUCKET_NAME'], i.fullsizehash, basepath + str(i.ordering) + ".jpg", app.config['S3_KEY'], app.config['S3_SECRET'])
"""
Imports data export into database, S3
"""
def import_data(file):
return
"""
Get mural details
"""
def getMural(id):
mural = db.session.execute(
db.select(Mural).where(Mural.id == id)
).scalar()
if mural == None:
logging.warning("DB Response was None")
logging.warning("ID was '{0}'".format(id))
return None
muralInfo = mural_json(mural)
logging.debug(muralInfo)
return muralInfo
def checkYearExists(year):
if not year.isdigit():
return False
integer_pattern = r'^[+-]?\d+$'
# Use re.match to check if the variable matches the integer pattern
if not re.match(integer_pattern, year):
return False
return True
def checkArtistExists(id):
if not id.isdigit():
return False
return db.session.execute(db.select(Artist).where(Artist.id == id)).scalar() != None
def checkMuralExists(id):
# Check id is not bad
if not id.isdigit():
return False
return db.session.execute(db.select(Mural).where(Mural.id == id)).scalar() != None
"""
Get all murals with given tag
"""
def getMuralsTagged(tag):
return list(map(mural_json, db.session.execute(
db.select(Mural)
.select_from(MuralTag)
.join(Tag, MuralTag.tag_id == Tag.id)
.join(Mural, Mural.id == MuralTag.mural_id)
.where(Tag.name == tag)
).scalars()))
"""
Get all tags / Get all tags on certain mural
(logic based on whether mural_id is passed in)
"""
def getTags(mural_id=None):
if (mural_id == None):
return db.session.execute(
db.select(Tag.name)
).scalars()
else:
return list(db.session.execute(
db.select(Tag.name)
.join(MuralTag, MuralTag.tag_id == Tag.id)
.where(MuralTag.mural_id == mural_id)
).scalars())
"""
Get artist names for given mural
"""
def getArtists(mural_id):
return list(db.session.execute(
db.select(Artist.name)
.join(ArtistMuralRelation, Artist.id == ArtistMuralRelation.artist_id)
.where(ArtistMuralRelation.mural_id == mural_id)
).scalars())
"""
Get all artist IDs
"""
def getAllArtists():
return list(map(artist_json, db.session.execute(
db.select(Artist)
).scalars()))
"""
Get a random assortment of images from DB, excluding thumbnails
"""
def getRandomImages(count):
images = list(map(image_json,
db.session.execute(
db.select(Image)
.where(Image.ordering != 0)
.order_by(func.random())
.limit(count))
.scalars()))
shuffle(images)
return images
########################
#
# Pages
#
########################
@app.route("/")
def home():
return render_template("home.html", pageTitle="RIT's Overlooked Art Museum", muralHighlights=getRandomImages(8))
@app.route('/about')
def about():
return render_template("about.html")
@app.route('/open-canvas')
def openCanvas():
# TODO: Use a random image of the Open Canvas instead of a random mural image
return render_template("open-canvas.html", canvasHighlight=getRandomImages(1)[0])
@app.route("/catalog?q=<query>")
@app.route("/catalog")
def catalog():
query = request.args.get("q")
if query == None:
return render_template("catalog.html", q=query, murals=getMuralsPaginated(0), tags=getAllTags())
else:
return render_template("filtered.html", pageTitle="Query - {0}".format(query), subHeading="Search Query", q=query, murals=searchMurals(query))
@app.route("/tags?t=<tag>")
@app.route("/tags")
def tags():
tag = request.args.get("t")
if tag == None:
return render_template("404.html"), 404
else:
return render_template("filtered.html", pageTitle="Tag - {0}".format(tag), subHeading=getTagDetails(tag)['description'], murals=getMuralsTagged(tag))
"""
Get next page of murals
"""
@app.route("/page?p=<page>")
@app.route("/page")
def paginated():
page = int(request.args.get("p"))
if page == None:
#print("No page")
return render_template("404.html"), 404
else:
return render_template("paginated.html", page=(page+1), murals=getMuralsPaginated(page))
"""
Page for specific mural details
"""
@app.route("/murals/<id>")
def mural(id):
if (checkMuralExists(id)):
return render_template("mural.html", muralDetails=getMural(id), spotify=getMural(id)['spotify'])
else:
return render_template("404.html"), 404
"""
Page for specific artist
"""
@app.route("/artist/<id>")
def artist(id):
if (checkArtistExists(id)):
return render_template("filtered.html", pageTitle="Artist: {0}".format(getArtistDetails(id)['name']), subHeading=getArtistDetails(id)['notes'], murals=getAllMuralsFromArtist(id))
else:
return render_template("404.html"), 404
"""
Page for specific year
"""
@app.route("/year/<year>")
def year(year):
if (checkYearExists(year)):
if (year == "0"):
readableYear = "Unknown Date"
else:
readableYear = year
return render_template("filtered.html", pageTitle="Murals from {0}".format(readableYear), subHeading=None, murals=getAllMuralsFromYear(year))
else:
return render_template("404.html"), 404
"""
Generic error handler
"""
@app.errorhandler(HTTPException)
def not_found(e):
return render_template("404.html"), 404
########################
#
# Management
#
########################
########################
# Helpers
########################
def debug_only(f):
@wraps(f)
def wrapped(**kwargs):
if app.config["DEBUG"]:
return f(**kwargs)
return abort(404)
return wrapped
def make_thumbnail(mural_id, file):
with PilImage.open(file) as im:
if (im.width == 256 or im.height == 256):
# Already a thumbnail
#print("Already a thumbnail...")
return False
im = crop_center(im, min(im.size), min(im.size))
im.thumbnail((256,256))
im = im.convert("RGB")
im.save(file + ".thumbnail", "JPEG")
with open(file + ".thumbnail", "rb") as tb:
file_hash = hashlib.md5(tb.read()).hexdigest()
tb.seek(0)
# Upload thumnail version
upload_file(s3_bucket, file_hash, tb, (file + ".thumbnail"))
img = Image(
imghash=file_hash,
ordering=0
)
db.session.add(img)
db.session.flush()
img_id = img.id
db.session.add(ImageMuralRelation(image_id=img_id, mural_id=mural_id))
db.session.commit()
"""
Delete artist and all relations from DB
"""
def deleteArtistGivenID(id):
db.session.execute(
db.delete(ArtistMuralRelation)
.where(ArtistMuralRelation.artist_id == id)
)
db.session.execute(
db.delete(Artist)
.where(Artist.id == id)
)
db.session.commit()
"""
Delete tag and all relations from DB
"""
def deleteTagGivenName(name):
t = db.session.execute(
db.select(Tag)
.where(Tag.name == name)
).scalar_one()
db.session.execute(
db.delete(MuralTag)
.where(MuralTag.tag_id == t.id)
)
db.session.execute(
db.delete(Tag)
.where(Tag.id == t.id)
)
db.session.commit()
"""
Delete mural entry, all relations, and all images from DB and S3
"""
def deleteMuralEntry(id):
# Get all images relating to this mural from the DB
images = db.paginate(
db.select(Image)
.join(ImageMuralRelation, Image.id == ImageMuralRelation.image_id)
.where(ImageMuralRelation.mural_id == id),
per_page=150,
).items
db.session.execute(
db.delete(ImageMuralRelation)
.where(ImageMuralRelation.mural_id == id)
)
db.session.execute(
db.delete(ArtistMuralRelation)
.where(ArtistMuralRelation.mural_id == id)
)
db.session.execute(
db.delete(MuralTag)
.where(MuralTag.mural_id == id)
)
db.session.execute(
db.delete(Feedback)
.where(Feedback.mural_id == id)
)
m = db.session.execute(
db.select(Mural).where(Mural.id == id)
).scalar_one()
db.session.query(Mural).filter_by(nextmuralid = id).update({'nextmuralid' : m.nextmuralid})
db.session.execute(
db.delete(Mural)
.where(Mural.id == id)
)
for image in images:
remove_file(s3_bucket, image.imghash)
db.session.execute(
db.delete(Image)
.where(Image.id == image.id)
)
db.session.commit()
"""
Upload fullsize and resized image, add relation to mural given ID
"""
def uploadImageResize(file, mural_id, count):
fullsizehash = hashlib.md5(file.read()).hexdigest()
file.seek(0)
# Upload full size img to S3
upload_file(s3_bucket, fullsizehash, file)
with PilImage.open(file) as im:
width = (im.width * app.config["MAX_IMG_HEIGHT"]) // im.height
(width, height) = (width, app.config["MAX_IMG_HEIGHT"])
#print(width, height)
im = im.resize((width,height))
im = im.convert("RGB")
im.save(fullsizehash + ".resized", "JPEG")
with open((fullsizehash + ".resized"), "rb") as rs:
file_hash = hashlib.md5(rs.read()).hexdigest()
rs.seek(0)
upload_file(s3_bucket, file_hash, rs, filename=fullsizehash+".resized")
#print(get_file_s3(s3_bucket, file_hash))
img = Image(
fullsizehash=fullsizehash,
ordering=count,
imghash=file_hash,
datecreated=datetime.now()
)
db.session.add(img)
db.session.flush()
img_id = img.id
db.session.add(ImageMuralRelation(image_id=img_id, mural_id=mural_id))
db.session.commit()
########################
# Pages
########################
"""
Route to edit mural page
"""
@app.route('/edit/<id>')
@debug_only
def edit(id):
return render_template("edit.html", muralDetails=getMural(id), muralFeedback=getMuralFeedback(id), tags=getAllTags(), artists=getAllArtists())
"""
Route to the admin panel
"""
@app.route("/admin")
@debug_only
def admin():
return render_template("admin.html", tags=getAllTags(), murals=getAllMurals(), artists=getAllArtists())
########################
# Form submissions
########################
"""
Suggestion/feedback form
"""
@app.route("/suggestion", methods=["POST"])
def submit_suggestion():
dt = datetime.now(timezone.utc)
db.session.add(Feedback(
notes=request.form["notes"],
contact=request.form["contact"],
time=str(dt),
mural_id=request.form["muralid"]
))
db.session.commit()
return redirect("/catalog")
"""
Route to delete artist
"""
@app.route('/deleteArtist/<id>', methods=["POST"])
@debug_only
def deleteArtist(id):
if checkArtistExists(id):
deleteArtistGivenID(id)
return redirect("/admin")
else:
return render_template("404.html"), 404
@app.route('/deleteTag/<name>', methods=['POST'])
@debug_only
def deleteTag(name):
deleteTagGivenName(name)
return redirect("/admin")
"""
Route to delete mural entry
"""
@app.route('/delete/<id>', methods=["POST"])
@debug_only
def delete(id):
if checkMuralExists(id):
deleteMuralEntry(id)
return redirect("/admin")
else:
return render_template("404.html"), 404
"""
Route to edit mural details
Sets all fields based on http form
"""
@app.route('/editmural/<id>', methods=['POST'])
@debug_only
def editMural(id):
m = db.session.execute(
db.select(Mural).where(Mural.id == id)
).scalar_one()
# Remove existing tag relationships
db.session.execute(
db.delete(MuralTag)
.where(MuralTag.mural_id == m.id)
)
# Relate mural and submitted tags
if 'tags' in request.form:
if "No Tags" not in request.form.getlist('tags'):
for tag in request.form.getlist('tags'):
tag_id = db.session.execute(
db.select(Tag.id)
.where(Tag.name == tag)
).scalar()
rel = MuralTag(tag_id=tag_id, mural_id=m.id)
db.session.add(rel)
# Remove existing artist relationships
# (If artists is not in the form submission, the multiselect was blank)
db.session.execute(
db.delete(ArtistMuralRelation)
.where(ArtistMuralRelation.mural_id == m.id)
)
if 'artists' in request.form:
# Relate mural and submitted artists
for artist_id in request.form.getlist('artists'):
rel = ArtistMuralRelation(artist_id=int(artist_id), mural_id=m.id)
db.session.add(rel)
m.active = True if 'active' in request.form else False
if request.form['notes'] != 'None':
m.notes = request.form['notes']
if request.form['remarks'] != 'None':
m.remarks = request.form['remarks']
if request.form['year'] != 'None':
m.year = int(request.form['year'])
if request.form['location'] != 'None':
m.location = request.form['location']
if request.form['private_notes'] != 'None':
m.private_notes = request.form['private_notes']
if request.form['spotify'] != 'None':
m.spotify = request.form["spotify"]
if request.form['nextmuralid'] != 'None':
m.nextmuralid = request.form['nextmuralid']
db.session.commit()
return ('', 204)
"""
Route to edit tag description
"""
@app.route('/editTag/<name>', methods=["POST"])
@debug_only
def edit_tag(name):
t = db.session.execute(
db.select(Tag).where(Tag.name == name)
).scalar_one()
t.description = request.form['description']
db.session.commit()
return ('', 204)
"""
Route to edit Artist notes
"""
@app.route('/editArtist/<id>', methods=["POST"])
@debug_only
def edit_artist(id):
a = db.session.execute(
db.select(Artist).where(Artist.id == id)
).scalar_one()
a.notes = request.form['notes']
db.session.commit()
return ('', 204)
"""
Route to edit mural title
Sets mural title based on http form
"""
@app.route('/edittitle/<id>', methods=['POST'])
@debug_only
def editTitle(id):
m = db.session.execute(
db.select(Mural).where(Mural.id == id)
).scalar_one()
m.title = request.form['title']
db.session.commit()
return ('', 204)
"""
Route to edit image details
Set caption and alttext based on http form
"""
@app.route('/editimage/<id>', methods=["POST"])
@debug_only
def editImage(id):
image = db.session.execute(
db.select(Image).where(Image.id == id)
).scalar_one()
if request.form['caption'].strip() != '':
image.caption = request.form["caption"]
if request.form['alttext'].strip() != '':
image.alttext = request.form["alttext"]
if request.form['attribution'].strip() != '':
image.attribution = request.form["attribution"]
db.session.commit()
return ('', 204)
"""
Replaces mural thumbnail with selected image
Route:
/makethumbnail?muralid=m_id&imageid=i_id
"""
@app.route('/makethumbnail', methods=["POST"])
@debug_only
def makeThumbnail():
mural_id = request.args.get('muralid', None)
image_id = request.args.get('imageid', None)
# Delete references to current thumbnail
curr_thumbnail = db.session.execute(
db.select(Image)
.join(ImageMuralRelation, ImageMuralRelation.image_id == Image.id)
.where(ImageMuralRelation.mural_id == mural_id)
.filter(Image.ordering == 0)
).scalar_one()
db.session.execute(
db.delete(ImageMuralRelation)
.where(ImageMuralRelation.image_id == curr_thumbnail.id)
)