2021-05-25 01:24:30 +02:00
|
|
|
//
|
|
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2021
|
|
|
|
//
|
|
|
|
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
//
|
|
|
|
#pragma once
|
|
|
|
|
2021-05-25 01:39:29 +02:00
|
|
|
#include "td/telegram/DialogId.h"
|
|
|
|
#include "td/telegram/MessageId.h"
|
|
|
|
#include "td/telegram/td_api.h"
|
|
|
|
|
2021-05-25 01:24:30 +02:00
|
|
|
#include "td/actor/actor.h"
|
2021-05-25 01:39:29 +02:00
|
|
|
#include "td/actor/PromiseFuture.h"
|
2021-05-25 01:24:30 +02:00
|
|
|
|
|
|
|
#include "td/utils/common.h"
|
2021-05-25 01:53:25 +02:00
|
|
|
#include "td/utils/Slice.h"
|
|
|
|
#include "td/utils/Status.h"
|
2021-05-25 01:24:30 +02:00
|
|
|
|
|
|
|
namespace td {
|
|
|
|
|
|
|
|
class Td;
|
|
|
|
|
|
|
|
class LinkManager : public Actor {
|
|
|
|
public:
|
|
|
|
LinkManager(Td *td, ActorShared<> parent);
|
|
|
|
|
|
|
|
LinkManager(const LinkManager &) = delete;
|
|
|
|
LinkManager &operator=(const LinkManager &) = delete;
|
|
|
|
LinkManager(LinkManager &&) = delete;
|
|
|
|
LinkManager &operator=(LinkManager &&) = delete;
|
|
|
|
~LinkManager() override;
|
|
|
|
|
2021-05-25 01:53:25 +02:00
|
|
|
// checks whether link is a valid tg, ton or HTTP(S) URL and returns it in a canonical form
|
|
|
|
static Result<string> check_link(Slice link);
|
|
|
|
|
2021-05-25 01:39:29 +02:00
|
|
|
void get_login_url_info(DialogId dialog_id, MessageId message_id, int32 button_id,
|
|
|
|
Promise<td_api::object_ptr<td_api::LoginUrlInfo>> &&promise);
|
|
|
|
|
|
|
|
void get_login_url(DialogId dialog_id, MessageId message_id, int32 button_id, bool allow_write_access,
|
|
|
|
Promise<td_api::object_ptr<td_api::httpUrl>> &&promise);
|
|
|
|
|
|
|
|
void get_link_login_url_info(const string &url, Promise<td_api::object_ptr<td_api::LoginUrlInfo>> &&promise);
|
|
|
|
|
|
|
|
void get_link_login_url(const string &url, bool allow_write_access,
|
|
|
|
Promise<td_api::object_ptr<td_api::httpUrl>> &&promise);
|
|
|
|
|
2021-05-25 01:24:30 +02:00
|
|
|
private:
|
|
|
|
void tear_down() override;
|
|
|
|
|
|
|
|
Td *td_;
|
|
|
|
ActorShared<> parent_;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace td
|