2 * //******************************************************************
4 * // Copyright 2016 Samsung Electronics All Rights Reserved.
6 * //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
8 * // Licensed under the Apache License, Version 2.0 (the "License");
9 * // you may not use this file except in compliance with the License.
10 * // You may obtain a copy of the License at
12 * // http://www.apache.org/licenses/LICENSE-2.0
14 * // Unless required by applicable law or agreed to in writing, software
15 * // distributed under the License is distributed on an "AS IS" BASIS,
16 * // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 * // See the License for the specific language governing permissions and
18 * // limitations under the License.
20 * //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
22 package org.iotivity.cloud.ciserver.resources.proxy.account;
24 import java.util.Arrays;
25 import java.util.HashMap;
27 import org.iotivity.cloud.base.connector.ConnectorPool;
28 import org.iotivity.cloud.base.device.Device;
29 import org.iotivity.cloud.base.device.IRequestChannel;
30 import org.iotivity.cloud.base.exception.ServerException;
31 import org.iotivity.cloud.base.protocols.IRequest;
32 import org.iotivity.cloud.base.protocols.MessageBuilder;
33 import org.iotivity.cloud.base.protocols.enums.ContentFormat;
34 import org.iotivity.cloud.base.resource.Resource;
35 import org.iotivity.cloud.ciserver.Constants;
36 import org.iotivity.cloud.util.Cbor;
38 public class AccountSession extends Resource {
39 IRequestChannel mAuthServer = null;
40 private Cbor<HashMap<String, Object>> mCbor = new Cbor<>();
42 public AccountSession() {
43 super(Arrays.asList(Constants.PREFIX_OIC, Constants.ACCOUNT_URI,
44 Constants.SESSION_URI));
46 mAuthServer = ConnectorPool.getConnection("account");
50 public void onDefaultRequestReceived(Device srcDevice, IRequest request)
51 throws ServerException {
52 HashMap<String, Object> payloadData = mCbor
53 .parsePayloadFromCbor(request.getPayload(), HashMap.class);
54 if (payloadData.get(Constants.REQ_LOGIN).toString().equals("false")) {
55 payloadData.put(Constants.USER_ID, srcDevice.getUserId());
56 payloadData.put(Constants.DEVICE_ID, srcDevice.getDeviceId());
57 payloadData.put(Constants.ACCESS_TOKEN, srcDevice.getAccessToken());
58 request = MessageBuilder.modifyRequest(request, null, null,
59 ContentFormat.APPLICATION_CBOR,
60 mCbor.encodingPayloadToCbor(payloadData));
62 mAuthServer.sendRequest(request, srcDevice);