All Downloads are FREE. Search and download functionalities are using the official Maven repository.

chat.dim.sqlite.account.UserTable Maven / Gradle / Ivy

/* license: https://mit-license.org
 *
 *  DIMP : Decentralized Instant Messaging Protocol
 *
 *                                Written in 2022 by Moky 
 *
 * ==============================================================================
 * The MIT License (MIT)
 *
 * Copyright (c) 2022 Albert Moky
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in all
 * copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 * ==============================================================================
 */
package chat.dim.sqlite.account;

import java.util.HashMap;
import java.util.List;
import java.util.Map;

import chat.dim.dbi.UserDBI;
import chat.dim.protocol.ID;
import chat.dim.sql.SQLConditions;
import chat.dim.sqlite.DataRowExtractor;
import chat.dim.sqlite.DataTableHandler;
import chat.dim.sqlite.DatabaseConnector;

public class UserTable extends DataTableHandler implements UserDBI {

    private DataRowExtractor extractor;

    public UserTable(DatabaseConnector connector) {
        super(connector);
        extractor = null;
    }

    @Override
    protected DataRowExtractor getDataRowExtractor() {
        return extractor;
    }

    private boolean prepare() {
        if (extractor == null) {
            // create table if not exists
            String[] fields = {
                    "id INTEGER PRIMARY KEY AUTOINCREMENT",
                    "user VARCHAR(64)",
                    "chosen BIT",
            };
            if (!createTable(T_USER, fields)) {
                // db error
                return false;
            }
            // prepare data row extractor
            extractor = (resultSet, index) -> {
                String user = resultSet.getString("user");
                return ID.parse(user);
            };
        }
        return true;
    }
    private static final String[] SELECT_COLUMNS = {"user"};
    private static final String[] INSERT_COLUMNS = {"user", "chosen"};
    private static final String T_USER = "t_local_user";

    @Override
    public List getLocalUsers() {
        if (!prepare()) {
            // db error
            return null;
        }

        return select(T_USER, SELECT_COLUMNS, null,
                null, null, "chosen DESC", -1, 0);
    }

    @Override
    public boolean saveLocalUsers(List users) {
        List localUsers = getLocalUsers();
        if (localUsers == null) {
            // db error
            return false;
        }
        // 1. delete users not contain in current users
        for (ID identifier : localUsers) {
            if (users.contains(identifier)) {
                continue;
            }
            SQLConditions conditions = new SQLConditions();
            conditions.addCondition(null, "user", "=", identifier.toString());
            if (delete(T_USER, conditions) < 0) {
                // db error
                return false;
            }
        }
        // 2. add new users
        for (ID identifier : users) {
            if (localUsers.contains(identifier)) {
                continue;
            }

            Object[] values = {identifier.toString(), 0};
            if (insert(T_USER, INSERT_COLUMNS, values) < 0) {
                // db error
                return false;
            }
        }
        // 3. check chosen user
        if (users.size() == 0) {
            // all users removed?
            return true;
        }
        ID first = users.get(0);
        if (localUsers.size() == 0 || !localUsers.get(0).equals(first)) {
            // first user changed
            Map values = new HashMap<>();
            values.put("chosen", 0);
            if (update(T_USER, values, null) < 0) {
                // db error
                return false;
            }
        }
        // update first user to be chosen
        Map values = new HashMap<>();
        values.put("chosen", 1);
        SQLConditions conditions = new SQLConditions();
        conditions.addCondition(null, "user", "=", first.toString());
        return update(T_USER, values, null) > 0;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy