tdesktop/Telegram/SourceFiles/boxes/peers/edit_contact_box.cpp

290 lines
7.3 KiB
C++
Raw Normal View History

2019-06-10 15:47:22 +00:00
/*
This file is part of Telegram Desktop,
the official desktop application for the Telegram messaging service.
For license and copyright information please follow this link:
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
*/
2019-06-12 14:13:49 +00:00
#include "boxes/peers/edit_contact_box.h"
2019-06-10 15:47:22 +00:00
#include "data/data_user.h"
#include "data/data_session.h"
#include "boxes/peers/edit_peer_common.h"
2019-06-10 15:47:22 +00:00
#include "ui/wrap/vertical_layout.h"
#include "ui/widgets/labels.h"
#include "ui/widgets/checkbox.h"
#include "ui/widgets/fields/input_field.h"
2021-07-26 06:32:16 +00:00
#include "ui/text/format_values.h" // Ui::FormatPhone
2019-06-12 13:26:04 +00:00
#include "ui/text/text_utilities.h"
2019-06-10 15:47:22 +00:00
#include "info/profile/info_profile_cover.h"
#include "lang/lang_keys.h"
#include "window/window_controller.h"
2019-06-12 13:26:04 +00:00
#include "ui/toast/toast.h"
2019-07-24 11:45:24 +00:00
#include "main/main_session.h"
2019-06-10 15:47:22 +00:00
#include "apiwrap.h"
#include "api/api_peer_photo.h"
2019-09-18 11:19:05 +00:00
#include "styles/style_layers.h"
2019-06-10 15:47:22 +00:00
#include "styles/style_boxes.h"
#include "styles/style_info.h"
namespace {
QString UserPhone(not_null<UserData*> user) {
const auto phone = user->phone();
return phone.isEmpty()
? user->owner().findContactPhone(peerToUser(user->id))
2019-06-10 15:47:22 +00:00
: phone;
}
void SendRequest(
2019-09-18 11:19:05 +00:00
QPointer<Ui::GenericBox> box,
not_null<UserData*> user,
bool sharePhone,
const QString &first,
const QString &last,
const QString &phone,
Fn<void()> done) {
const auto wasContact = user->isContact();
using Flag = MTPcontacts_AddContact::Flag;
user->session().api().request(MTPcontacts_AddContact(
MTP_flags(sharePhone
? Flag::f_add_phone_privacy_exception
: Flag(0)),
user->inputUser,
MTP_string(first),
MTP_string(last),
MTP_string(phone)
)).done([=](const MTPUpdates &result) {
user->setName(
first,
last,
user->nameOrPhone,
user->username());
user->session().api().applyUpdates(result);
2024-03-17 09:17:34 +00:00
if (const auto settings = user->barSettings()) {
const auto flags = PeerBarSetting::AddContact
| PeerBarSetting::BlockContact
| PeerBarSetting::ReportSpam;
user->setBarSettings(*settings & ~flags);
}
if (box) {
if (!wasContact) {
box->showToast(
tr::lng_new_contact_add_done(tr::now, lt_user, first));
}
box->closeBox();
}
done();
}).send();
}
class Controller {
2019-06-12 14:13:49 +00:00
public:
Controller(
2019-09-18 11:19:05 +00:00
not_null<Ui::GenericBox*> box,
not_null<Window::SessionController*> window,
2019-06-12 14:13:49 +00:00
not_null<UserData*> user);
void prepare();
2019-06-12 14:13:49 +00:00
private:
void setupContent();
void setupCover();
void setupNameFields();
void setupWarning();
void setupSharePhoneNumber();
2019-06-12 14:13:49 +00:00
void initNameFields(
not_null<Ui::InputField*> first,
not_null<Ui::InputField*> last,
bool inverted);
2019-09-18 11:19:05 +00:00
not_null<Ui::GenericBox*> _box;
not_null<Window::SessionController*> _window;
2019-06-12 14:13:49 +00:00
not_null<UserData*> _user;
Ui::Checkbox *_sharePhone = nullptr;
2019-06-12 14:13:49 +00:00
QString _phone;
Fn<void()> _focus;
Fn<void()> _save;
Fn<std::optional<QImage>()> _updatedPersonalPhoto;
2019-06-10 15:47:22 +00:00
2019-06-12 14:13:49 +00:00
};
Controller::Controller(
2019-09-18 11:19:05 +00:00
not_null<Ui::GenericBox*> box,
not_null<Window::SessionController*> window,
2019-06-10 15:47:22 +00:00
not_null<UserData*> user)
2019-06-12 14:13:49 +00:00
: _box(box)
, _window(window)
2019-06-10 15:47:22 +00:00
, _user(user)
, _phone(UserPhone(user)) {
}
void Controller::prepare() {
2019-06-10 15:47:22 +00:00
setupContent();
_box->setTitle(_user->isContact()
? tr::lng_edit_contact_title()
: tr::lng_enter_contact_data());
2019-06-10 15:47:22 +00:00
_box->addButton(tr::lng_box_done(), _save);
_box->addButton(tr::lng_cancel(), [=] { _box->closeBox(); });
_box->setFocusCallback(_focus);
2019-06-10 15:47:22 +00:00
}
void Controller::setupContent() {
2019-06-12 14:13:49 +00:00
setupCover();
setupNameFields();
setupWarning();
setupSharePhoneNumber();
2019-06-10 15:47:22 +00:00
}
void Controller::setupCover() {
2022-12-19 11:48:24 +00:00
const auto cover = _box->addRow(
2019-06-12 14:13:49 +00:00
object_ptr<Info::Profile::Cover>(
_box,
_window,
2022-12-19 11:48:24 +00:00
_user,
Info::Profile::Cover::Role::EditContact,
2019-06-12 14:13:49 +00:00
(_phone.isEmpty()
2019-06-18 12:16:43 +00:00
? tr::lng_contact_mobile_hidden()
2021-07-26 06:32:16 +00:00
: rpl::single(Ui::FormatPhone(_phone)))),
2022-12-19 11:48:24 +00:00
style::margins());
_updatedPersonalPhoto = [=] { return cover->updatedPersonalPhoto(); };
2019-06-10 15:47:22 +00:00
}
void Controller::setupNameFields() {
2019-06-10 15:47:22 +00:00
const auto inverted = langFirstNameGoesSecond();
2019-06-12 14:13:49 +00:00
const auto first = _box->addRow(
2019-06-10 15:47:22 +00:00
object_ptr<Ui::InputField>(
2019-06-12 14:13:49 +00:00
_box,
2019-06-10 15:47:22 +00:00
st::defaultInputField,
tr::lng_signup_firstname(),
2019-06-10 15:47:22 +00:00
_user->firstName),
st::addContactFieldMargin);
auto preparedLast = object_ptr<Ui::InputField>(
2019-06-12 14:13:49 +00:00
_box,
2019-06-10 15:47:22 +00:00
st::defaultInputField,
tr::lng_signup_lastname(),
2019-06-10 15:47:22 +00:00
_user->lastName);
const auto last = inverted
2019-06-12 14:13:49 +00:00
? _box->insertRow(
_box->rowsCount() - 1,
2019-06-10 15:47:22 +00:00
std::move(preparedLast),
st::addContactFieldMargin)
2019-06-12 14:13:49 +00:00
: _box->addRow(std::move(preparedLast), st::addContactFieldMargin);
2019-06-10 15:47:22 +00:00
initNameFields(first, last, inverted);
}
void Controller::initNameFields(
2019-06-10 15:47:22 +00:00
not_null<Ui::InputField*> first,
not_null<Ui::InputField*> last,
bool inverted) {
2019-06-12 14:13:49 +00:00
const auto getValue = [](not_null<Ui::InputField*> field) {
return TextUtilities::SingleLine(field->getLastText()).trimmed();
2019-06-10 15:47:22 +00:00
};
2019-06-12 14:13:49 +00:00
if (inverted) {
_box->setTabOrder(last, first);
2019-06-12 14:13:49 +00:00
}
_focus = [=] {
2019-06-12 14:13:49 +00:00
const auto firstValue = getValue(first);
const auto lastValue = getValue(last);
2019-06-10 15:47:22 +00:00
const auto empty = firstValue.isEmpty() && lastValue.isEmpty();
const auto focusFirst = (inverted != empty);
(focusFirst ? first : last)->setFocusFast();
};
_save = [=] {
2019-06-12 14:13:49 +00:00
const auto firstValue = getValue(first);
const auto lastValue = getValue(last);
2019-06-10 15:47:22 +00:00
const auto empty = firstValue.isEmpty() && lastValue.isEmpty();
if (empty) {
_focus();
2019-06-10 15:47:22 +00:00
(inverted ? last : first)->showError();
return;
}
const auto user = _user;
const auto personal = _updatedPersonalPhoto
? _updatedPersonalPhoto()
: std::nullopt;
const auto done = [=] {
if (personal) {
if (personal->isNull()) {
user->session().api().peerPhoto().clearPersonal(user);
} else {
user->session().api().peerPhoto().upload(
user,
{ base::duplicate(*personal) });
}
}
};
SendRequest(
2019-09-13 12:22:54 +00:00
Ui::MakeWeak(_box),
user,
_sharePhone && _sharePhone->checked(),
firstValue,
lastValue,
_phone,
done);
2019-06-10 15:47:22 +00:00
};
2019-06-12 14:13:49 +00:00
const auto submit = [=] {
const auto firstValue = first->getLastText().trimmed();
const auto lastValue = last->getLastText().trimmed();
const auto empty = firstValue.isEmpty() && lastValue.isEmpty();
if (inverted ? last->hasFocus() : empty) {
first->setFocus();
} else if (inverted ? empty : first->hasFocus()) {
last->setFocus();
} else {
_save();
}
};
first->submits() | rpl::start_with_next(submit, first->lifetime());
last->submits() | rpl::start_with_next(submit, last->lifetime());
first->setMaxLength(Ui::EditPeer::kMaxUserFirstLastName);
first->setMaxLength(Ui::EditPeer::kMaxUserFirstLastName);
}
2019-06-12 14:13:49 +00:00
void Controller::setupWarning() {
if (_user->isContact() || !_phone.isEmpty()) {
2019-06-12 14:13:49 +00:00
return;
}
_box->addRow(
2019-06-10 15:47:22 +00:00
object_ptr<Ui::FlatLabel>(
2019-06-12 14:13:49 +00:00
_box,
tr::lng_contact_phone_after(tr::now, lt_user, _user->shortName()),
2019-06-10 15:47:22 +00:00
st::changePhoneLabel),
st::addContactWarningMargin);
2019-06-12 14:13:49 +00:00
}
void Controller::setupSharePhoneNumber() {
2024-03-17 09:17:34 +00:00
const auto settings = _user->barSettings();
if (!settings
2024-03-17 09:17:34 +00:00
|| !((*settings) & PeerBarSetting::NeedContactsException)) {
return;
}
_sharePhone = _box->addRow(
object_ptr<Ui::Checkbox>(
_box,
2019-06-19 15:09:03 +00:00
tr::lng_contact_share_phone(tr::now),
true,
st::defaultBoxCheckbox),
st::addContactWarningMargin);
_box->addRow(
object_ptr<Ui::FlatLabel>(
_box,
tr::lng_contact_phone_will_be_shared(tr::now, lt_user, _user->shortName()),
st::changePhoneLabel),
st::addContactWarningMargin);
}
2019-06-12 14:13:49 +00:00
} // namespace
void EditContactBox(
2019-09-18 11:19:05 +00:00
not_null<Ui::GenericBox*> box,
not_null<Window::SessionController*> window,
2019-06-12 14:13:49 +00:00
not_null<UserData*> user) {
box->lifetime().make_state<Controller>(box, window, user)->prepare();
2019-06-12 14:13:49 +00:00
}