Public scripts for assorted web maintenance tasks used in my server.
Find a file
2025-02-10 22:36:32 +00:00
copy.sh fix: Make the shellcheck show most warnings more clearly 2025-02-07 16:20:39 +00:00
friendica-clean-database.sh fix: Reset auto-increments after deleting fields 2025-02-10 04:35:10 +00:00
friendica-compress-storage.sh fix: Improve the parsing of animated WebP files in case they're erased before testing 2025-02-10 15:15:46 +00:00
friendica-delete-old-users.sh fix: Add missing deletion of AP and Diaspora contacts 2025-02-10 15:44:01 +00:00
friendica-find-missing-servers.sh chore: Apply shfmt/shellcheck suggestions 2025-02-10 17:48:18 +00:00
friendica-fix-avatar-permissions.sh fix: Improve the parsing of animated WebP files in case they're erased before testing 2025-02-10 15:15:46 +00:00
friendica-non-follower-featured-posts.sh fix: Correct SQL syntax 2025-02-10 21:57:40 +00:00
friendica-remove-invalid-photos.sh fix: Correct the final loop and other missing issues 2025-02-10 22:36:32 +00:00
friendica-remove-old-photos-parallel.sh feat: Optimize loop 2025-02-09 02:30:01 +00:00
friendica-workerqueue.sh chore: Initial release 2025-01-24 19:16:21 +00:00
LICENSE feat: Make output more clear; add support for MariaDB and MySQL 2025-02-01 23:12:02 +00:00
media-optimize-local.sh fix: Improve the parsing of animated WebP files in case they're erased before testing 2025-02-10 15:15:46 +00:00
README.md chore: Add the actual README 2025-02-10 15:44:23 +00:00

public-scripts

Public scripts for assorted web maintenance tasks used in my server.

Description

As you can see, the vast majority of my scripts are used to handle my Friendica server, especially where the default PHP would take too long or not cover my usage case.

  • copy.sh: The "build script" specific to my usage case. It requires shfmt and shellcheck installed to clean up the scripts. Also, since my repository is on Document/Repositories/public-scripts and my actual scripts are on Document/Scripts, it copies the files there as well, with the placeholder URLs changed for my server's. Finally, it copies the relevant scripts to my cron folder if they exist, with output off (uncommenting the #&> /dev/null).
  • friendica-clean-database.sh: Basically, it does the same things that the included ExpirePosts, but with the option to be more aggressive than the defaults (deleting items that are 7 days old instead of 60, for example).
  • friendica-compress-storage.sh: It searches for any image files in the storage folder, and compresses them accordingly. Requires gifsicle, oxipng, jpegoptim, and cwebp installed.
  • friendica-delete-old-users.sh: Complimentary to the included RemoveUnusedContacts, it deletes any users that have not posted anything in the last year, and aren't in any user's contact list.
  • friendica-find-missing-servers.sh: Complimentary to the included RemoveUnusedContacts, it finds any offline servers and deletes any users from them, that aren't in any user's contact list.
  • friendica-fix-avatar-permissions.sh: Used to properly transfer avatars from storage to avatar with the correct permissions, and also compresses the files accordingly. Requires gifsicle, oxipng, jpegoptim, and cwebp installed.
  • friendica-non-followed-featured-posts.sh: If you accidentally configured Friendica to fetch featured posts from all interactors instead of known followers only, this script removes the related workers from the queue while leaving the known followers in place.
  • friendica-remove-invalid-photos.sh: Used to fix issues with blank images due to a botched transfer from storage to avatar, for example. It finds any broken items in the database and removes them for regeneration later. Requires curl.
  • friendica-remove-old-photos-parallel.sh: Finds any files in avatar that are no longer associated to any contact and deletes them.
  • friendica-workerqueue.sh: Just a SQL query that shows the worker queue sorted by type of job.
  • media-optimize-local.sh: For a given folder, it finds any image files within and compresses them. Requires gifsicle, oxipng, jpegoptim, and cwebp installed.

License

As most of these files are based on content from Friendica (especially its queries), the repository is also under the Affero General Public License.