summaryrefslogtreecommitdiff
path: root/src/widget/mp-external-ug.c
blob: 4298a02cd66a4f78dd38e81255e0263f483db3ab (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
/*
* Copyright (c) 2000-2015 Samsung Electronics Co., Ltd All Rights Reserved
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/


#include <app.h>
#include <Elementary.h>

#include "mp-util.h"
#include "mp-video-log.h"
#include "mp-external-ug.h"
#include "mp-video-value-define.h"
#include "mp-video-string-define.h"

void mp_external_service_share_panel(const char *pUrl)
{
	if (!pUrl) {
		VideoLogInfo("pUrl is null.");
		return;
	}

	int nErr = 0;
	app_control_h pService = NULL;
	char *pOperation = VIDEO_SHARE_OPERATION_SINGLE;

	VideoSecureLogInfo("share pUrl = %s", pUrl);

	nErr = app_control_create(&pService);
	if (nErr != APP_CONTROL_ERROR_NONE) {
		VideoLogError("Fail to create ug service handle - [0x%x]", nErr);
		goto ERROR_EXCEPTION;
	}

	nErr = app_control_set_uri(pService, pUrl);
	if (nErr != APP_CONTROL_ERROR_NONE) {
		VideoLogError("Fail to set uri into ug service handle - [0x%x]",
			      nErr);
		goto ERROR_EXCEPTION;
	}

	nErr = app_control_set_operation(pService, pOperation);
	if (nErr != APP_CONTROL_ERROR_NONE) {
		VideoLogError("app_control_set_operation.. [0x%x]", nErr);
		goto ERROR_EXCEPTION;
	}

	nErr = app_control_send_launch_request(pService, NULL, NULL);
	if (nErr != APP_CONTROL_ERROR_NONE) {
		VideoLogWarning("[WARNING] rvice_send_launch_request().. [0x%x]",
				nErr);
		goto ERROR_EXCEPTION;
	}

	app_control_destroy(pService);
	pService = NULL;


ERROR_EXCEPTION:
	if (pService) {
		app_control_destroy(pService);
		pService = NULL;
	}
	return;
}