forked from meganz/sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMAccountSession.cpp
More file actions
112 lines (90 loc) · 2.62 KB
/
Copy pathMAccountSession.cpp
File metadata and controls
112 lines (90 loc) · 2.62 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
/**
* @file MAccountSession.cpp
* @brief Get details about a MEGA session.
*
* (c) 2013-2014 by Mega Limited, Auckland, New Zealand
*
* This file is part of the MEGA SDK - Client Access Engine.
*
* Applications using the MEGA API must present a valid application key
* and comply with the the rules set forth in the Terms of Service.
*
* The MEGA SDK 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.
*
* @copyright Simplified (2-clause) BSD License.
*
* You should have received a copy of the license along with this
* program.
*/
#include "MAccountSession.h"
using namespace mega;
using namespace Platform;
MAccountSession::MAccountSession(MegaAccountSession *accountSession, bool cMemoryOwn)
{
this->accountSession = accountSession;
this->cMemoryOwn;
}
MAccountSession::~MAccountSession()
{
if (cMemoryOwn)
delete accountSession;
}
MegaAccountSession* MAccountSession::getCPtr()
{
return accountSession;
}
int64 MAccountSession::getCreationTimestamp()
{
return accountSession ? accountSession->getCreationTimestamp() : 0;
}
int64 MAccountSession::getMostRecentUsage()
{
return accountSession ? accountSession->getMostRecentUsage() : 0;
}
String^ MAccountSession::getUserAgent()
{
if (!accountSession) return nullptr;
std::string utf16userAgent;
const char *utf8userAgent = accountSession->getUserAgent();
if (!utf8userAgent)
return nullptr;
MegaApi::utf8ToUtf16(utf8userAgent, &utf16userAgent);
delete[] utf8userAgent;
return ref new String((wchar_t *)utf16userAgent.data());
}
String^ MAccountSession::getIP()
{
if (!accountSession) return nullptr;
std::string utf16ip;
const char *utf8ip = accountSession->getIP();
if (!utf8ip)
return nullptr;
MegaApi::utf8ToUtf16(utf8ip, &utf16ip);
delete[] utf8ip;
return ref new String((wchar_t *)utf16ip.data());
}
String^ MAccountSession::getCountry()
{
if (!accountSession) return nullptr;
std::string utf16country;
const char *utf8country = accountSession->getCountry();
if (!utf8country)
return nullptr;
MegaApi::utf8ToUtf16(utf8country, &utf16country);
delete[] utf8country;
return ref new String((wchar_t *)utf16country.data());
}
bool MAccountSession::isCurrent()
{
return accountSession ? accountSession->isCurrent() : false;
}
bool MAccountSession::isAlive()
{
return accountSession ? accountSession->isAlive() : false;
}
uint64 MAccountSession::getHandle()
{
return accountSession ? accountSession->getHandle() : ::mega::INVALID_HANDLE;
}