/* * Copyright (C) 2017 Schürmann & Breitmoser GbR * * This program 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. * * This program 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 this program. If not, see . */ package org.sufficientlysecure.keychain.daos; import android.content.Context; import com.squareup.sqldelight.SqlDelightQuery; import org.sufficientlysecure.keychain.KeychainDatabase; import org.sufficientlysecure.keychain.OverriddenWarningsModel.DeleteByIdentifier; import org.sufficientlysecure.keychain.OverriddenWarningsModel.InsertIdentifier; import org.sufficientlysecure.keychain.model.OverriddenWarning; public class OverriddenWarningsDao extends AbstractDao { public static OverriddenWarningsDao create(Context context) { KeychainDatabase database = KeychainDatabase.getInstance(context); DatabaseNotifyManager databaseNotifyManager = DatabaseNotifyManager.create(context); return new OverriddenWarningsDao(database, databaseNotifyManager); } private OverriddenWarningsDao(KeychainDatabase db, DatabaseNotifyManager databaseNotifyManager) { super(db, databaseNotifyManager); } public boolean isWarningOverridden(String identifier) { SqlDelightQuery query = OverriddenWarning.FACTORY.selectCountByIdentifier(identifier); Long result = mapSingleRow(query, OverriddenWarning.FACTORY.selectCountByIdentifierMapper()::map); return result != null && result > 0; } public void putOverride(String identifier) { InsertIdentifier statement = new InsertIdentifier(getWritableDb()); statement.bind(identifier); statement.executeInsert(); } public void deleteOverride(String identifier) { DeleteByIdentifier statement = new DeleteByIdentifier(getWritableDb()); statement.bind(identifier); statement.executeInsert(); } }