Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
13532 anikendra 1
<?php
2
App::uses('AppController', 'Controller');
3
/**
4
 * SocialProfiles Controller
5
 *
6
 * @property SocialProfile $SocialProfile
7
 * @property PaginatorComponent $Paginator
8
 */
9
class SocialProfilesController extends AppController {
10
 
11
/**
12
 * Components
13
 *
14
 * @var array
15
 */
16
	public $components = array('Paginator');
17
 
18
	public function beforeFilter() {
19
		parent::beforeFilter();
15767 anikendra 20
		$this->Auth->allow('add','identifyUser');
13532 anikendra 21
		$callback = $this->request->query('callback');
13946 anikendra 22
		//Configure::load('dev');
13673 anikendra 23
		$this->apihost = Configure::read('saholicapihost');
13532 anikendra 24
	}
25
/**
26
 * index method
27
 *
28
 * @return void
29
 */
30
	public function index() {
31
		throw new NotFoundException(__('Access Denied'));
32
		$this->SocialProfile->recursive = 0;
33
		$this->set('socialProfiles', $this->Paginator->paginate());
34
	}
35
 
36
/**
37
 * view method
38
 *
39
 * @throws NotFoundException
40
 * @param string $id
41
 * @return void
42
 */
43
	public function view($id = null) {
44
		throw new NotFoundException(__('Access Denied'));
45
		if (!$this->SocialProfile->exists($id)) {
46
			throw new NotFoundException(__('Invalid social profile'));
47
		}
48
		$options = array('conditions' => array('SocialProfile.' . $this->SocialProfile->primaryKey => $id));
49
		$this->set('socialProfile', $this->SocialProfile->find('first', $options));
50
	}
51
 
52
/**
53
 * add method
54
 *
55
 * @return void
56
 */
57
	public function add() {
14068 anikendra 58
		$mobileRequired = true;
14768 anikendra 59
		$referrerRequired = true;
13532 anikendra 60
		if ($this->request->is('post')) {
13633 anikendra 61
			$this->log(print_r($this->request->data,1),'registration');
13532 anikendra 62
			$data = $this->request->data;
63
			$data['social_id'] = $this->request->data['id'];
64
			$data['access_token'] = $this->request->data['token'];
65
			unset($data['id']);
66
			unset($data['token']);
67
			unset($data['gender']);
68
			$this->response->type('json');
69
			$this->layout = 'ajax';
70
			$conditions = array('social_id'=>$this->request->data['id'],'type'=>$this->request->data['type']);
71
			$socialProfile = $this->SocialProfile->find('first',array('conditions'=>$conditions));
14783 anikendra 72
			//If Social profile doesn't exist
73
			if(empty($socialProfile)) {
13532 anikendra 74
				//Check if user with same email is registered and if so just add his profile
13659 anikendra 75
				if(!empty($this->request->data['email'])) {
76
					$conditions = array('email'=>$this->request->data['email']);
77
					$user = $this->SocialProfile->User->find('first',array('conditions'=>$conditions));
14783 anikendra 78
					/*if(!empty($this->request->data['referrer']) || !empty($this->request->data['utm_campaign'])){
14768 anikendra 79
						$referrerRequired = false;
14783 anikendra 80
					}*/
13659 anikendra 81
					if(!empty($user)) {
14068 anikendra 82
						//Existing user
83
						if(!empty($user['User']['mobile_number'])){
84
							$mobileRequired = false;
85
						}
14783 anikendra 86
						if(!empty($user['User']['activated']) && $user['User']['activated']==1) {
14768 anikendra 87
							$referrerRequired = false;
88
						}
17205 anikendra 89
						//We don't need to update the user 
90
						//$userData = array('id'=>$user['User']['id'],'email'=>$this->request->data['email'],'username'=>$this->request->data['email'],'first_name'=>$this->request->data['name'],'gender'=>$this->request->data['gender'],'profile_pic'=> $this->request->data['profile_pic']);
91
						//$this->SocialProfile->User->save($userData);
13659 anikendra 92
						$data['user_id'] = $user['User']['id'];	
14884 anikendra 93
					} else {						
13659 anikendra 94
						//Create a new user and then insert user_id in social_profiles table
13769 anikendra 95
						$userData = array('profile_pic'=> $this->request->data['profile_pic'], 'email'=>$this->request->data['email'],'username'=>$this->request->data['email'],'first_name'=>$this->request->data['name'],'gender'=>$this->request->data['gender'],'referrer'=>$this->request->data['referrer']);
14768 anikendra 96
						//Check for utm parameters
14702 anikendra 97
						if(!empty($this->request->data['utm_source'])){
98
							$userData['utm_source'] = $this->request->data['utm_source'];
99
						}
100
						if(!empty($this->request->data['utm_medium'])){
101
							$userData['utm_medium'] = $this->request->data['utm_medium'];
102
						}
103
						if(!empty($this->request->data['utm_term'])){
104
							$userData['utm_term'] = $this->request->data['utm_term'];
105
						}
106
						if(!empty($this->request->data['utm_content'])){
107
							$userData['utm_content'] = $this->request->data['utm_content'];
108
						}
109
						if(!empty($this->request->data['utm_campaign'])){
110
							$userData['utm_campaign'] = $this->request->data['utm_campaign'];
111
						}
14783 anikendra 112
						if(!empty($this->request->data['utm_campaign']) || !empty($this->request->data['referrer'])) {
15654 anikendra 113
							if(!empty($this->request->data['utm_campaign'])) {
114
								$referrer = $this->request->data['utm_campaign'];								
115
							}elseif (!empty($this->request->data['referrer'])) {
116
								$referrer = $this->request->data['referrer'];
117
							}
118
							$this->log(print_r($referrer,1),'activations');	
119
			        		$this->loadModel('ActivationCode');
120
			        		$exists = $this->ActivationCode->findByCode(strtoupper($referrer));
121
			        		$this->log(print_r($exists,1),'activations');
122
			        		if(empty($exists)){
123
			        			$referrerRequired = true;
124
			        		} else {
125
			        			$userData['activated'] = 1;							
126
			        			$referrerRequired = false;
127
			        		}														
14783 anikendra 128
						}
13659 anikendra 129
						if($this->SocialProfile->User->save($userData)) {
14424 anikendra 130
							$data['user_id'] = $this->SocialProfile->User->getLastInsertId();
14068 anikendra 131
						} else{
14768 anikendra 132
							$result = array('success' => false, 'message' => $this->SocialProfile->User->validationErrors,'mobileRequired'=>$mobileRequired,'referrerRequired'=>$referrerRequired);
13659 anikendra 133
							break;
134
						}
13532 anikendra 135
					}
13659 anikendra 136
					$this->SocialProfile->create();
137
					if ($this->SocialProfile->save($data)) {
14768 anikendra 138
						$result = array('success' => true, 'message' => 'Social Profile Created','id' => $data['user_id'],'mobileRequired'=>$mobileRequired,'referrerRequired'=>$referrerRequired);
15378 anikendra 139
						if(!$referrerRequired) {
140
							$this->markUserActivated($data['user_id']);
141
						}
13659 anikendra 142
					} else {
14783 anikendra 143
						$result = array('success' => false, 'message' => 'Social Profile Could Not Be Created','id' => -1,'mobileRequired'=>$mobileRequired,'referrerRequired'=>$referrerRequired);
13659 anikendra 144
					}
13532 anikendra 145
				} else {
14783 anikendra 146
					$result = array('success' => false, 'message' => "Email is missing",'mobileRequired'=>$mobileRequired,'referrerRequired'=>$referrerRequired);
13659 anikendra 147
					break;
148
				}				
13532 anikendra 149
			} else {
17205 anikendra 150
				//If Social Profile exists, do not update referrer and email
151
				$userData = array('id'=>$socialProfile['SocialProfile']['user_id'],'first_name'=>$this->request->data['name'],'gender'=>$this->request->data['gender'],'profile_pic'=> $this->request->data['profile_pic']);
14768 anikendra 152
				//Check for utm parameters
153
				if(!empty($this->request->data['utm_source'])){
154
					$userData['utm_source'] = $this->request->data['utm_source'];
155
				}
156
				if(!empty($this->request->data['utm_medium'])){
157
					$userData['utm_medium'] = $this->request->data['utm_medium'];
158
				}
159
				if(!empty($this->request->data['utm_term'])){
160
					$userData['utm_term'] = $this->request->data['utm_term'];
161
				}
162
				if(!empty($this->request->data['utm_content'])){
163
					$userData['utm_content'] = $this->request->data['utm_content'];
164
				}
165
				if(!empty($this->request->data['utm_campaign'])){
166
					$userData['utm_campaign'] = $this->request->data['utm_campaign'];
167
				}				
13768 anikendra 168
				$this->SocialProfile->User->save($userData);
14890 anikendra 169
				//Update token ra
170
				$socialProfile['SocialProfile']['access_token'] = $data['access_token'];
171
				$this->SocialProfile->save($socialProfile);
14139 anikendra 172
				//Check for mobile number
173
				$mobilenumber = $this->SocialProfile->User->find('first',array('conditions'=>array('id'=>$socialProfile['SocialProfile']['user_id']),'recursive'=>-1));
174
				if(!empty($mobilenumber['User']['mobile_number'])){
175
					$mobileRequired = false;
176
				}
14783 anikendra 177
				//Check if activated feild is set or not.
178
				if(!empty($mobilenumber['User']['activated'])) {
14768 anikendra 179
					$referrerRequired = false;
180
				}
13683 anikendra 181
				$data['user_id'] = $socialProfile['SocialProfile']['user_id'];
14768 anikendra 182
				$result = array('success' => true, 'message' => 'Existing Social Profile','id' => $socialProfile['SocialProfile']['user_id'],'mobileRequired'=>$mobileRequired,'referrerRequired'=>$referrerRequired);
13591 anikendra 183
			}
13532 anikendra 184
		}
13673 anikendra 185
		$this->updateSaholicUser($data['user_id'],$this->request->data['email']);
13532 anikendra 186
		$this->set(array(
187
		    'result' => $result,
188
		    'callback' => $callback,
189
		    '_serialize' => array('result')
190
		));
14425 anikendra 191
		$this->log(print_r($result,1),'registration');
15767 anikendra 192
		//$this->identifyUser($data['user_id']);
13532 anikendra 193
		$this->render('/Elements/json');
194
	}
195
 
15606 anikendra 196
	private function identifyUser($id) {
197
		$options = array('conditions'=>array('id'=>$id),'recursive'=>-1);
198
		$user = $this->User->find('first',$options);
15767 anikendra 199
		$this->log("[Identify] ".print_r($user,1),'registration');
15606 anikendra 200
		$pmaurl = Configure::read('pmaurl');
201
		if(!empty($user)) {
202
			$data = array('id'=>$user['User']['id'],'email'=>$user['User']['email'],'mobilenumber'=>$user['User']['mobilenumber'],'name'=>$user['User']['first_name'],'referral_code'=>$user['User']['referrer']);
203
			$this->post_request($pmaurl.'/identify',$data);	
204
		}
205
	}
206
 
13673 anikendra 207
	private function updateSaholicUser($userId,$email=null) {
208
		if(!$email){
209
			//Handle it properly
210
			return;
211
		}
13683 anikendra 212
		$this->log('userId '.$userId,'registration');
213
		$this->log('email '.$email ,'registration');
13673 anikendra 214
		$this->loadModel('UserAccount');
215
		$options = array('conditions'=>array('user_id' => $userId,'account_type' => 'saholic'),'recursive'=>-1);
216
		$exists = $this->UserAccount->find('count',$options);
217
		if(!$exists){
14685 anikendra 218
			$url = $this->apihost."register?email=$email&from=profitmandi";
13673 anikendra 219
			$response = $this->make_request($url,null);
13683 anikendra 220
			$this->log('response '.print_r($response,1),'registration');
13673 anikendra 221
			if(!empty($response)){
14685 anikendra 222
				if($response['userId']<1)return;
13673 anikendra 223
				$data = array('account_type'=>'saholic','user_id'=>$userId,'account_key'=>$response['userId']);
224
				$this->UserAccount->create();
13683 anikendra 225
				$this->UserAccount->save($data);
14166 anikendra 226
				$data = array('account_type'=>'cartId','user_id'=>$userId,'account_key'=>$response['cartId']);
227
				$this->UserAccount->create();
228
				$this->UserAccount->save($data);
13673 anikendra 229
			}
230
		}
231
	}
13532 anikendra 232
/**
233
 * edit method
234
 *
235
 * @throws NotFoundException
236
 * @param string $id
237
 * @return void
238
 */
239
	public function edit($id = null) {
240
		if (!$this->SocialProfile->exists($id)) {
241
			throw new NotFoundException(__('Invalid social profile'));
242
		}
243
		if ($this->request->is(array('post', 'put'))) {
244
			if ($this->SocialProfile->save($this->request->data)) {
245
				$this->Session->setFlash(__('The social profile has been saved.'));
246
				return $this->redirect(array('action' => 'index'));
247
			} else {
248
				$this->Session->setFlash(__('The social profile could not be saved. Please, try again.'));
249
			}
250
		} else {
251
			$options = array('conditions' => array('SocialProfile.' . $this->SocialProfile->primaryKey => $id));
252
			$this->request->data = $this->SocialProfile->find('first', $options);
253
		}
254
		$users = $this->SocialProfile->User->find('list');
255
		$this->set(compact('users'));
256
	}
257
 
258
/**
259
 * delete method
260
 *
261
 * @throws NotFoundException
262
 * @param string $id
263
 * @return void
264
 */
265
	public function delete($id = null) {
266
		throw new NotFoundException(__('Access Denied'));
267
		$this->SocialProfile->id = $id;
268
		if (!$this->SocialProfile->exists()) {
269
			throw new NotFoundException(__('Invalid social profile'));
270
		}
271
		$this->request->onlyAllow('post', 'delete');
272
		if ($this->SocialProfile->delete()) {
273
			$this->Session->setFlash(__('The social profile has been deleted.'));
274
		} else {
275
			$this->Session->setFlash(__('The social profile could not be deleted. Please, try again.'));
276
		}
277
		return $this->redirect(array('action' => 'index'));
278
	}
279
 
280
/**
281
 * admin_index method
282
 *
283
 * @return void
284
 */
285
	public function admin_index() {
286
		$this->SocialProfile->recursive = 0;
287
		$this->set('socialProfiles', $this->Paginator->paginate());
288
	}
289
 
290
/**
291
 * admin_view method
292
 *
293
 * @throws NotFoundException
294
 * @param string $id
295
 * @return void
296
 */
297
	public function admin_view($id = null) {
298
		if (!$this->SocialProfile->exists($id)) {
299
			throw new NotFoundException(__('Invalid social profile'));
300
		}
301
		$options = array('conditions' => array('SocialProfile.' . $this->SocialProfile->primaryKey => $id));
302
		$this->set('socialProfile', $this->SocialProfile->find('first', $options));
303
	}
304
 
305
/**
306
 * admin_add method
307
 *
308
 * @return void
309
 */
310
	public function admin_add() {
311
		if ($this->request->is('post')) {
312
			$this->SocialProfile->create();
313
			if ($this->SocialProfile->save($this->request->data)) {
314
				$this->Session->setFlash(__('The social profile has been saved.'));
315
				return $this->redirect(array('action' => 'index'));
316
			} else {
317
				$this->Session->setFlash(__('The social profile could not be saved. Please, try again.'));
318
			}
319
		}
320
		$users = $this->SocialProfile->User->find('list');
321
		$this->set(compact('users'));
322
	}
323
 
324
/**
325
 * admin_edit method
326
 *
327
 * @throws NotFoundException
328
 * @param string $id
329
 * @return void
330
 */
331
	public function admin_edit($id = null) {
332
		if (!$this->SocialProfile->exists($id)) {
333
			throw new NotFoundException(__('Invalid social profile'));
334
		}
335
		if ($this->request->is(array('post', 'put'))) {
336
			if ($this->SocialProfile->save($this->request->data)) {
337
				$this->Session->setFlash(__('The social profile has been saved.'));
338
				return $this->redirect(array('action' => 'index'));
339
			} else {
340
				$this->Session->setFlash(__('The social profile could not be saved. Please, try again.'));
341
			}
342
		} else {
343
			$options = array('conditions' => array('SocialProfile.' . $this->SocialProfile->primaryKey => $id));
344
			$this->request->data = $this->SocialProfile->find('first', $options);
345
		}
346
		$users = $this->SocialProfile->User->find('list');
347
		$this->set(compact('users'));
348
	}
349
 
350
/**
351
 * admin_delete method
352
 *
353
 * @throws NotFoundException
354
 * @param string $id
355
 * @return void
356
 */
357
	public function admin_delete($id = null) {
358
		$this->SocialProfile->id = $id;
359
		if (!$this->SocialProfile->exists()) {
360
			throw new NotFoundException(__('Invalid social profile'));
361
		}
362
		$this->request->onlyAllow('post', 'delete');
363
		if ($this->SocialProfile->delete()) {
364
			$this->Session->setFlash(__('The social profile has been deleted.'));
365
		} else {
366
			$this->Session->setFlash(__('The social profile could not be deleted. Please, try again.'));
367
		}
368
		return $this->redirect(array('action' => 'index'));
369
	}}