Alex Cabal
|
cbf87487eb
|
Use ebook URL and not filesystem slug to identify ebooks in artworks
|
2024-01-23 23:11:30 -06:00 |
|
Mike Colagrosso
|
91ac96d784
|
Add status and user filtering to GetArtworksByArtist
|
2024-01-23 21:34:27 -06:00 |
|
Alex Cabal
|
770c010025
|
Add todo comment
|
2024-01-23 14:53:27 -06:00 |
|
Mike Colagrosso
|
53dc36d25a
|
Fix searching for words adjacent to an underscore in EbookWwwFilesystemPath
|
2024-01-23 13:54:41 -06:00 |
|
Alex Cabal
|
e3ea224256
|
Tweak style
|
2024-01-23 13:51:34 -06:00 |
|
Mike Colagrosso
|
93adef171f
|
s/GetArtworkByArtist/GetArtworksByArtist/
|
2024-01-23 13:46:12 -06:00 |
|
Mike Colagrosso
|
cad2f5f730
|
List artwork by artist via /artworks/<artist-name>
|
2024-01-23 13:46:12 -06:00 |
|
Alex Cabal
|
478eb200c8
|
Add rsquo to artwork filter query parsing
|
2024-01-22 13:33:27 -06:00 |
|
Mike Colagrosso
|
8a8692619c
|
Keep words with apostrophes intact when searching
The code will convert a search for:
`Whistler's Mother`
into:
`\b(whistler's|mother)\b`
Before this fix, it was:
`\b(whistler|s|mother)\b`
|
2024-01-22 09:57:33 -06:00 |
|
Mike Colagrosso
|
d8360b28ca
|
Replace PHP filtering with pure SQL (#323)
* Replace PHP filtering with pure SQL
|
2024-01-21 14:08:46 -06:00 |
|
Mike Colagrosso
|
67fcdedd08
|
Library::FilterArtwork(): Move sort logic to SQL, condense status condition (#321)
Move artwork sort logic to SQL
|
2024-01-19 23:24:22 -06:00 |
|
Alex Cabal
|
b96f7684ec
|
Fix artwork file upload logic
|
2024-01-19 11:55:43 -06:00 |
|
Alex Cabal
|
fe03f01393
|
Some more minor fixes, and checks for the temporary 'todo' tag
|
2024-01-18 21:31:36 -06:00 |
|
Alex Cabal
|
ca3fc6dbfd
|
Refactor HttpInput::Str and rename some exceptions for consistency
|
2024-01-18 11:21:05 -06:00 |
|
Alex Cabal
|
2b5f4f55a2
|
Style tweaks to artworks DB
|
2024-01-18 10:50:14 -06:00 |
|
Alex Cabal
|
c92ebb43c7
|
Make URL normalization method static to match museum method
|
2024-01-17 16:33:24 -06:00 |
|
Alex Cabal
|
f0bdd5596f
|
Rename ArtistAlternateSpellings to ArtistAlternateNames
|
2024-01-17 16:32:57 -06:00 |
|
Alex Cabal
|
f7ff76bf7d
|
Rename some Formatter functions for clarity
|
2024-01-17 16:04:30 -06:00 |
|
Alex Cabal
|
5ef6d3aef8
|
Artwork db code tweaks, also remove 'in use' as a status
|
2024-01-17 16:04:11 -06:00 |
|
Mike Colagrosso
|
4b2e02950f
|
Use ArtworkStatus enums when querying, not strings
|
2024-01-17 12:12:25 -06:00 |
|
Mike Colagrosso
|
986411e684
|
Add comment about handling uploaded file
|
2024-01-17 12:12:25 -06:00 |
|
Mike Colagrosso
|
31d927ce2b
|
Don't set the Updated field in the Artists table
The DB does it automatically
|
2024-01-17 12:12:25 -06:00 |
|
Mike Colagrosso
|
60c6142688
|
Delete unreferenced artists after updating artwork
Also clean up ArtistAlternateSpellings at the same time we delete an artist
|
2024-01-17 12:12:25 -06:00 |
|
Mike Colagrosso
|
8b62a9130c
|
Add ?ts=<updated-timestamp> to ImageUrl and ThumbUrl
Also add new ImageFsPath and ThumbFsPath properties for filesystem operations since they can't build on the Url properties.
|
2024-01-17 12:12:25 -06:00 |
|
Mike Colagrosso
|
9d5daac1cd
|
Allow submitters to filter for their unverified artwork
|
2024-01-17 12:12:25 -06:00 |
|
Mike Colagrosso
|
87ce048a0e
|
Handle HTTP PUT methods and update Artwork::Save() to match how Artwork::Create() handles images and thumbnails
|
2024-01-17 12:12:25 -06:00 |
|
Mike Colagrosso
|
987de26b73
|
Artwork: Add EditUrl property on the artwork page
|
2024-01-17 12:12:25 -06:00 |
|
Alex Cabal
|
2fc92b8768
|
Use instanceof instead of is_a() to check some classes
|
2024-01-16 13:32:58 -06:00 |
|
Alex Cabal
|
d3bde7d195
|
Use @inputmode="number" instead of <input type="number">
|
2024-01-16 00:19:43 -06:00 |
|
Mike Colagrosso
|
39db272cb1
|
Remove unused Artist::FindMatch
It was used by an obsolete script.
|
2024-01-15 22:59:45 -06:00 |
|
Alex Cabal
|
56ebdcab0f
|
Fix broken SQL query when adding artwork for existing artist
|
2024-01-15 22:17:30 -06:00 |
|
Alex Cabal
|
51672e7177
|
Add support for alternate spellings in new artwork form
|
2024-01-15 11:42:47 -06:00 |
|
Alex Cabal
|
83e6637c84
|
Remove default default
|
2024-01-15 00:22:16 -06:00 |
|
Alex Cabal
|
aab9ca8107
|
Pass enums directly to DB queries
|
2024-01-15 00:08:33 -06:00 |
|
Alex Cabal
|
e712cfbfcc
|
Support backed enums as a parameter type in the database
|
2024-01-15 00:07:57 -06:00 |
|
Alex Cabal
|
e52e09c959
|
Add value check in museum URL normalization
|
2024-01-15 00:04:23 -06:00 |
|
Alex Cabal
|
531e3600ea
|
Convert some constants to enums
|
2024-01-14 22:32:47 -06:00 |
|
Alex Cabal
|
793d832e92
|
Type check fixes
|
2024-01-13 16:53:31 -06:00 |
|
Alex Cabal
|
f992da84ae
|
Don't allow submitters to review their own artwork
|
2024-01-13 16:38:22 -06:00 |
|
Alex Cabal
|
47973970b6
|
Remove webumenia museum URL normalization
|
2024-01-13 14:51:34 -06:00 |
|
Alex Cabal
|
620826f3c8
|
Improve approved museum URL normalizing
|
2024-01-12 20:22:26 -06:00 |
|
Alex Cabal
|
16df5b29fe
|
Validate and normalize museum URLs when submitting artwork
|
2024-01-12 14:20:54 -06:00 |
|
Alex Cabal
|
ce8d5abe32
|
Increase max death year for artist
|
2024-01-12 11:42:51 -06:00 |
|
Alex Cabal
|
a3210031f4
|
Change default per page in artworks list
|
2024-01-12 11:42:36 -06:00 |
|
Alex Cabal
|
03821d6ad1
|
Tweak max artwork string length and max tags
|
2024-01-12 11:04:01 -06:00 |
|
Alex Cabal
|
a2de3c3ecb
|
Some type safety checks and rearrange file upload and mime type check code
|
2024-01-11 13:08:02 -06:00 |
|
Alex Cabal
|
57ed9c5c1e
|
Parse URL when checking for approved museums
|
2024-01-10 14:02:15 -06:00 |
|
Alex Cabal
|
60eb118524
|
Add Special Notes field to artwork
|
2024-01-10 13:41:15 -06:00 |
|
Alex Cabal
|
1237a65bc8
|
Convert use of gmdate() to DateTime
|
2024-01-10 11:25:56 -06:00 |
|
Mike Colagrosso
|
1adb90def1
|
Correct -overwrite_original exiftool flag
|
2024-01-09 23:20:01 -06:00 |
|