123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269 |
- /*
- *openPilotLog - A FOSS Pilot Logbook Application
- *Copyright (C) 2020-2022 Felix Turowsky
- *
- *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 <https://www.gnu.org/licenses/>.
- */
- #include "pilotswidget.h"
- #include "ui_pilotswidget.h"
- #include "src/gui/dialogues/newpilotdialog.h"
- #include "src/opl.h"
- #include "src/database/database.h"
- #include "src/database/row.h"
- #include "src/functions/time.h"
- #include "src/classes/settings.h"
- PilotsWidget::PilotsWidget(QWidget *parent) :
- QWidget(parent),
- ui(new Ui::PilotsWidget)
- {
- ui->setupUi(this);
- ui->tableView->setMinimumWidth(this->width()/2);
- ui->stackedWidget->setMinimumWidth(this->width()/2);
- setupModelAndView();
- }
- PilotsWidget::~PilotsWidget()
- {
- delete ui;
- }
- void PilotsWidget::setupModelAndView()
- {
- model = new QSqlTableModel(this);
- model->setTable(QStringLiteral("viewPilots"));
- model->setFilter(QStringLiteral("ID > 1")); // Don't show self
- model->select();
- view = ui->tableView;
- view->setModel(model);
- view->setSelectionBehavior(QAbstractItemView::SelectRows);
- view->setSelectionMode(QAbstractItemView::SingleSelection);
- view->setEditTriggers(QAbstractItemView::NoEditTriggers);
- view->horizontalHeader()->setStretchLastSection(QHeaderView::Stretch);
- view->hideColumn(0);
- view->resizeColumnsToContents();
- view->verticalHeader()->hide();
- view->setAlternatingRowColors(true);
- view->setSortingEnabled(true);
- sortColumn = Settings::read(Settings::UserData::PilotSortColumn).toInt();
- view->sortByColumn(sortColumn, Qt::AscendingOrder);
- view->show();
- selectionModel = view->selectionModel();
- connectSignalsAndSlots();
- }
- void PilotsWidget::connectSignalsAndSlots()
- {
- QObject::connect(ui->tableView->selectionModel(), &QItemSelectionModel::selectionChanged,
- this, &PilotsWidget::tableView_selectionChanged);
- QObject::connect(ui->tableView->horizontalHeader(), &QHeaderView::sectionClicked,
- this, &PilotsWidget::tableView_headerClicked);
- }
- void PilotsWidget::setUiEnabled(bool enabled)
- {
- ui->tableView->setEnabled(enabled);
- ui->newPilotButton->setEnabled(enabled);
- ui->deletePilotButton->setEnabled(enabled);
- ui->pilotSearchLineEdit->setEnabled(enabled);
- ui->pilotsSearchComboBox->setEnabled(enabled);
- }
- void PilotsWidget::changeEvent(QEvent *event)
- {
- if (event != nullptr)
- if(event->type() == QEvent::LanguageChange)
- ui->retranslateUi(this);
- }
- void PilotsWidget::onPilotsWidget_settingChanged(SettingsWidget::SettingSignal signal)
- {
- if (signal == SettingsWidget::PilotsWidget)
- setupModelAndView();
- }
- void PilotsWidget::onPilotsWidget_databaseUpdated()
- {
- refreshView();
- }
- void PilotsWidget::on_pilotSearchLineEdit_textChanged(const QString &arg1)
- {
- model->setFilter(QLatin1Char('\"') + ui->pilotsSearchComboBox->currentText()
- + QLatin1String("\" LIKE '%") + arg1
- + QLatin1String("%' AND ID > 1"));
- }
- void PilotsWidget::tableView_selectionChanged()
- {
- if (this->findChild<NewPilotDialog*>() != nullptr) {
- delete this->findChild<NewPilotDialog*>();
- }
- auto selection = ui->tableView->selectionModel();
- selectedPilots.clear();
- for (const auto& row : selection->selectedRows()) {
- selectedPilots.append(row.data().toInt());
- DEB << "Selected Tails(s) with ID: " << selectedPilots;
- }
- if(selectedPilots.length() == 1) {
- NewPilotDialog np = NewPilotDialog(selectedPilots.first(), this);
- np.setWindowFlag(Qt::Widget);
- ui->stackedWidget->addWidget(&np);
- ui->stackedWidget->setCurrentWidget(&np);
- setUiEnabled(false);
- np.exec();
- refreshView();
- setUiEnabled(true);
- }
- }
- void PilotsWidget::tableView_headerClicked(int column)
- {
- sortColumn = column;
- Settings::write(Settings::UserData::PilotSortColumn, column);
- }
- void PilotsWidget::on_newPilotButton_clicked()
- {
- NewPilotDialog np = NewPilotDialog(this);
- np.exec();
- refreshView();
- }
- void PilotsWidget::on_deletePilotButton_clicked()
- {
- if (selectedPilots.length() == 0) {
- INFO(tr("No Pilot selected."));
- } else if (selectedPilots.length() > 1) {
- WARN(tr("Deleting multiple entries is currently not supported"));
- /// [F] to do: for (const auto& row_id : selectedPilots) { do batchDelete }
- /// I am not sure if enabling this functionality for this widget is a good idea.
- /// On the one hand, deleting many entries could be useful in a scenario where
- /// for example, the user has changed airlines and does not want to have his 'old'
- /// colleagues polluting his logbook anymore.
- /// On the other hand we could run into issues with foreign key constraints on the
- /// flights table (see on_delete_unsuccessful) below.
- /// I think batch-editing should be implemented at some point, but batch-deleting should not.
- } else if (selectedPilots.length() == 1) {
- auto entry = DB->getPilotEntry(selectedPilots.first());
- QMessageBox confirm(this);
- confirm.setStandardButtons(QMessageBox::Yes | QMessageBox::No);
- confirm.setDefaultButton(QMessageBox::No);
- confirm.setIcon(QMessageBox::Question);
- confirm.setWindowTitle(tr("Delete Pilot"));
- confirm.setText(tr("You are deleting the following pilot:<br><br><b><tt>"
- "%1</b></tt><br><br>Are you sure?").arg(getPilotName(entry)));
- if (confirm.exec() == QMessageBox::Yes) {
- if(!DB->remove(entry))
- onDeleteUnsuccessful();
- }
- }
- refreshView();
- ui->stackedWidget->setCurrentIndex(0);
- ui->pilotSearchLineEdit->setText(QString());
- }
- /*!
- * \brief Informs the user that deleting a database entry has been unsuccessful
- *
- * \details Normally, when one of these entries can not be deleted, it is because of
- * a [foreign key constraint](https://sqlite.org/foreignkeys.html), meaning that a flight
- * is associated with the Pilot that was supposed to be deleted as Pilot-in-command.
- *
- * This function is used to inform the user and give hints on how to solve the problem.
- */
- void PilotsWidget::onDeleteUnsuccessful()
- {
- const QList<int> foreign_key_constraints = DB->getForeignKeyConstraints(selectedPilots.first(),
- OPL::DbTable::Pilots);
- QList<OPL::FlightEntry> constrained_flights;
- for (const auto &row_id : foreign_key_constraints) {
- constrained_flights.append(DB->getFlightEntry(row_id));
- }
- if (constrained_flights.isEmpty()) {
- WARN(tr("<br>Unable to delete.<br><br>The following error has ocurred:<br>%1"
- ).arg(DB->lastError.text()));
- return;
- } else {
- QString constrained_flights_string;
- for (int i=0; i<constrained_flights.length(); i++) {
- constrained_flights_string.append(getFlightSummary(constrained_flights[i]) + QStringLiteral(" <br>"));
- if (i>10) {
- constrained_flights_string.append("<br>[...]<br>");
- break;
- }
- }
- WARN(tr("Unable to delete.<br><br>"
- "This is most likely the case because a flight exists with the Pilot "
- "you are trying to delete as PIC.<br><br>"
- "%1 flight(s) with this pilot have been found:<br><br><br><b><tt>"
- "%2"
- "</b></tt><br><br>You have to change or remove the conflicting flight(s) "
- "before removing this pilot from the database.<br><br>"
- ).arg(QString::number(constrained_flights.length()),
- constrained_flights_string));
- }
- }
- void PilotsWidget::repopulateModel()
- {
- // unset the current model and delete it to avoid leak
- view->setModel(nullptr);
- delete model;
- // create a new model and populate it
- model = new QSqlTableModel(this);
- setupModelAndView();
- connectSignalsAndSlots();
- }
- const QString PilotsWidget::getPilotName(const OPL::PilotEntry &pilot)
- {
- if (!pilot.isValid())
- return QString();
- return pilot.getData().value(OPL::Db::PILOTS_LASTNAME).toString() + QLatin1String(", ")
- + pilot.getData().value(OPL::Db::PILOTS_FIRSTNAME).toString();
- }
- const QString PilotsWidget::getFlightSummary(const OPL::FlightEntry &flight) const
- {
- if(!flight.isValid())
- return QString();
- auto tableData = flight.getData();
- QString flight_summary;
- auto space = QLatin1Char(' ');
- flight_summary.append(tableData.value(OPL::Db::FLIGHTS_DOFT).toString() + space);
- flight_summary.append(tableData.value(OPL::Db::FLIGHTS_DEPT).toString() + space);
- flight_summary.append(OPL::Time::toString(tableData.value(OPL::Db::FLIGHTS_TOFB).toInt())
- + space);
- flight_summary.append(OPL::Time::toString(tableData.value(OPL::Db::FLIGHTS_TONB).toInt())
- + space);
- flight_summary.append(tableData.value(OPL::Db::FLIGHTS_DEST).toString());
- return flight_summary;
- }
|