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

73 lines
2.2 KiB
Java
Raw Normal View History

package eu.faircode.email;
/*
This file is part of FairEmail.
FairEmail 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.
2018-10-29 10:46:49 +00:00
FairEmail 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
2018-10-29 10:46:49 +00:00
along with FairEmail. If not, see <http://www.gnu.org/licenses/>.
2021-01-01 07:56:36 +00:00
Copyright 2018-2021 by Marcel Bokhorst (M66B)
*/
import androidx.lifecycle.LiveData;
import androidx.room.Dao;
import androidx.room.Insert;
import androidx.room.Query;
import androidx.room.Update;
import java.util.List;
@Dao
public interface DaoAnswer {
2019-04-20 08:35:30 +00:00
@Query("SELECT * FROM answer" +
2019-04-27 13:27:23 +00:00
" WHERE :all OR NOT hide" +
2020-01-16 17:45:17 +00:00
" ORDER BY -favorite, name COLLATE NOCASE")
2019-04-20 08:35:30 +00:00
List<EntityAnswer> getAnswers(boolean all);
2018-09-14 11:33:22 +00:00
2020-04-12 10:39:37 +00:00
@Query("SELECT * FROM answer" +
" WHERE favorite = :favorite" +
" AND NOT hide" +
" ORDER BY name COLLATE NOCASE")
List<EntityAnswer> getAnswersByFavorite(boolean favorite);
2018-08-27 09:39:27 +00:00
@Query("SELECT * FROM answer WHERE id = :id")
EntityAnswer getAnswer(long id);
2020-09-13 16:50:47 +00:00
@Query("SELECT * FROM answer" +
" WHERE standard AND NOT hide")
EntityAnswer getStandardAnswer();
2019-04-27 13:27:23 +00:00
@Query("SELECT * FROM answer" +
2020-01-16 17:45:17 +00:00
" ORDER BY -favorite, name COLLATE NOCASE")
LiveData<List<EntityAnswer>> liveAnswers();
2019-05-21 13:43:17 +00:00
@Query("SELECT COUNT(*) FROM answer" +
" WHERE NOT hide")
2020-03-01 10:04:31 +00:00
Integer getAnswerCount();
2019-05-21 13:43:17 +00:00
@Insert
long insertAnswer(EntityAnswer answer);
@Update
int updateAnswer(EntityAnswer answer);
2020-11-29 11:14:01 +00:00
@Query("UPDATE answer SET hide = :hide WHERE id = :id AND NOT (hide IS :hide)")
2019-05-03 19:30:11 +00:00
int setAnswerHidden(long id, boolean hide);
2020-11-29 11:14:01 +00:00
@Query("UPDATE answer SET standard = 0 WHERE NOT (standard IS 0)")
2020-09-13 16:50:47 +00:00
void resetStandard();
@Query("DELETE FROM answer WHERE id = :id")
void deleteAnswer(long id);
}