Question

We have a CMS where people can upload images. We currently don't offer a delete functionality, but it'd be nice to offer one. The problem with offering the delete functionality is that people might delete an image they don't need, but that same image might be used in someone else's article. Because people select the images with a WYSIWYG browser editor, we can not really easily track which image is used I think.

Anyone have a good solution on how to enable deletions without breaking other articles?

Was it helpful?

Solution

If you stored the image location in the database and the users picked from the database generated list you could add a reference count to the image record. Increment it when the image is added to the page, decrement it when it's removed.

Then on your image management pages only enable delete if the reference count is 0.

Though if the users can edit their own HTML there's nothing you can do to stop them (other than education) referencing images directly.

OTHER TIPS

A little analysis of the post data could possibly yield some image URIs, which you could use to modify the reference count (would work for direct edits too that way)?

As well as reference counting, if you don't do this already, you could ringfence the uploaded media on a per-user basis - thus if they delete something they think they don't need, it's not going to destroy other user's work?

Neither of these are particularly elegant ... but neither is the problem :P.

Although it really depends on how you've implemented your CMS solution, it is probably a good idea if you keep track of what articles are referencing your images. Then, whenever someones deletes the image from their article, you know to only delete the image file itself if you have zero references remaining.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top