aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiquel Lionel <lionel@les-miquelots.net>2024-09-22 21:28:39 +0200
committerMiquel Lionel <lionel@les-miquelots.net>2024-09-26 00:11:29 +0200
commite00a6b481cd61ca2969f271d309dba2c20648c92 (patch)
tree1a49a06c895620fff30450283083283344e17b19
parentd20553a111af4fb69e19ba8caeb0044035086c43 (diff)
downloaddino-dot-cache-avatars.tar.gz
dino-dot-cache-avatars.zip
Store avatars in the user's cache directory.dot-cache-avatars
- Not anymore in ~/.local/share, where media files are stored. - Already existing ~/.local/share/dino/avatars directory will be moved to ~/.cache/dino/avatars - If both directories already exists, the old one (in ~/.local/share) is removed.
-rw-r--r--libdino/src/service/avatar_manager.vala32
-rw-r--r--libdino/src/util/util.vala32
2 files changed, 62 insertions, 2 deletions
diff --git a/libdino/src/service/avatar_manager.vala b/libdino/src/service/avatar_manager.vala
index f99f37d4..76e92978 100644
--- a/libdino/src/service/avatar_manager.vala
+++ b/libdino/src/service/avatar_manager.vala
@@ -37,8 +37,36 @@ public class AvatarManager : StreamInteractionModule, Object {
private AvatarManager(StreamInteractor stream_interactor, Database db) {
this.stream_interactor = stream_interactor;
this.db = db;
- this.folder = Path.build_filename(Dino.get_storage_dir(), "avatars");
- DirUtils.create_with_parents(this.folder, 0700);
+ this.folder = Path.build_filename(Dino.get_cache_dir(), "avatars");
+ string old_avatars_folder = Path.build_filename(Dino.get_storage_dir(), "avatars");
+ if (FileUtils.test(old_avatars_folder, FileTest.IS_DIR)) {
+ if (FileUtils.test(this.folder, FileTest.IS_DIR)){
+ var res = DirUtils.remove(old_avatars_folder);
+ if (res == -1){ // directory not empty
+ File old_avatars = File.new_for_path(old_avatars_folder);
+ try {
+ old_avatars.trash(); // https://specifications.freedesktop.org/trash-spec/latest/
+ debug("Old avatar folder %s trashed.", old_avatars_folder);
+ } catch (Error e) {
+ debug("Error trashing old avatar folder %s: %s\nFalling back to GLib method.", old_avatars_folder, e.message);
+ Dino.recurse_delete_folder(old_avatars,"",null); // fallback to GLib
+ }
+ }
+ else {
+ debug("Old avatar directory %s removed.", old_avatars_folder);
+ }
+ }
+ else{
+ File old_avatars = File.new_for_path(old_avatars_folder);
+ File new_avatars = File.new_for_path(this.folder);
+ DirUtils.create_with_parents(Dino.get_cache_dir(), 0700);
+ old_avatars.move(new_avatars, FileCopyFlags.NONE, null);
+ debug("Avatars directory %s moved to %s", old_avatars_folder, this.folder);
+ }
+ }
+ else {
+ DirUtils.create_with_parents(this.folder, 0700);
+ }
stream_interactor.account_added.connect(on_account_added);
stream_interactor.module_manager.initialize_account_modules.connect((_, modules) => {
diff --git a/libdino/src/util/util.vala b/libdino/src/util/util.vala
index 553ebbfe..1a95cb36 100644
--- a/libdino/src/util/util.vala
+++ b/libdino/src/util/util.vala
@@ -69,6 +69,38 @@ public static string get_storage_dir() {
return Path.build_filename(Environment.get_user_data_dir(), "dino");
}
+public static string get_cache_dir() {
+ return Path.build_filename(Environment.get_user_cache_dir(), "dino");
+}
+
+public void recurse_delete_folder(File file, string space = "", Cancellable? cancellable = null) throws Error {
+ FileEnumerator enumerator = file.enumerate_children (
+ "standard::*",
+ FileQueryInfoFlags.NOFOLLOW_SYMLINKS,
+ cancellable);
+
+ FileInfo info = null;
+ while (cancellable.is_cancelled () == false && ((info = enumerator.next_file (cancellable)) != null)) {
+ if (info.get_file_type () == FileType.DIRECTORY) {
+ File subdir = file.resolve_relative_path (info.get_name ());
+ recurse_delete_folder(subdir, space + " ", cancellable);
+ } else {
+ FileUtils.remove(file.get_path() + "/" + info.get_name());
+ }
+ }
+ var res = DirUtils.remove(file.get_path());
+ if (res == -1){
+ debug("Error: Folder %s not removed using GLib. Check permissions or ownership ?", file.get_path());
+ }
+ else {
+ debug("Folder %s removed using GLib.", file.get_path());
+ }
+
+ if (cancellable.is_cancelled ()) {
+ throw new IOError.CANCELLED ("I/O Error: Recursive deletion of folder %s was cancelled.", file.get_path());
+ }
+}
+
[CCode (cname = "dino_gettext", cheader_filename = "dino_i18n.h")]
public static extern unowned string _(string s);