Subversion Repositories SmartDukaan

Rev

Rev 23798 | Rev 23814 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
21339 kshitij.so 1
package com.spice.profitmandi.web.controller;
2
 
3
import java.util.ArrayList;
22336 amit.gupta 4
import java.util.Arrays;
21339 kshitij.so 5
import java.util.HashMap;
22952 amit.gupta 6
import java.util.Iterator;
21339 kshitij.so 7
import java.util.List;
8
import java.util.Map;
9
 
10
import javax.servlet.http.HttpServletRequest;
11
 
22319 amit.gupta 12
import org.apache.commons.lang3.StringUtils;
23532 amit.gupta 13
import org.apache.http.conn.HttpHostConnectException;
23786 amit.gupta 14
import org.apache.logging.log4j.LogManager;
15
import org.apache.logging.log4j.Logger;
22319 amit.gupta 16
import org.json.JSONArray;
17
import org.json.JSONObject;
22273 amit.gupta 18
import org.springframework.beans.factory.annotation.Autowired;
21339 kshitij.so 19
import org.springframework.beans.factory.annotation.Value;
20
import org.springframework.http.HttpStatus;
21
import org.springframework.http.MediaType;
22
import org.springframework.http.ResponseEntity;
23
import org.springframework.stereotype.Controller;
22286 amit.gupta 24
import org.springframework.transaction.annotation.Transactional;
21339 kshitij.so 25
import org.springframework.web.bind.annotation.PathVariable;
26
import org.springframework.web.bind.annotation.RequestMapping;
27
import org.springframework.web.bind.annotation.RequestMethod;
28
import org.springframework.web.bind.annotation.RequestParam;
29
 
30
import com.eclipsesource.json.Json;
31
import com.eclipsesource.json.JsonArray;
32
import com.eclipsesource.json.JsonObject;
33
import com.eclipsesource.json.JsonValue;
34
import com.google.gson.Gson;
21356 kshitij.so 35
import com.google.gson.reflect.TypeToken;
21643 ashik.ali 36
import com.spice.profitmandi.common.enumuration.SchemeType;
21339 kshitij.so 37
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
38
import com.spice.profitmandi.common.model.ProfitMandiConstants;
22289 amit.gupta 39
import com.spice.profitmandi.common.model.UserInfo;
21643 ashik.ali 40
import com.spice.profitmandi.common.web.client.RestClient;
22319 amit.gupta 41
import com.spice.profitmandi.common.web.util.ResponseSender;
23426 amit.gupta 42
import com.spice.profitmandi.dao.entity.catalog.Item;
22361 amit.gupta 43
import com.spice.profitmandi.dao.model.UserCart;
23426 amit.gupta 44
import com.spice.profitmandi.dao.repository.catalog.ItemRepository;
22333 amit.gupta 45
import com.spice.profitmandi.dao.repository.dtr.Mongo;
22361 amit.gupta 46
import com.spice.profitmandi.dao.repository.dtr.UserAccountRepository;
22989 amit.gupta 47
import com.spice.profitmandi.dao.repository.inventory.ItemAvailabilityCacheRepository;
23798 amit.gupta 48
import com.spice.profitmandi.service.authentication.RoleManager;
22931 ashik.ali 49
import com.spice.profitmandi.service.inventory.InventoryService;
22287 amit.gupta 50
import com.spice.profitmandi.service.pricing.PricingService;
22952 amit.gupta 51
import com.spice.profitmandi.web.res.AvailabilityInfo;
21356 kshitij.so 52
import com.spice.profitmandi.web.res.DealBrands;
21339 kshitij.so 53
import com.spice.profitmandi.web.res.DealObjectResponse;
54
import com.spice.profitmandi.web.res.DealsResponse;
22328 amit.gupta 55
import com.spice.profitmandi.web.res.FofoAvailabilityInfo;
56
import com.spice.profitmandi.web.res.FofoCatalogResponse;
21339 kshitij.so 57
 
58
import io.swagger.annotations.ApiImplicitParam;
59
import io.swagger.annotations.ApiImplicitParams;
60
import io.swagger.annotations.ApiOperation;
61
 
62
@Controller
22319 amit.gupta 63
@Transactional(rollbackFor = Throwable.class)
21339 kshitij.so 64
public class DealsController {
65
 
23568 govind 66
	private static final Logger logger = LogManager.getLogger(DealsController.class);
21339 kshitij.so 67
 
68
	@Value("${python.api.host}")
69
	private String host;
22931 ashik.ali 70
 
21339 kshitij.so 71
	@Value("${python.api.port}")
72
	private int port;
22708 amit.gupta 73
 
22989 amit.gupta 74
	//This is now unused as we are not supporting multiple companies.
23300 amit.gupta 75
	@Value("${gadgetCops.invoice.cc}")
76
	private String[] ccGadgetCopInvoiceTo; 
22319 amit.gupta 77
 
78
	@Autowired
79
	private PricingService pricingService;
22273 amit.gupta 80
 
81
	@Autowired
22333 amit.gupta 82
	private Mongo mongoClient;
83
 
84
	@Autowired
22361 amit.gupta 85
	private UserAccountRepository userAccountRepository;
86
 
22989 amit.gupta 87
 
88
	@Autowired
22931 ashik.ali 89
	private ResponseSender<?> responseSender;
22336 amit.gupta 90
 
22554 amit.gupta 91
	@Autowired
23426 amit.gupta 92
	private ItemRepository itemRepository;
22554 amit.gupta 93
 
23786 amit.gupta 94
	@Autowired
23798 amit.gupta 95
	private RoleManager roleManagerService;
23426 amit.gupta 96
 
23786 amit.gupta 97
 
22336 amit.gupta 98
	List<String> filterableParams = Arrays.asList("brand");
21339 kshitij.so 99
 
22319 amit.gupta 100
	@RequestMapping(value = ProfitMandiConstants.URL_DEALS, method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE)
21339 kshitij.so 101
	@ApiImplicitParams({
22319 amit.gupta 102
			@ApiImplicitParam(name = "Auth-Token", value = "Auth-Token", required = true, dataType = "string", paramType = "header") })
21339 kshitij.so 103
	@ApiOperation(value = "Get deals")
22319 amit.gupta 104
	public ResponseEntity<?> getDeals(HttpServletRequest request, @RequestParam(value = "categoryId") String categoryId,
105
			@RequestParam(value = "offset") String offset, @RequestParam(value = "limit") String limit,
106
			@RequestParam(value = "sort", required = false) String sort,
107
			@RequestParam(value = "direction", required = false) String direction,
22931 ashik.ali 108
			@RequestParam(value = "filterData", required = false) String filterData) throws ProfitMandiBusinessException {
22319 amit.gupta 109
		logger.info("Request " + request.getParameterMap());
21339 kshitij.so 110
		String response = null;
22319 amit.gupta 111
		int userId = (int) request.getAttribute("userId");
22988 amit.gupta 112
 
113
		//If pincode belongs to Specific warehouse marked
114
		//availability should be fetched for that warehouse only
115
		//show only skus belonging to that specific
116
		//else use normal flow
22319 amit.gupta 117
		UserInfo userInfo = (UserInfo) request.getAttribute("userInfo");
118
		// TODO: move to properties
119
		String uri = "/deals/" + userId;
23532 amit.gupta 120
		RestClient rc = new RestClient();
21339 kshitij.so 121
		Map<String, String> params = new HashMap<>();
122
		params.put("offset", offset);
123
		params.put("limit", limit);
124
		params.put("categoryId", categoryId);
125
		params.put("direction", direction);
126
		params.put("sort", sort);
127
		params.put("filterData", filterData);
22272 amit.gupta 128
		params.put("source", "deals");
23786 amit.gupta 129
		if (roleManagerService.isPartner(userInfo.getRoleIds())) {
22289 amit.gupta 130
			params.put("tag_ids", getCommaSeparateTags(userId));
131
		}
21356 kshitij.so 132
		List<Object> responseObject = new ArrayList<>();
23532 amit.gupta 133
		try {
134
		response = rc.get(SchemeType.HTTP, host, port, uri, params);
135
		} catch (HttpHostConnectException e) {
136
			throw new ProfitMandiBusinessException("", "", "Could not connect to host");
137
		}
22931 ashik.ali 138
 
21339 kshitij.so 139
		JsonArray result_json = Json.parse(response).asArray();
22319 amit.gupta 140
		for (JsonValue j : result_json) {
22842 amit.gupta 141
			//logger.info("res " + j.asArray());
21339 kshitij.so 142
			List<Object> innerObject = new ArrayList<>();
22319 amit.gupta 143
			for (JsonValue jsonObject : j.asArray()) {
21356 kshitij.so 144
				innerObject.add(toDealObject(jsonObject.asObject()));
21339 kshitij.so 145
			}
22319 amit.gupta 146
			if (innerObject.size() > 0) {
21339 kshitij.so 147
				responseObject.add(innerObject);
148
			}
149
		}
23022 ashik.ali 150
		return responseSender.ok(responseObject);
21339 kshitij.so 151
	}
152
 
22931 ashik.ali 153
	private String getCommaSeparateTags(int userId){
22361 amit.gupta 154
		UserCart uc = userAccountRepository.getUserCart(userId);
155
		List<Integer> tagIds = pricingService.getTagsIdsByRetailerId(uc.getUserId());
22287 amit.gupta 156
		List<String> strTagIds = new ArrayList<>();
157
		for (Integer tagId : tagIds) {
158
			strTagIds.add(String.valueOf(tagId));
22273 amit.gupta 159
		}
22287 amit.gupta 160
		return String.join(",", strTagIds);
22273 amit.gupta 161
	}
162
 
22319 amit.gupta 163
	@ApiImplicitParams({
164
			@ApiImplicitParam(name = "Auth-Token", value = "Auth-Token", required = true, dataType = "string", paramType = "header") })
165
	@RequestMapping(value = "/fofo", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE)
166
	public ResponseEntity<?> getFofo(HttpServletRequest request, @RequestParam(value = "categoryId") String categoryId,
167
			@RequestParam(value = "offset") String offset, @RequestParam(value = "limit") String limit,
22336 amit.gupta 168
			@RequestParam(value = "sort", required = false) String sort, @RequestParam(value = "brand", required = false) String brand) throws Throwable {
22328 amit.gupta 169
		List<FofoCatalogResponse> dealResponse = new ArrayList<>();
22319 amit.gupta 170
		UserInfo userInfo = (UserInfo) request.getAttribute("userInfo");
23786 amit.gupta 171
		if (roleManagerService.isPartner(userInfo.getRoleIds())) {
22361 amit.gupta 172
			UserCart uc = userAccountRepository.getUserCart(userInfo.getUserId());
173
			List<Integer> tagIds = pricingService.getTagsIdsByRetailerId(uc.getUserId());
23532 amit.gupta 174
			RestClient rc  = new RestClient();
22319 amit.gupta 175
			Map<String, String> params = new HashMap<>();
22336 amit.gupta 176
			List<String> mandatoryQ = new ArrayList<>();
177
			if(brand != null) {
22347 amit.gupta 178
 
22348 amit.gupta 179
				mandatoryQ.add(String.format("+{!parent which=\"brand_s=%s\"} tagId_i:(%s)", brand, StringUtils.join(tagIds, " ")));
22347 amit.gupta 180
			} else {
181
				mandatoryQ.add(String.format("+{!parent which=\"id:catalog*\"} tagId_i:(%s)", StringUtils.join(tagIds, " ")));
22336 amit.gupta 182
			}
22340 amit.gupta 183
			params.put("q", StringUtils.join(mandatoryQ," "));
22319 amit.gupta 184
			params.put("fl", "*, [child parentFilter=id:catalog*]");
185
			params.put("sort", "rank_i asc");
186
			params.put("start", String.valueOf(offset));
187
			params.put("rows", String.valueOf(limit));
188
			params.put("wt", "json");
23532 amit.gupta 189
			String response = null;
190
			try {
191
				response  =rc.get(SchemeType.HTTP, "dtr", 8984, "solr/demo/select", params);
192
			} catch (HttpHostConnectException e) {
193
				throw new ProfitMandiBusinessException("", "", "Could not connect to host");
194
			}
22319 amit.gupta 195
			JSONObject solrResponseJSONObj = new JSONObject(response).getJSONObject("response");
196
			JSONArray docs = solrResponseJSONObj.getJSONArray("docs");
197
			for(int i=0; i < docs.length(); i++) {
22328 amit.gupta 198
				Map<Integer, FofoAvailabilityInfo> fofoAvailabilityInfoMap = new HashMap<>();
22319 amit.gupta 199
				JSONObject doc = docs.getJSONObject(i);
22328 amit.gupta 200
				FofoCatalogResponse ffdr = new FofoCatalogResponse();
22319 amit.gupta 201
				ffdr.setCatalogId(doc.getInt("catalogId_i"));
202
				ffdr.setImageUrl(doc.getString("imageUrl_s"));
203
				ffdr.setTitle(doc.getString("title_s"));
22333 amit.gupta 204
				ffdr.setBrand(doc.getString("brand_s"));
23806 tejbeer 205
				ffdr.setHotDeals(doc.getBoolean("hot_deals_b"));
22323 amit.gupta 206
				for(int j=0; j< doc.getJSONArray("_childDocuments_").length(); j++) {
207
					JSONObject childItem = doc.getJSONArray("_childDocuments_").getJSONObject(j);
22319 amit.gupta 208
					int itemId = childItem.getInt("itemId_i");
209
					float sellingPrice = (float)childItem.getDouble("sellingPrice_f");
22328 amit.gupta 210
					if(fofoAvailabilityInfoMap.containsKey(itemId)) {
211
						if(fofoAvailabilityInfoMap.get(itemId).getSellingPrice() > sellingPrice) {
212
							fofoAvailabilityInfoMap.get(itemId).setSellingPrice(sellingPrice);
213
							fofoAvailabilityInfoMap.get(itemId).setMop((float)childItem.getDouble("mop_f"));
22319 amit.gupta 214
						} 
215
					} else {
22328 amit.gupta 216
							FofoAvailabilityInfo fdi = new FofoAvailabilityInfo();
22319 amit.gupta 217
							fdi.setSellingPrice((float)childItem.getDouble("sellingPrice_f"));
218
							fdi.setMop((float)childItem.getDouble("mop_f"));
22324 amit.gupta 219
							fdi.setColor(childItem.has("color_s")?childItem.getString("color_s"): "");
22319 amit.gupta 220
							fdi.setTagId(childItem.getInt("tagId_i"));
22328 amit.gupta 221
							fdi.setItem_id(itemId);
23404 amit.gupta 222
							/*int totalAvailability = 0;
22989 amit.gupta 223
							//Using item availability cache for now but can be changed to use caching later.
224
							try {
225
								ItemAvailabilityCache iac = itemAvailabilityCacheRepository.selectByItemId(itemId);
226
								totalAvailability = iac.getTotalAvailability();
227
							} catch (Exception e) {}
22990 amit.gupta 228
							if(totalAvailability <= 0){
229
								continue;
23404 amit.gupta 230
							}*/
23426 amit.gupta 231
							Item item = itemRepository.selectById(itemId);
232
							//In case its tampered glass moq should be 5
233
							if(item.getCategoryId()==10020) {
234
								fdi.setMinBuyQuantity(5);
235
							} else {
236
								fdi.setMinBuyQuantity(1);
237
							}
23404 amit.gupta 238
							fdi.setAvailability(10);
22328 amit.gupta 239
							fdi.setQuantityStep(1);
22561 amit.gupta 240
							fdi.setMaxQuantity(Math.min(fdi.getAvailability(), 100));
22990 amit.gupta 241
							fofoAvailabilityInfoMap.put(itemId, fdi);
22319 amit.gupta 242
					}
243
				}
22988 amit.gupta 244
				if(fofoAvailabilityInfoMap.values().size() > 0) {
245
					ffdr.setItems(new ArrayList<FofoAvailabilityInfo>(fofoAvailabilityInfoMap.values()));
246
					dealResponse.add(ffdr);
247
				}
22319 amit.gupta 248
			}
249
 
250
		} else {
251
			return responseSender.badRequest(new ProfitMandiBusinessException("Retailer id", userInfo.getUserId(), "NOT_FOFO_RETAILER"));
252
		}
253
		return responseSender.ok(dealResponse);
254
	}
22273 amit.gupta 255
 
22319 amit.gupta 256
	@RequestMapping(value = "/online-deals", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE)
22272 amit.gupta 257
	@ApiImplicitParams({
22319 amit.gupta 258
			@ApiImplicitParam(name = "Auth-Token", value = "Auth-Token", required = true, dataType = "string", paramType = "header") })
22272 amit.gupta 259
	@ApiOperation(value = "Get online deals")
22319 amit.gupta 260
	public ResponseEntity<?> getOnlineDeals(HttpServletRequest request,
261
			@RequestParam(value = "categoryId") String categoryId, @RequestParam(value = "offset") String offset,
262
			@RequestParam(value = "limit") String limit, @RequestParam(value = "sort", required = false) String sort,
263
			@RequestParam(value = "direction", required = false) String direction,
264
			@RequestParam(value = "filterData", required = false) String filterData) throws Throwable {
265
		logger.info("Request " + request.getParameterMap());
22272 amit.gupta 266
		String response = null;
22319 amit.gupta 267
		int userId = (int) request.getAttribute("userId");
22289 amit.gupta 268
 
22319 amit.gupta 269
		String uri = "/deals/" + userId;
23532 amit.gupta 270
		RestClient rc = new RestClient();
22272 amit.gupta 271
		Map<String, String> params = new HashMap<>();
272
		params.put("offset", offset);
273
		params.put("limit", limit);
274
		params.put("categoryId", categoryId);
275
		params.put("direction", direction);
276
		params.put("sort", sort);
277
		params.put("source", "online");
278
		params.put("filterData", filterData);
22357 amit.gupta 279
		/*if (userInfo.getRoleNames().contains(RoleType.FOFO.toString())) {
22289 amit.gupta 280
			params.put("tag_ids", getCommaSeparateTags(userId));
22357 amit.gupta 281
		}*/
22272 amit.gupta 282
		List<Object> responseObject = new ArrayList<>();
23532 amit.gupta 283
		try {
284
			response = rc.get(SchemeType.HTTP, host, port, uri, params);
285
		} catch (HttpHostConnectException e) {
286
			throw new ProfitMandiBusinessException("", "", "Could not connect to host");
287
		}
22931 ashik.ali 288
 
22272 amit.gupta 289
		JsonArray result_json = Json.parse(response).asArray();
22319 amit.gupta 290
		for (JsonValue j : result_json) {
22843 amit.gupta 291
			//logger.info("res " + j.asArray());
22272 amit.gupta 292
			List<Object> innerObject = new ArrayList<>();
22319 amit.gupta 293
			for (JsonValue jsonObject : j.asArray()) {
22272 amit.gupta 294
				innerObject.add(toDealObject(jsonObject.asObject()));
295
			}
22319 amit.gupta 296
			if (innerObject.size() > 0) {
22272 amit.gupta 297
				responseObject.add(innerObject);
298
			}
299
		}
23022 ashik.ali 300
		return responseSender.ok(responseObject);
22272 amit.gupta 301
	}
302
 
22319 amit.gupta 303
	/*
304
	 * @RequestMapping(value = "/direct-deals",
305
	 * method=RequestMethod.GET,produces = MediaType.APPLICATION_JSON_VALUE)
306
	 * 
307
	 * @ApiImplicitParams({
308
	 * 
309
	 * @ApiImplicitParam(name = "Auth-Token", value = "Auth-Token", required =
310
	 * true, dataType = "string", paramType = "header") }) public
311
	 * ResponseEntity<?> getDirectDeals(HttpServletRequest
312
	 * request, @RequestParam(value="categoryId") String
313
	 * categoryId,@RequestParam(value="offset") String offset,
314
	 * 
315
	 * @RequestParam(value="limit") String limit, @RequestParam(value="sort",
316
	 * required=false) String sort, @RequestParam(value="direction",
317
	 * required=false) String direction,
318
	 * 
319
	 * @RequestParam(value="filterData", required=false) String filterData ){
320
	 * 
321
	 * return new ResponseEntity<>(profitMandiResponse,HttpStatus.OK); }
322
	 */
323
 
324
	private Object toDealObject(JsonObject jsonObject) {
325
		if (jsonObject.get("dealObject") != null && jsonObject.get("dealObject").asInt() == 1) {
21339 kshitij.so 326
			return new Gson().fromJson(jsonObject.toString(), DealObjectResponse.class);
327
		}
328
		return new Gson().fromJson(jsonObject.toString(), DealsResponse.class);
329
	}
22319 amit.gupta 330
 
331
	@RequestMapping(value = ProfitMandiConstants.URL_BRANDS, method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE)
21356 kshitij.so 332
	@ApiImplicitParams({
22319 amit.gupta 333
			@ApiImplicitParam(name = "Auth-Token", value = "Auth-Token", required = true, dataType = "string", paramType = "header") })
21356 kshitij.so 334
	@ApiOperation(value = "Get brand list and count for category")
22319 amit.gupta 335
	public ResponseEntity<?> getBrands(HttpServletRequest request,
22931 ashik.ali 336
			@RequestParam(value = "category_id") String category_id) throws ProfitMandiBusinessException{
22319 amit.gupta 337
		logger.info("Request " + request.getParameterMap());
21356 kshitij.so 338
		String response = null;
22319 amit.gupta 339
		// TODO: move to properties
21356 kshitij.so 340
		String uri = ProfitMandiConstants.URL_BRANDS;
23532 amit.gupta 341
		RestClient rc = new RestClient();
21356 kshitij.so 342
		Map<String, String> params = new HashMap<>();
343
		params.put("category_id", category_id);
21358 kshitij.so 344
		List<DealBrands> dealBrandsResponse = null;
23532 amit.gupta 345
		try {
346
			response = rc.get(SchemeType.HTTP, host, port, uri, params);
347
		} catch (HttpHostConnectException e) {
348
			throw new ProfitMandiBusinessException("", "", "Could not connect to host");
349
		}
22931 ashik.ali 350
 
22319 amit.gupta 351
		dealBrandsResponse = new Gson().fromJson(response, new TypeToken<List<DealBrands>>() {
352
		}.getType());
23022 ashik.ali 353
 
354
		return responseSender.ok(dealBrandsResponse);
21356 kshitij.so 355
	}
22319 amit.gupta 356
 
357
	@RequestMapping(value = ProfitMandiConstants.URL_UNIT_DEAL, method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE)
21445 kshitij.so 358
	@ApiImplicitParams({
22319 amit.gupta 359
			@ApiImplicitParam(name = "Auth-Token", value = "Auth-Token", required = true, dataType = "string", paramType = "header") })
21445 kshitij.so 360
	@ApiOperation(value = "Get unit deal object")
22931 ashik.ali 361
	public ResponseEntity<?> getUnitDeal(HttpServletRequest request, @PathVariable(value = "id") long id) 
362
			throws ProfitMandiBusinessException{
21445 kshitij.so 363
		String response = null;
22319 amit.gupta 364
		// TODO: move to properties
365
		String uri = "getDealById/" + id;
366
		System.out.println("Unit deal " + uri);
23532 amit.gupta 367
		RestClient rc = new RestClient();
21445 kshitij.so 368
		Map<String, String> params = new HashMap<>();
369
		DealsResponse dealsResponse = null;
23532 amit.gupta 370
		try {
371
			response = rc.get(SchemeType.HTTP, host, port, uri, params);
372
		} catch (HttpHostConnectException e) {
373
			throw new ProfitMandiBusinessException("", "", "Could not connect to host");
374
		}
22931 ashik.ali 375
 
21445 kshitij.so 376
		JsonObject result_json = Json.parse(response).asObject();
22319 amit.gupta 377
		if (!result_json.isEmpty()) {
21445 kshitij.so 378
			dealsResponse = new Gson().fromJson(response, DealsResponse.class);
22952 amit.gupta 379
			Iterator<AvailabilityInfo> iter = dealsResponse.getAvailabilityInfo().iterator();
380
			while (iter.hasNext()){
381
				AvailabilityInfo ai = iter.next();
382
				if(ai.getAvailability() <= 0)
383
					iter.remove();
384
			}
21445 kshitij.so 385
		}
22952 amit.gupta 386
		/*final ProfitMandiResponse<?> profitMandiResponse = new ProfitMandiResponse<>(LocalDateTime.now(),
22319 amit.gupta 387
				request.getRequestURL().toString(), HttpStatus.OK.toString(), HttpStatus.OK, ResponseStatus.SUCCESS,
22952 amit.gupta 388
				dealsResponse);*/
389
		return responseSender.ok(dealsResponse);
21445 kshitij.so 390
	}
22333 amit.gupta 391
 
392
	@RequestMapping(value = "/fofo/brands", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE)
393
	public ResponseEntity<?> getBrandsToDisplay() {
394
		return new ResponseEntity<>(mongoClient.getBrandsToDisplay(), HttpStatus.OK);
395
	}
22401 amit.gupta 396
 
22446 amit.gupta 397
	@RequestMapping(value = "/banners/{bannerType}", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE)
22448 amit.gupta 398
	public ResponseEntity<?> getBanners(@PathVariable String bannerType) {
22447 amit.gupta 399
		return new ResponseEntity<>(mongoClient.getBannersByType(bannerType), HttpStatus.OK);
22446 amit.gupta 400
	}
23793 tejbeer 401
	@RequestMapping(value = "/deals/subCategories", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE)
402
	public ResponseEntity<?> getSubcategoriesToDisplay() {
403
		return new ResponseEntity<>(mongoClient.getSubcategoriesToDisplay(), HttpStatus.OK);
404
	}
22406 amit.gupta 405
	@ApiImplicitParams({
406
		@ApiImplicitParam(name = "Auth-Token", value = "Auth-Token", required = true, dataType = "string", paramType = "header") })	
22401 amit.gupta 407
	@RequestMapping(value = "/deals/skus/{skus}", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE)
22931 ashik.ali 408
	public ResponseEntity<?> getDealsBySkus(@PathVariable String skus) throws ProfitMandiBusinessException {
22401 amit.gupta 409
		StringBuffer sb = new StringBuffer("/getDealsForNotification/");
410
		String uri = sb.append(skus).toString();
23532 amit.gupta 411
		RestClient rc = new RestClient();
412
		String response;
413
		try {
414
			response = rc.get(SchemeType.HTTP, host, port, uri, new HashMap<>());
415
		}catch (HttpHostConnectException e) {
416
			throw new ProfitMandiBusinessException("", "", "Could not connect to host");
417
		}
22406 amit.gupta 418
		JsonArray result_json = Json.parse(response).asArray();
22407 amit.gupta 419
		List<Object> responseObject = new ArrayList<>();
420
		for (JsonValue j : result_json) {
22843 amit.gupta 421
			//logger.info("res " + j.asArray());
22407 amit.gupta 422
			List<Object> innerObject = new ArrayList<>();
423
			for (JsonValue jsonObject : j.asArray()) {
424
				innerObject.add(toDealObject(jsonObject.asObject()));
425
			}
426
			if (innerObject.size() > 0) {
427
				responseObject.add(innerObject);
428
			}
429
		}
22408 amit.gupta 430
		return responseSender.ok(responseObject);
22401 amit.gupta 431
	}
21339 kshitij.so 432
 
433
}