FairEmail/app/src/main/java/eu/faircode/email/DaoAttachment.java

183 lines
6.5 KiB
Java
Raw Normal View History

2018-08-03 12:07:51 +00:00
package eu.faircode.email;
/*
2018-08-14 05:53:24 +00:00
This file is part of FairEmail.
2018-08-03 12:07:51 +00:00
2018-08-14 05:53:24 +00:00
FairEmail is free software: you can redistribute it and/or modify
2018-08-03 12:07:51 +00:00
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
2018-10-29 10:46:49 +00:00
FairEmail is distributed in the hope that it will be useful,
2018-08-03 12:07:51 +00:00
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
2018-10-29 10:46:49 +00:00
along with FairEmail. If not, see <http://www.gnu.org/licenses/>.
2018-08-03 12:07:51 +00:00
2024-01-01 07:50:49 +00:00
Copyright 2018-2024 by Marcel Bokhorst (M66B)
2018-08-03 12:07:51 +00:00
*/
2023-12-09 21:27:09 +00:00
import android.database.Cursor;
2018-08-08 06:55:47 +00:00
import androidx.lifecycle.LiveData;
import androidx.room.Dao;
import androidx.room.Insert;
import androidx.room.Query;
import java.util.List;
2018-08-03 12:07:51 +00:00
@Dao
public interface DaoAttachment {
2018-08-13 08:58:36 +00:00
@Query("SELECT * FROM attachment" +
2018-08-23 06:33:27 +00:00
" WHERE message = :message" +
2020-08-07 13:23:07 +00:00
" ORDER BY sequence, subsequence")
2019-02-05 17:37:19 +00:00
LiveData<List<EntityAttachment>> liveAttachments(long message);
2018-08-13 06:23:46 +00:00
@Query("SELECT ifnull(MAX(sequence), 0)" +
2018-08-11 06:50:21 +00:00
" FROM attachment" +
" WHERE message = :message")
int getAttachmentSequence(long message);
2018-08-10 20:07:13 +00:00
2018-08-13 08:58:36 +00:00
@Query("SELECT * FROM attachment" +
2018-08-11 06:50:21 +00:00
" WHERE message = :message" +
2020-08-07 13:23:07 +00:00
" ORDER BY sequence, subsequence")
2018-08-11 06:50:21 +00:00
List<EntityAttachment> getAttachments(long message);
@Query("SELECT COUNT(*) FROM attachment" +
" WHERE message = :message")
int countAttachments(long message);
2019-03-14 07:18:42 +00:00
@Query("SELECT * FROM attachment" +
" WHERE id = :id")
EntityAttachment getAttachment(long id);
2018-08-13 08:58:36 +00:00
@Query("SELECT * FROM attachment" +
" WHERE message = :message" +
" AND sequence = :sequence")
EntityAttachment getAttachment(long message, int sequence);
2018-09-13 17:03:28 +00:00
@Query("SELECT * FROM attachment" +
" WHERE message = :message" +
2019-05-08 08:32:37 +00:00
" AND cid = :cid" +
" LIMIT 1")
2018-09-13 17:03:28 +00:00
EntityAttachment getAttachment(long message, String cid);
@Query("SELECT id FROM attachment" +
" WHERE available")
2023-12-09 21:27:09 +00:00
Cursor getAttachmentAvailable();
@Query("UPDATE attachment" +
" SET message = :message" +
2020-11-29 09:28:22 +00:00
" WHERE id = :id" +
2020-11-29 11:14:01 +00:00
" AND NOT (message IS :message)")
void setMessage(long id, long message);
2018-08-23 06:33:27 +00:00
@Query("UPDATE attachment" +
2019-01-16 18:27:03 +00:00
" SET error = NULL, progress = :progress, available = 0" +
2020-11-29 09:28:22 +00:00
" WHERE id = :id" +
2020-11-29 11:14:01 +00:00
" AND (error IS NOT NULL OR NOT (progress IS :progress) OR NOT (available IS 0))")
2018-08-13 14:44:47 +00:00
void setProgress(long id, Integer progress);
2018-08-05 06:18:43 +00:00
2019-01-06 10:15:06 +00:00
@Query("UPDATE attachment" +
2019-01-16 18:27:03 +00:00
" SET size = :size, error = NULL, progress = NULL, available = 1" +
2020-11-29 09:28:22 +00:00
" WHERE id = :id" +
2020-11-29 11:14:01 +00:00
" AND (NOT (size IS :size) OR error IS NOT NULL OR progress IS NOT NULL OR NOT (available IS 1))")
void setDownloaded(long id, Long size);
2019-01-06 10:15:06 +00:00
@Query("UPDATE attachment" +
2019-07-10 08:57:51 +00:00
" SET size = NULL, progress = NULL, available = :available" +
2020-11-29 09:28:22 +00:00
" WHERE id = :id" +
2020-11-29 11:14:01 +00:00
" AND (size IS NOT NULL OR progress IS NOT NULL OR NOT (available IS :available))")
2019-07-10 08:57:51 +00:00
void setAvailable(long id, boolean available);
@Query("UPDATE attachment" +
" SET size = NULL, progress = NULL, available = 0" +
2020-11-29 09:28:22 +00:00
" WHERE message = :message" +
2020-11-29 11:14:01 +00:00
" AND (size IS NOT NULL OR progress IS NOT NULL OR NOT (available IS 0))")
void resetAvailable(long message);
2019-01-16 18:27:03 +00:00
@Query("UPDATE attachment" +
" SET error = :error, progress = NULL, available = 0" +
2020-11-29 09:28:22 +00:00
" WHERE id = :id" +
2020-11-29 11:14:01 +00:00
" AND (NOT (error IS :error) OR progress IS NOT NULL OR NOT (available IS 0))")
2019-01-16 18:27:03 +00:00
void setError(long id, String error);
2022-03-11 07:14:08 +00:00
@Query("UPDATE attachment" +
" SET error = :error" +
" WHERE id = :id" +
" AND NOT (error IS :error)")
void setWarning(long id, String error);
2022-11-08 12:33:26 +00:00
@Query("UPDATE attachment" +
" SET name = :name, type = :type, size= :size" +
" WHERE id = :id" +
" AND NOT (name IS name AND type IS :type AND size IS :size)")
void setName(long id, String name, String type, Long size);
2021-03-02 17:00:55 +00:00
@Query("UPDATE attachment" +
" SET type = :type" +
" WHERE id = :id" +
" AND NOT (type IS :type)")
void setType(long id, String type);
2020-04-08 07:12:36 +00:00
@Query("UPDATE attachment" +
" SET disposition = :disposition, cid = :cid" +
2020-11-29 09:28:22 +00:00
" WHERE id = :id" +
" AND NOT (disposition IS :disposition AND cid IS :cid)")
void setDisposition(long id, String disposition, String cid);
2020-04-08 07:12:36 +00:00
2019-01-06 12:18:17 +00:00
@Query("UPDATE attachment" +
" SET cid = :cid" +
2020-11-29 09:28:22 +00:00
" WHERE id = :id" +
2022-02-12 19:39:49 +00:00
" AND NOT (cid IS :cid)" +
" AND NOT (related IS :related)")
void setCid(long id, String cid, Boolean related);
2019-01-06 12:18:17 +00:00
@Query("UPDATE attachment" +
" SET encryption = :encryption" +
" WHERE id = :id" +
" AND NOT (encryption IS :encryption)")
void setEncryption(long id, Integer encryption);
2022-02-15 12:57:55 +00:00
@Query("UPDATE attachment" +
" SET media_uri = :media_uri" +
" WHERE id = :id" +
" AND NOT (media_uri IS :media_uri)")
void setMediaUri(long id, String media_uri);
@Query("UPDATE attachment" +
" SET available = 0" +
2020-11-29 11:14:01 +00:00
" WHERE NOT (available IS 0)" +
2020-11-29 09:28:22 +00:00
" AND EXISTS" +
2021-10-21 08:38:42 +00:00
" (SELECT * FROM attachment AS a" +
" JOIN message ON message.id = a.message" +
" JOIN folder ON folder.id = message.folder" +
2021-10-21 08:38:42 +00:00
" JOIN account ON account.id = message.account" +
" WHERE a.id = attachment.id" +
" AND a.available" +
" AND message.ui_seen" +
" AND NOT message.ui_flagged" +
" AND encryption IS NULL" +
2021-10-21 08:38:42 +00:00
" AND message.received < :now - (folder.sync_days + 1) * 24 * 3600 * 1000" +
" AND account.pop = " + EntityAccount.TYPE_IMAP + ")")
int purge(long now);
2018-08-12 08:16:41 +00:00
@Insert
2018-08-03 12:07:51 +00:00
long insertAttachment(EntityAttachment attachment);
2018-08-03 19:12:19 +00:00
2018-08-23 06:33:27 +00:00
@Query("DELETE FROM attachment" +
" WHERE id = :id")
2018-08-14 14:16:29 +00:00
int deleteAttachment(long id);
2019-11-01 09:25:57 +00:00
2022-03-21 08:42:44 +00:00
@Query("DELETE FROM attachment" +
" WHERE message = :message")
int deleteAttachments(long message);
2019-11-01 09:25:57 +00:00
@Query("DELETE FROM attachment" +
2020-11-24 08:11:24 +00:00
" WHERE message = :message" +
2021-08-29 20:02:15 +00:00
" AND (encryption IS NULL OR encryption NOT IN (:keep))")
int deleteAttachments(long message, int[] keep);
2018-08-03 12:07:51 +00:00
}