mirror of https://github.com/procxx/kepka.git
Add phone number privacy.
Also move calls peer-to-peer privacy inside calls privacy.
This commit is contained in:
parent
f5c79cb1b6
commit
8660f976a9
|
@ -355,9 +355,11 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
||||||
"lng_settings_privacy_title" = "Privacy";
|
"lng_settings_privacy_title" = "Privacy";
|
||||||
"lng_settings_last_seen" = "Last seen";
|
"lng_settings_last_seen" = "Last seen";
|
||||||
"lng_settings_calls" = "Voice calls";
|
"lng_settings_calls" = "Voice calls";
|
||||||
"lng_settings_calls_peer_to_peer" = "Peer-to-peer in calls";
|
"lng_settings_calls_peer_to_peer_title" = "Peer-to-peer";
|
||||||
|
"lng_settings_calls_peer_to_peer_button" = "Use peer-to-peer with";
|
||||||
"lng_settings_groups_invite" = "Groups";
|
"lng_settings_groups_invite" = "Groups";
|
||||||
"lng_settings_group_privacy_about" = "Change who can add you to groups and channels.";
|
"lng_settings_group_privacy_about" = "Change who can add you to groups and channels.";
|
||||||
|
"lng_settings_phone_number_privacy" = "Phone number";
|
||||||
"lng_settings_forwards_privacy" = "Forwarded messages";
|
"lng_settings_forwards_privacy" = "Forwarded messages";
|
||||||
"lng_settings_profile_photo_privacy" = "Profile photo";
|
"lng_settings_profile_photo_privacy" = "Profile photo";
|
||||||
"lng_settings_sessions_about" = "Control your sessions on other devices.";
|
"lng_settings_sessions_about" = "Control your sessions on other devices.";
|
||||||
|
@ -604,6 +606,15 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
||||||
"lng_edit_privacy_exceptions_count#other" = "{count} users";
|
"lng_edit_privacy_exceptions_count#other" = "{count} users";
|
||||||
"lng_edit_privacy_exceptions_add" = "Add users or groups";
|
"lng_edit_privacy_exceptions_add" = "Add users or groups";
|
||||||
|
|
||||||
|
"lng_edit_privacy_phone_number_title" = "Phone number privacy";
|
||||||
|
"lng_edit_privacy_phone_number_header" = "Who can see your phone number";
|
||||||
|
"lng_edit_privacy_phone_number_warning" = "Important: blabla.";
|
||||||
|
"lng_edit_privacy_phone_number_always_empty" = "Always share with";
|
||||||
|
"lng_edit_privacy_phone_number_never_empty" = "Never share with";
|
||||||
|
"lng_edit_privacy_phone_number_exceptions" = "These settings will override the values above.";
|
||||||
|
"lng_edit_privacy_phone_number_always_title" = "Always share with";
|
||||||
|
"lng_edit_privacy_phone_number_never_title" = "Never share with";
|
||||||
|
|
||||||
"lng_edit_privacy_lastseen_title" = "Last seen privacy";
|
"lng_edit_privacy_lastseen_title" = "Last seen privacy";
|
||||||
"lng_edit_privacy_lastseen_header" = "Who can see your last seen time";
|
"lng_edit_privacy_lastseen_header" = "Who can see your last seen time";
|
||||||
"lng_edit_privacy_lastseen_warning" = "Important: you won't be able to see Last Seen times for people with whom you don't share your Last Seen time. Approximate last seen will be shown instead (recently, within a week, within a month).";
|
"lng_edit_privacy_lastseen_warning" = "Important: you won't be able to see Last Seen times for people with whom you don't share your Last Seen time. Approximate last seen will be shown instead (recently, within a week, within a month).";
|
||||||
|
|
|
@ -173,6 +173,7 @@ MTPInputPrivacyKey ApiWrap::Privacy::Input(Key key) {
|
||||||
switch (key) {
|
switch (key) {
|
||||||
case Privacy::Key::Calls: return MTP_inputPrivacyKeyPhoneCall();
|
case Privacy::Key::Calls: return MTP_inputPrivacyKeyPhoneCall();
|
||||||
case Privacy::Key::Invites: return MTP_inputPrivacyKeyChatInvite();
|
case Privacy::Key::Invites: return MTP_inputPrivacyKeyChatInvite();
|
||||||
|
case Privacy::Key::PhoneNumber: return MTP_inputPrivacyKeyPhoneNumber();
|
||||||
case Privacy::Key::LastSeen:
|
case Privacy::Key::LastSeen:
|
||||||
return MTP_inputPrivacyKeyStatusTimestamp();
|
return MTP_inputPrivacyKeyStatusTimestamp();
|
||||||
case Privacy::Key::CallsPeer2Peer:
|
case Privacy::Key::CallsPeer2Peer:
|
||||||
|
@ -189,6 +190,8 @@ std::optional<ApiWrap::Privacy::Key> ApiWrap::Privacy::KeyFromMTP(
|
||||||
mtpTypeId type) {
|
mtpTypeId type) {
|
||||||
using Key = Privacy::Key;
|
using Key = Privacy::Key;
|
||||||
switch (type) {
|
switch (type) {
|
||||||
|
case mtpc_privacyKeyPhoneNumber:
|
||||||
|
case mtpc_inputPrivacyKeyPhoneNumber: return Key::PhoneNumber;
|
||||||
case mtpc_privacyKeyStatusTimestamp:
|
case mtpc_privacyKeyStatusTimestamp:
|
||||||
case mtpc_inputPrivacyKeyStatusTimestamp: return Key::LastSeen;
|
case mtpc_inputPrivacyKeyStatusTimestamp: return Key::LastSeen;
|
||||||
case mtpc_privacyKeyChatInvite:
|
case mtpc_privacyKeyChatInvite:
|
||||||
|
|
|
@ -62,6 +62,7 @@ class ApiWrap : public MTP::Sender, private base::Subscriber {
|
||||||
public:
|
public:
|
||||||
struct Privacy {
|
struct Privacy {
|
||||||
enum class Key {
|
enum class Key {
|
||||||
|
PhoneNumber,
|
||||||
LastSeen,
|
LastSeen,
|
||||||
Calls,
|
Calls,
|
||||||
Invites,
|
Invites,
|
||||||
|
|
|
@ -100,7 +100,7 @@ std::unique_ptr<PrivacyExceptionsBoxController::Row> PrivacyExceptionsBoxControl
|
||||||
|
|
||||||
} // namespace
|
} // namespace
|
||||||
|
|
||||||
LangKey EditPrivacyBox::Controller::optionLabelKey(Option option) {
|
LangKey EditPrivacyController::optionLabelKey(Option option) {
|
||||||
switch (option) {
|
switch (option) {
|
||||||
case Option::Everyone: return lng_edit_privacy_everyone;
|
case Option::Everyone: return lng_edit_privacy_everyone;
|
||||||
case Option::Contacts: return lng_edit_privacy_contacts;
|
case Option::Contacts: return lng_edit_privacy_contacts;
|
||||||
|
@ -111,7 +111,7 @@ LangKey EditPrivacyBox::Controller::optionLabelKey(Option option) {
|
||||||
|
|
||||||
EditPrivacyBox::EditPrivacyBox(
|
EditPrivacyBox::EditPrivacyBox(
|
||||||
QWidget*,
|
QWidget*,
|
||||||
std::unique_ptr<Controller> controller,
|
std::unique_ptr<EditPrivacyController> controller,
|
||||||
const Value &value)
|
const Value &value)
|
||||||
: _controller(std::move(controller))
|
: _controller(std::move(controller))
|
||||||
, _value(value) {
|
, _value(value) {
|
||||||
|
@ -350,6 +350,10 @@ void EditPrivacyBox::setupContent() {
|
||||||
addLabel(content, _controller->exceptionsDescription());
|
addLabel(content, _controller->exceptionsDescription());
|
||||||
AddSkip(content);
|
AddSkip(content);
|
||||||
|
|
||||||
|
if (auto below = _controller->setupBelowWidget(content)) {
|
||||||
|
content->add(std::move(below));
|
||||||
|
}
|
||||||
|
|
||||||
addButton(langFactory(lng_settings_save), [=] {
|
addButton(langFactory(lng_settings_save), [=] {
|
||||||
const auto someAreDisallowed = (_value.option != Option::Everyone)
|
const auto someAreDisallowed = (_value.option != Option::Everyone)
|
||||||
|| !_value.never.empty();
|
|| !_value.never.empty();
|
||||||
|
|
|
@ -25,71 +25,79 @@ template <typename Widget>
|
||||||
class SlideWrap;
|
class SlideWrap;
|
||||||
} // namespace Ui
|
} // namespace Ui
|
||||||
|
|
||||||
class EditPrivacyBox : public BoxContent, private MTP::Sender {
|
class EditPrivacyBox;
|
||||||
|
|
||||||
|
class EditPrivacyController {
|
||||||
public:
|
public:
|
||||||
using Value = ApiWrap::Privacy;
|
using Key = ApiWrap::Privacy::Key;
|
||||||
using Option = Value::Option;
|
using Option = ApiWrap::Privacy::Option;
|
||||||
enum class Exception {
|
enum class Exception {
|
||||||
Always,
|
Always,
|
||||||
Never,
|
Never,
|
||||||
};
|
};
|
||||||
|
|
||||||
class Controller {
|
[[nodiscard]] virtual Key key() = 0;
|
||||||
public:
|
[[nodiscard]] virtual MTPInputPrivacyKey apiKey() = 0;
|
||||||
using Key = ApiWrap::Privacy::Key;
|
|
||||||
|
|
||||||
[[nodiscard]] virtual Key key() = 0;
|
[[nodiscard]] virtual QString title() = 0;
|
||||||
[[nodiscard]] virtual MTPInputPrivacyKey apiKey() = 0;
|
[[nodiscard]] virtual bool hasOption(Option option) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
[[nodiscard]] virtual LangKey optionsTitleKey() = 0;
|
||||||
|
[[nodiscard]] virtual LangKey optionLabelKey(Option option);
|
||||||
|
[[nodiscard]] virtual rpl::producer<QString> warning() {
|
||||||
|
return rpl::never<QString>();
|
||||||
|
}
|
||||||
|
[[nodiscard]] virtual LangKey exceptionButtonTextKey(
|
||||||
|
Exception exception) = 0;
|
||||||
|
[[nodiscard]] virtual QString exceptionBoxTitle(
|
||||||
|
Exception exception) = 0;
|
||||||
|
[[nodiscard]] virtual auto exceptionsDescription()
|
||||||
|
-> rpl::producer<QString> = 0;
|
||||||
|
|
||||||
[[nodiscard]] virtual QString title() = 0;
|
[[nodiscard]] virtual object_ptr<Ui::RpWidget> setupAboveWidget(
|
||||||
[[nodiscard]] virtual bool hasOption(Option option) {
|
not_null<QWidget*> parent,
|
||||||
return true;
|
rpl::producer<Option> option) {
|
||||||
}
|
return { nullptr };
|
||||||
[[nodiscard]] virtual LangKey optionsTitleKey() = 0;
|
}
|
||||||
[[nodiscard]] virtual LangKey optionLabelKey(Option option);
|
[[nodiscard]] virtual object_ptr<Ui::RpWidget> setupBelowWidget(
|
||||||
[[nodiscard]] virtual rpl::producer<QString> warning() {
|
not_null<QWidget*> parent) {
|
||||||
return rpl::never<QString>();
|
return { nullptr };
|
||||||
}
|
}
|
||||||
[[nodiscard]] virtual LangKey exceptionButtonTextKey(
|
|
||||||
Exception exception) = 0;
|
|
||||||
[[nodiscard]] virtual QString exceptionBoxTitle(
|
|
||||||
Exception exception) = 0;
|
|
||||||
[[nodiscard]] virtual auto exceptionsDescription()
|
|
||||||
-> rpl::producer<QString> = 0;
|
|
||||||
|
|
||||||
[[nodiscard]] virtual object_ptr<Ui::RpWidget> setupAboveWidget(
|
virtual void confirmSave(
|
||||||
not_null<QWidget*> parent,
|
bool someAreDisallowed,
|
||||||
rpl::producer<Option> option) {
|
FnMut<void()> saveCallback) {
|
||||||
return { nullptr };
|
saveCallback();
|
||||||
}
|
}
|
||||||
|
|
||||||
virtual void confirmSave(
|
virtual ~EditPrivacyController() = default;
|
||||||
bool someAreDisallowed,
|
|
||||||
FnMut<void()> saveCallback) {
|
|
||||||
saveCallback();
|
|
||||||
}
|
|
||||||
|
|
||||||
virtual ~Controller() = default;
|
protected:
|
||||||
|
EditPrivacyBox *view() const {
|
||||||
|
return _view;
|
||||||
|
}
|
||||||
|
|
||||||
protected:
|
private:
|
||||||
EditPrivacyBox *view() const {
|
void setView(EditPrivacyBox *box) {
|
||||||
return _view;
|
_view = box;
|
||||||
}
|
}
|
||||||
|
|
||||||
private:
|
EditPrivacyBox *_view = nullptr;
|
||||||
void setView(EditPrivacyBox *box) {
|
|
||||||
_view = box;
|
|
||||||
}
|
|
||||||
|
|
||||||
EditPrivacyBox *_view = nullptr;
|
friend class EditPrivacyBox;
|
||||||
|
|
||||||
friend class EditPrivacyBox;
|
};
|
||||||
|
|
||||||
};
|
class EditPrivacyBox : public BoxContent, private MTP::Sender {
|
||||||
|
public:
|
||||||
|
using Value = ApiWrap::Privacy;
|
||||||
|
using Option = Value::Option;
|
||||||
|
using Exception = EditPrivacyController::Exception;
|
||||||
|
|
||||||
EditPrivacyBox(
|
EditPrivacyBox(
|
||||||
QWidget*,
|
QWidget*,
|
||||||
std::unique_ptr<Controller> controller,
|
std::unique_ptr<EditPrivacyController> controller,
|
||||||
const Value &value);
|
const Value &value);
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
@ -111,7 +119,7 @@ private:
|
||||||
void editExceptions(Exception exception, Fn<void()> done);
|
void editExceptions(Exception exception, Fn<void()> done);
|
||||||
std::vector<not_null<PeerData*>> &exceptions(Exception exception);
|
std::vector<not_null<PeerData*>> &exceptions(Exception exception);
|
||||||
|
|
||||||
std::unique_ptr<Controller> _controller;
|
std::unique_ptr<EditPrivacyController> _controller;
|
||||||
Value _value;
|
Value _value;
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
|
@ -30,6 +30,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
||||||
#include "window/section_widget.h"
|
#include "window/section_widget.h"
|
||||||
#include "boxes/peer_list_controllers.h"
|
#include "boxes/peer_list_controllers.h"
|
||||||
#include "boxes/confirm_box.h"
|
#include "boxes/confirm_box.h"
|
||||||
|
#include "settings/settings_privacy_security.h"
|
||||||
#include "styles/style_history.h"
|
#include "styles/style_history.h"
|
||||||
#include "styles/style_boxes.h"
|
#include "styles/style_boxes.h"
|
||||||
#include "styles/style_settings.h"
|
#include "styles/style_settings.h"
|
||||||
|
@ -295,6 +296,49 @@ std::unique_ptr<PeerListRow> BlockedBoxController::createRow(
|
||||||
return std::move(row);
|
return std::move(row);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ApiWrap::Privacy::Key PhoneNumberPrivacyController::key() {
|
||||||
|
return Key::PhoneNumber;
|
||||||
|
}
|
||||||
|
|
||||||
|
MTPInputPrivacyKey PhoneNumberPrivacyController::apiKey() {
|
||||||
|
return MTP_inputPrivacyKeyPhoneNumber();
|
||||||
|
}
|
||||||
|
|
||||||
|
QString PhoneNumberPrivacyController::title() {
|
||||||
|
return lang(lng_edit_privacy_phone_number_title);
|
||||||
|
}
|
||||||
|
|
||||||
|
LangKey PhoneNumberPrivacyController::optionsTitleKey() {
|
||||||
|
return lng_edit_privacy_phone_number_header;
|
||||||
|
}
|
||||||
|
|
||||||
|
rpl::producer<QString> PhoneNumberPrivacyController::warning() {
|
||||||
|
return Lang::Viewer(lng_edit_privacy_phone_number_warning);
|
||||||
|
}
|
||||||
|
|
||||||
|
LangKey PhoneNumberPrivacyController::exceptionButtonTextKey(
|
||||||
|
Exception exception) {
|
||||||
|
switch (exception) {
|
||||||
|
case Exception::Always:
|
||||||
|
return lng_edit_privacy_phone_number_always_empty;
|
||||||
|
case Exception::Never:
|
||||||
|
return lng_edit_privacy_phone_number_never_empty;
|
||||||
|
}
|
||||||
|
Unexpected("Invalid exception value.");
|
||||||
|
}
|
||||||
|
|
||||||
|
QString PhoneNumberPrivacyController::exceptionBoxTitle(Exception exception) {
|
||||||
|
switch (exception) {
|
||||||
|
case Exception::Always: return lang(lng_edit_privacy_phone_number_always_title);
|
||||||
|
case Exception::Never: return lang(lng_edit_privacy_phone_number_never_title);
|
||||||
|
}
|
||||||
|
Unexpected("Invalid exception value.");
|
||||||
|
}
|
||||||
|
|
||||||
|
rpl::producer<QString> PhoneNumberPrivacyController::exceptionsDescription() {
|
||||||
|
return Lang::Viewer(lng_edit_privacy_phone_number_exceptions);
|
||||||
|
}
|
||||||
|
|
||||||
ApiWrap::Privacy::Key LastSeenPrivacyController::key() {
|
ApiWrap::Privacy::Key LastSeenPrivacyController::key() {
|
||||||
return Key::LastSeen;
|
return Key::LastSeen;
|
||||||
}
|
}
|
||||||
|
@ -439,6 +483,24 @@ rpl::producer<QString> CallsPrivacyController::exceptionsDescription() {
|
||||||
return Lang::Viewer(lng_edit_privacy_calls_exceptions);
|
return Lang::Viewer(lng_edit_privacy_calls_exceptions);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
object_ptr<Ui::RpWidget> CallsPrivacyController::setupBelowWidget(
|
||||||
|
not_null<QWidget*> parent) {
|
||||||
|
auto result = object_ptr<Ui::VerticalLayout>(parent);
|
||||||
|
const auto content = result.data();
|
||||||
|
|
||||||
|
AddDivider(content);
|
||||||
|
AddSkip(content);
|
||||||
|
AddSubsectionTitle(content, lng_settings_calls_peer_to_peer_title);
|
||||||
|
Settings::AddPrivacyButton(
|
||||||
|
content,
|
||||||
|
lng_settings_calls_peer_to_peer_button,
|
||||||
|
ApiWrap::Privacy::Key::CallsPeer2Peer,
|
||||||
|
[] { return std::make_unique<CallsPeer2PeerPrivacyController>(); });
|
||||||
|
AddSkip(content);
|
||||||
|
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
ApiWrap::Privacy::Key CallsPeer2PeerPrivacyController::key() {
|
ApiWrap::Privacy::Key CallsPeer2PeerPrivacyController::key() {
|
||||||
return Key::CallsPeer2Peer;
|
return Key::CallsPeer2Peer;
|
||||||
}
|
}
|
||||||
|
|
|
@ -37,7 +37,24 @@ private:
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
class LastSeenPrivacyController : public EditPrivacyBox::Controller {
|
class PhoneNumberPrivacyController : public EditPrivacyController {
|
||||||
|
public:
|
||||||
|
using Option = EditPrivacyBox::Option;
|
||||||
|
using Exception = EditPrivacyBox::Exception;
|
||||||
|
|
||||||
|
Key key() override;
|
||||||
|
MTPInputPrivacyKey apiKey() override;
|
||||||
|
|
||||||
|
QString title() override;
|
||||||
|
LangKey optionsTitleKey() override;
|
||||||
|
rpl::producer<QString> warning() override;
|
||||||
|
LangKey exceptionButtonTextKey(Exception exception) override;
|
||||||
|
QString exceptionBoxTitle(Exception exception) override;
|
||||||
|
rpl::producer<QString> exceptionsDescription() override;
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
|
class LastSeenPrivacyController : public EditPrivacyController {
|
||||||
public:
|
public:
|
||||||
using Option = EditPrivacyBox::Option;
|
using Option = EditPrivacyBox::Option;
|
||||||
using Exception = EditPrivacyBox::Exception;
|
using Exception = EditPrivacyBox::Exception;
|
||||||
|
@ -56,7 +73,7 @@ public:
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
class GroupsInvitePrivacyController : public EditPrivacyBox::Controller {
|
class GroupsInvitePrivacyController : public EditPrivacyController {
|
||||||
public:
|
public:
|
||||||
using Option = EditPrivacyBox::Option;
|
using Option = EditPrivacyBox::Option;
|
||||||
using Exception = EditPrivacyBox::Exception;
|
using Exception = EditPrivacyBox::Exception;
|
||||||
|
@ -73,7 +90,7 @@ public:
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
class CallsPrivacyController : public EditPrivacyBox::Controller {
|
class CallsPrivacyController : public EditPrivacyController {
|
||||||
public:
|
public:
|
||||||
using Option = EditPrivacyBox::Option;
|
using Option = EditPrivacyBox::Option;
|
||||||
using Exception = EditPrivacyBox::Exception;
|
using Exception = EditPrivacyBox::Exception;
|
||||||
|
@ -87,9 +104,12 @@ public:
|
||||||
QString exceptionBoxTitle(Exception exception) override;
|
QString exceptionBoxTitle(Exception exception) override;
|
||||||
rpl::producer<QString> exceptionsDescription() override;
|
rpl::producer<QString> exceptionsDescription() override;
|
||||||
|
|
||||||
|
object_ptr<Ui::RpWidget> setupBelowWidget(
|
||||||
|
not_null<QWidget*> parent) override;
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
class CallsPeer2PeerPrivacyController : public EditPrivacyBox::Controller {
|
class CallsPeer2PeerPrivacyController : public EditPrivacyController {
|
||||||
public:
|
public:
|
||||||
using Option = EditPrivacyBox::Option;
|
using Option = EditPrivacyBox::Option;
|
||||||
using Exception = EditPrivacyBox::Exception;
|
using Exception = EditPrivacyBox::Exception;
|
||||||
|
@ -108,7 +128,7 @@ public:
|
||||||
};
|
};
|
||||||
|
|
||||||
class ForwardsPrivacyController
|
class ForwardsPrivacyController
|
||||||
: public EditPrivacyBox::Controller
|
: public EditPrivacyController
|
||||||
, private HistoryView::SimpleElementDelegate {
|
, private HistoryView::SimpleElementDelegate {
|
||||||
public:
|
public:
|
||||||
using Option = EditPrivacyBox::Option;
|
using Option = EditPrivacyBox::Option;
|
||||||
|
@ -140,7 +160,7 @@ private:
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
class ProfilePhotoPrivacyController : public EditPrivacyBox::Controller {
|
class ProfilePhotoPrivacyController : public EditPrivacyController {
|
||||||
public:
|
public:
|
||||||
using Option = EditPrivacyBox::Option;
|
using Option = EditPrivacyBox::Option;
|
||||||
using Exception = EditPrivacyBox::Exception;
|
using Exception = EditPrivacyBox::Exception;
|
||||||
|
|
|
@ -38,6 +38,8 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
||||||
namespace Settings {
|
namespace Settings {
|
||||||
namespace {
|
namespace {
|
||||||
|
|
||||||
|
using Privacy = ApiWrap::Privacy;
|
||||||
|
|
||||||
rpl::producer<> PasscodeChanges() {
|
rpl::producer<> PasscodeChanges() {
|
||||||
return rpl::single(
|
return rpl::single(
|
||||||
rpl::empty_value()
|
rpl::empty_value()
|
||||||
|
@ -46,12 +48,10 @@ rpl::producer<> PasscodeChanges() {
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
|
|
||||||
QString PrivacyBase(
|
QString PrivacyBase(Privacy::Key key, Privacy::Option option) {
|
||||||
ApiWrap::Privacy::Key key,
|
|
||||||
ApiWrap::Privacy::Option option) {
|
|
||||||
const auto phrase = [&] {
|
const auto phrase = [&] {
|
||||||
using Key = ApiWrap::Privacy::Key;
|
using Key = Privacy::Key;
|
||||||
using Option = ApiWrap::Privacy::Option;
|
using Option = Privacy::Option;
|
||||||
switch (key) {
|
switch (key) {
|
||||||
case Key::CallsPeer2Peer:
|
case Key::CallsPeer2Peer:
|
||||||
switch (option) {
|
switch (option) {
|
||||||
|
@ -75,6 +75,27 @@ QString PrivacyBase(
|
||||||
return lang(phrase);
|
return lang(phrase);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
rpl::producer<QString> PrivacyString(Privacy::Key key) {
|
||||||
|
Auth().api().reloadPrivacy(key);
|
||||||
|
return Auth().api().privacyValue(
|
||||||
|
key
|
||||||
|
) | rpl::map([=](const Privacy &value) {
|
||||||
|
auto add = QStringList();
|
||||||
|
if (const auto never = ExceptionUsersCount(value.never)) {
|
||||||
|
add.push_back("-" + QString::number(never));
|
||||||
|
}
|
||||||
|
if (const auto always = ExceptionUsersCount(value.always)) {
|
||||||
|
add.push_back("+" + QString::number(always));
|
||||||
|
}
|
||||||
|
if (!add.isEmpty()) {
|
||||||
|
return PrivacyBase(key, value.option)
|
||||||
|
+ " (" + add.join(", ") + ")";
|
||||||
|
} else {
|
||||||
|
return PrivacyBase(key, value.option);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
void SetupPrivacy(not_null<Ui::VerticalLayout*> container) {
|
void SetupPrivacy(not_null<Ui::VerticalLayout*> container) {
|
||||||
AddSkip(container, st::settingsPrivacySkip);
|
AddSkip(container, st::settingsPrivacySkip);
|
||||||
AddSubsectionTitle(container, lng_settings_privacy_title);
|
AddSubsectionTitle(container, lng_settings_privacy_title);
|
||||||
|
@ -97,69 +118,33 @@ void SetupPrivacy(not_null<Ui::VerticalLayout*> container) {
|
||||||
initBox));
|
initBox));
|
||||||
});
|
});
|
||||||
|
|
||||||
using Privacy = ApiWrap::Privacy;
|
using Key = Privacy::Key;
|
||||||
const auto PrivacyString = [](Privacy::Key key) {
|
const auto add = [&](LangKey label, Key key, auto controller) {
|
||||||
Auth().api().reloadPrivacy(key);
|
AddPrivacyButton(container, label, key, controller);
|
||||||
return Auth().api().privacyValue(
|
|
||||||
key
|
|
||||||
) | rpl::map([=](const Privacy &value) {
|
|
||||||
auto add = QStringList();
|
|
||||||
if (const auto never = ExceptionUsersCount(value.never)) {
|
|
||||||
add.push_back("-" + QString::number(never));
|
|
||||||
}
|
|
||||||
if (const auto always = ExceptionUsersCount(value.always)) {
|
|
||||||
add.push_back("+" + QString::number(always));
|
|
||||||
}
|
|
||||||
if (!add.isEmpty()) {
|
|
||||||
return PrivacyBase(key, value.option)
|
|
||||||
+ " (" + add.join(", ") + ")";
|
|
||||||
} else {
|
|
||||||
return PrivacyBase(key, value.option);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
};
|
|
||||||
const auto add = [&](LangKey label, Privacy::Key key, auto controller) {
|
|
||||||
const auto shower = Ui::CreateChild<rpl::lifetime>(container.get());
|
|
||||||
AddButtonWithLabel(
|
|
||||||
container,
|
|
||||||
label,
|
|
||||||
PrivacyString(key),
|
|
||||||
st::settingsButton
|
|
||||||
)->addClickHandler([=] {
|
|
||||||
*shower = Auth().api().privacyValue(
|
|
||||||
key
|
|
||||||
) | rpl::take(
|
|
||||||
1
|
|
||||||
) | rpl::start_with_next([=](const Privacy &value) {
|
|
||||||
Ui::show(Box<EditPrivacyBox>(
|
|
||||||
controller(),
|
|
||||||
value));
|
|
||||||
});
|
|
||||||
});
|
|
||||||
};
|
};
|
||||||
|
add(
|
||||||
|
lng_settings_phone_number_privacy,
|
||||||
|
Key::PhoneNumber,
|
||||||
|
[] { return std::make_unique<PhoneNumberPrivacyController>(); });
|
||||||
add(
|
add(
|
||||||
lng_settings_last_seen,
|
lng_settings_last_seen,
|
||||||
Privacy::Key::LastSeen,
|
Key::LastSeen,
|
||||||
[] { return std::make_unique<LastSeenPrivacyController>(); });
|
[] { return std::make_unique<LastSeenPrivacyController>(); });
|
||||||
add(
|
add(
|
||||||
lng_settings_forwards_privacy,
|
lng_settings_forwards_privacy,
|
||||||
Privacy::Key::Forwards,
|
Key::Forwards,
|
||||||
[] { return std::make_unique<ForwardsPrivacyController>(); });
|
[] { return std::make_unique<ForwardsPrivacyController>(); });
|
||||||
add(
|
add(
|
||||||
lng_settings_profile_photo_privacy,
|
lng_settings_profile_photo_privacy,
|
||||||
Privacy::Key::ProfilePhoto,
|
Key::ProfilePhoto,
|
||||||
[] { return std::make_unique<ProfilePhotoPrivacyController>(); });
|
[] { return std::make_unique<ProfilePhotoPrivacyController>(); });
|
||||||
add(
|
add(
|
||||||
lng_settings_calls,
|
lng_settings_calls,
|
||||||
Privacy::Key::Calls,
|
Key::Calls,
|
||||||
[] { return std::make_unique<CallsPrivacyController>(); });
|
[] { return std::make_unique<CallsPrivacyController>(); });
|
||||||
add(
|
|
||||||
lng_settings_calls_peer_to_peer,
|
|
||||||
Privacy::Key::CallsPeer2Peer,
|
|
||||||
[] { return std::make_unique<CallsPeer2PeerPrivacyController>(); });
|
|
||||||
add(
|
add(
|
||||||
lng_settings_groups_invite,
|
lng_settings_groups_invite,
|
||||||
Privacy::Key::Invites,
|
Key::Invites,
|
||||||
[] { return std::make_unique<GroupsInvitePrivacyController>(); });
|
[] { return std::make_unique<GroupsInvitePrivacyController>(); });
|
||||||
|
|
||||||
AddSkip(container, st::settingsPrivacySecurityPadding);
|
AddSkip(container, st::settingsPrivacySecurityPadding);
|
||||||
|
@ -539,6 +524,30 @@ int ExceptionUsersCount(const std::vector<not_null<PeerData*>> &exceptions) {
|
||||||
return ranges::accumulate(exceptions, 0, add);
|
return ranges::accumulate(exceptions, 0, add);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void AddPrivacyButton(
|
||||||
|
not_null<Ui::VerticalLayout*> container,
|
||||||
|
LangKey label,
|
||||||
|
Privacy::Key key,
|
||||||
|
Fn<std::unique_ptr<EditPrivacyController>()> controller) {
|
||||||
|
const auto shower = Ui::CreateChild<rpl::lifetime>(container.get());
|
||||||
|
AddButtonWithLabel(
|
||||||
|
container,
|
||||||
|
label,
|
||||||
|
PrivacyString(key),
|
||||||
|
st::settingsButton
|
||||||
|
)->addClickHandler([=] {
|
||||||
|
*shower = Auth().api().privacyValue(
|
||||||
|
key
|
||||||
|
) | rpl::take(
|
||||||
|
1
|
||||||
|
) | rpl::start_with_next([=](const Privacy &value) {
|
||||||
|
Ui::show(
|
||||||
|
Box<EditPrivacyBox>(controller(), value),
|
||||||
|
LayerOption::KeepOther);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
PrivacySecurity::PrivacySecurity(QWidget *parent, not_null<UserData*> self)
|
PrivacySecurity::PrivacySecurity(QWidget *parent, not_null<UserData*> self)
|
||||||
: Section(parent)
|
: Section(parent)
|
||||||
, _self(self) {
|
, _self(self) {
|
||||||
|
|
|
@ -8,11 +8,20 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "settings/settings_common.h"
|
#include "settings/settings_common.h"
|
||||||
|
#include "apiwrap.h"
|
||||||
|
|
||||||
|
class EditPrivacyController;
|
||||||
|
|
||||||
namespace Settings {
|
namespace Settings {
|
||||||
|
|
||||||
int ExceptionUsersCount(const std::vector<not_null<PeerData*>> &exceptions);
|
int ExceptionUsersCount(const std::vector<not_null<PeerData*>> &exceptions);
|
||||||
|
|
||||||
|
void AddPrivacyButton(
|
||||||
|
not_null<Ui::VerticalLayout*> container,
|
||||||
|
LangKey label,
|
||||||
|
ApiWrap::Privacy::Key key,
|
||||||
|
Fn<std::unique_ptr<EditPrivacyController>()> controller);
|
||||||
|
|
||||||
class PrivacySecurity : public Section {
|
class PrivacySecurity : public Section {
|
||||||
public:
|
public:
|
||||||
PrivacySecurity(QWidget *parent, not_null<UserData*> self);
|
PrivacySecurity(QWidget *parent, not_null<UserData*> self);
|
||||||
|
|
Loading…
Reference in New Issue