blob: 1594f826bdc365de8dd01fb4230884a4a55f71a7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
#pragma once
#include "async_updater.h"
#include <library/cpp/tvmauth/client/exception.h>
#include <library/cpp/tvmauth/checked_user_ticket.h>
#include <library/cpp/tvmauth/src/user_impl.h>
namespace NTvmAuth {
class TDefaultUidChecker {
public:
TDefaultUidChecker(TAsyncUpdaterPtr updater)
: Updater_(std::move(updater))
{
Y_ENSURE(Updater_);
GetCache();
}
/*!
* Checking must be enabled in TClientSettings
* Can throw exception if cache is out of date or wrong config
* @param ticket
*/
TCheckedUserTicket Check(TCheckedUserTicket ticket) const {
NRoles::TConsumerRolesPtr roles = GetCache()->GetRolesForUser(ticket);
if (roles) {
return ticket;
}
TUserTicketImplPtr impl = THolder(NInternal::TCanningKnife::GetU(ticket));
impl->SetStatus(ETicketStatus::NoRoles);
return TCheckedUserTicket(std::move(impl));
}
private:
NRoles::TRolesPtr GetCache() const {
NRoles::TRolesPtr c = Updater_->GetRoles();
Y_ENSURE_EX(c, TBrokenTvmClientSettings() << "Need to use TClientSettings::EnableRolesFetching()");
return c;
}
private:
TAsyncUpdaterPtr Updater_;
};
}
|