Imported Upstream version 1.2.0
[platform/upstream/iotivity.git] / cloud / interface / src / main / java / org / iotivity / cloud / ciserver / resources / proxy / account / AccountSession.java
1 /*
2  * //******************************************************************
3  * //
4  * // Copyright 2016 Samsung Electronics All Rights Reserved.
5  * //
6  * //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
7  * //
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
11  * //
12  * //      http://www.apache.org/licenses/LICENSE-2.0
13  * //
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.
19  * //
20  * //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
21  */
22 package org.iotivity.cloud.ciserver.resources.proxy.account;
23
24 import java.util.Arrays;
25 import java.util.HashMap;
26
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;
37
38 /**
39  *
40  * This class provides a set of APIs to send requests about session to account
41  *
42  */
43
44 public class AccountSession extends Resource {
45     IRequestChannel                       mAuthServer = null;
46     private Cbor<HashMap<String, Object>> mCbor       = new Cbor<>();
47
48     public AccountSession() {
49         super(Arrays.asList(Constants.PREFIX_OIC, Constants.ACCOUNT_URI,
50                 Constants.SESSION_URI));
51
52         mAuthServer = ConnectorPool.getConnection("account");
53     }
54
55     @Override
56     public void onDefaultRequestReceived(Device srcDevice, IRequest request)
57             throws ServerException {
58         HashMap<String, Object> payloadData = mCbor
59                 .parsePayloadFromCbor(request.getPayload(), HashMap.class);
60
61         checkPayloadException(Constants.REQ_LOGIN, payloadData);
62
63         if (payloadData.get(Constants.REQ_LOGIN).toString().equals("false")) {
64             payloadData.put(Constants.USER_ID, srcDevice.getUserId());
65             payloadData.put(Constants.DEVICE_ID, srcDevice.getDeviceId());
66             payloadData.put(Constants.ACCESS_TOKEN, srcDevice.getAccessToken());
67             request = MessageBuilder.modifyRequest(request, null, null,
68                     ContentFormat.APPLICATION_CBOR,
69                     mCbor.encodingPayloadToCbor(payloadData));
70         }
71         mAuthServer.sendRequest(request, srcDevice);
72     }
73 }