summaryrefslogtreecommitdiff
path: root/plugins/Dropbox/src/dropbox.cpp
blob: 64fc3bfae3fdabe86919811bd9846da62f188168 (plain)
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
#include "common.h"

void CDropbox::Init()
{
	PROTOCOLDESCRIPTOR pd = { PROTOCOLDESCRIPTOR_V3_SIZE };
	pd.szName = MODULE;
	pd.type = PROTOTYPE_VIRTUAL;
	CallService(MS_PROTO_REGISTERMODULE, 0, (LPARAM)&pd);

	HookEvent(ME_OPT_INITIALISE, OnOptionsInit);
	HookEvent(ME_SYSTEM_MODULESLOADED, CDropbox::OnModulesLoaded);
	HookEvent(ME_DB_CONTACT_DELETED, CDropbox::OnContactDeleted);
	HookEvent(ME_CLIST_PREBUILDCONTACTMENU, CDropbox::OnPrebuildContactMenu);

	CreateProtoServiceFunction(MODULE, PS_GETCAPS, CDropbox::ProtoGetCaps);
	CreateProtoServiceFunction(MODULE, PSS_FILE, CDropbox::ProtoSendFile);
	CreateProtoServiceFunction(MODULE, PSS_MESSAGE, CDropbox::ProtoSendMessage);

	InitIcons();
	InitMenus();

	INSTANCE->hContactTransfer = 0;
}

MCONTACT CDropbox::hContactDefault = 0;

MCONTACT CDropbox::GetDefaultContact()
{
	if (!hContactDefault)
		hContactDefault = db_find_first(MODULE);

	return hContactDefault;
}

bool CDropbox::HasAccessToken()
{
	return db_get_sa(NULL, MODULE, "TokenSecret") != NULL;
}

void CDropbox::RequestAcceessToken()
{
	ShellExecuteA(NULL, "open", DROPBOX_WWW_URL DROPBOX_API_VER "/oauth2/authorize?response_type=code&client_id=" DROPBOX_API_KEY, NULL, NULL, SW_SHOWDEFAULT);

	char request_token[128] = { 0 };

	if (DialogBoxParam(
		g_hInstance,
		MAKEINTRESOURCE(IDD_TOKEN_REQUEST),
		NULL, 
		CDropbox::TokenRequestProc,
		(LPARAM)&request_token) == IDOK)
	{
		char data[1024];
		mir_snprintf(
			data,
			SIZEOF(data),
			Translate("grant_type=authorization_code&code=%s"),
			request_token);

		HttpRequest *request = new HttpRequest(hNetlibUser, REQUEST_POST, DROPBOX_API_URL "/oauth2/token");
		request->pData = mir_strdup(data);
		request->dataLength = (int)strlen(data);
		request->AddHeader("Content-Type", "application/x-www-form-urlencoded");
		request->AddBasicAuthHeader(DROPBOX_API_KEY, DROPBOX_API_SECRET);

		mir_ptr<NETLIBHTTPREQUEST> response(request->Send());

		delete request;

		MCONTACT hContact = CDropbox::GetDefaultContact();

		if (response)
		{
			JSONNODE *root = json_parse(response->pData);
			if (root)
			{
				if (response->resultCode == HTTP_STATUS::OK)
				{
					JSONNODE *node = json_get(root, "access_token");
					ptrA access_token = ptrA(mir_u2a(json_as_string(node)));
					db_set_s(NULL, MODULE, "TokenSecret", access_token);

					if (hContact)
					{
						if (db_get_w(hContact, MODULE, "Status", ID_STATUS_OFFLINE) == ID_STATUS_OFFLINE)
							db_set_w(hContact, MODULE, "Status", ID_STATUS_ONLINE);
					}

					CDropbox::ShowNotification(TranslateT("You have been authorized"), MB_ICONINFORMATION);
				}
				else
				{
					JSONNODE *node = json_get(root, "error_description");
					ptrW error_description(json_as_string(node));

					CDropbox::ShowNotification((wchar_t*)error_description, MB_ICONERROR);
				}
			}
		}
		else
			HandleFileTransferError(response, hContact);
	}
}

void CDropbox::DestroyAcceessToken()
{
	HttpRequest *request = new HttpRequest(hNetlibUser, REQUEST_POST, DROPBOX_API_URL "/disable_access_token");
	mir_ptr<NETLIBHTTPREQUEST> response(request->Send());

	delete request;

	MCONTACT hContact = CDropbox::GetDefaultContact();

	db_unset(NULL, MODULE, "TokenSecret");
	if (hContact)
	{
		if (db_get_w(hContact, MODULE, "Status", ID_STATUS_ONLINE) == ID_STATUS_ONLINE)
			db_set_w(hContact, MODULE, "Status", ID_STATUS_OFFLINE);
	}
}

void CDropbox::RequestApiAuthorizationAsync(void *arg)
{
	if (HasAccessToken() && MessageBox(
		NULL, 
		TranslateT("Are you sure you want to request athorization?"), 
		TranslateT("Request athorization"), 
		MB_YESNO | MB_ICONQUESTION) == IDYES)
	{
		INSTANCE->DestroyAcceessToken();
		INSTANCE->RequestAcceessToken();
	}
	else
		INSTANCE->RequestAcceessToken();
}