package eu.faircode.email; /* This file is part of Safe email. Safe email is free software: you can redistribute it and/or modify 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. NetGuard is distributed in the hope that it will be useful, 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 along with NetGuard. If not, see . Copyright 2018 by Marcel Bokhorst (M66B) */ import java.util.List; import androidx.lifecycle.LiveData; import androidx.room.Dao; import androidx.room.Insert; import androidx.room.Query; import androidx.room.Update; @Dao public interface DaoFolder { @Query("SELECT * FROM folder WHERE account = :account") List getFolders(long account); @Query("SELECT * FROM folder WHERE account = :account AND synchronize = :synchronize") List getFolders(long account, boolean synchronize); @Query("SELECT * FROM folder WHERE account = :account AND type = '" + EntityFolder.USER + "'") List getUserFolders(long account); @Query("SELECT folder.*, account.name AS accountName" + ", COUNT(message.id) AS messages" + ", SUM(CASE WHEN message.ui_seen = 0 THEN 1 ELSE 0 END) AS unseen" + " FROM folder" + " LEFT JOIN account ON account.id = folder.account" + " LEFT JOIN message ON message.folder = folder.id AND NOT message.ui_hide" + " WHERE folder.account = :account OR folder.account IS NULL" + " GROUP BY folder.id") LiveData> liveFolders(long account); @Query("SELECT folder.* FROM folder WHERE folder.id = :id") LiveData liveFolder(long id); @Query("SELECT folder.*, account.name AS accountName" + ", COUNT(message.id) AS messages" + ", SUM(CASE WHEN message.ui_seen = 0 THEN 1 ELSE 0 END) AS unseen" + " FROM folder" + " LEFT JOIN account ON account.id = folder.account" + " LEFT JOIN message ON message.folder = folder.id AND NOT message.ui_hide" + " WHERE folder.id = :id") LiveData liveFolderEx(long id); @Query("SELECT * FROM folder WHERE id = :id") EntityFolder getFolder(Long id); @Query("SELECT * FROM folder WHERE account = :account AND name = :name") EntityFolder getFolderByName(Long account, String name); @Query("SELECT folder.* FROM folder" + " WHERE account = :account AND type = :type") EntityFolder getFolderByType(long account, String type); // For debug/crash info @Query("SELECT folder.* FROM folder" + " JOIN account ON account.id = folder.account" + " WHERE `primary` AND type = '" + EntityFolder.DRAFTS + "'") EntityFolder getPrimaryDrafts(); @Query("SELECT * FROM folder WHERE type = '" + EntityFolder.OUTBOX + "'") EntityFolder getOutbox(); @Insert long insertFolder(EntityFolder folder); @Update void updateFolder(EntityFolder folder); @Query("DELETE FROM folder WHERE account= :account AND name = :name") void deleteFolder(Long account, String name); @Query("DELETE FROM folder" + " WHERE account= :account" + " AND type <> '" + EntityFolder.INBOX + "'" + " AND type <> '" + EntityFolder.USER + "'") int deleteSystemFolders(Long account); }