public static function getFollowersPosts(UserId $uid, $lastid = null) { $arr = []; $followersList = RelationService::getUsersWhoIFollow($uid); for ($i = 0; $i < count($followersList); $i++) { $followersList[$i] = new UserId($followersList[$i]); } $followersList[] = UserService::getUserById($uid); $arr = self::getPostsOrderById($followersList, $lastid); return $arr; }
public function getUserData() { $id = Yii::$app->user->getId(); $uid = new UserId($id); $user = UserService::getUserById($uid); $this->view->params['userInfo'] = $user; ////////////////////////////////////////////////////// request service $notification = RequestService::getMyRequests($uid); $this->view->params['notification_data'] = $notification; $this->view->params['notification_count'] = count($notification); }
public function actionActivate($email, $token) { $user = UserService::getUserIdByEmail($email); if ($user == null) { Yii::$app->session->setFlash("error", Yii::t('app', 'Invalid email')); return $this->goHome(); } $activationToken = UserService::getUserActivationToken($user); if ($activationToken == null) { Yii::$app->session->setFlash("error", Yii::t('app', 'No activation token. Contact with admin.')); return $this->goHome(); } else { if ($token == $activationToken->getToken()) { UserService::activateUser($user); Yii::$app->session->setFlash("success", Yii::t('app', 'User has been activated')); return $this->goHome(); } else { Yii::$app->session->setFlash("error", Yii::t('app', 'Invalid token')); return $this->goHome(); } } }
public function actionView($uname) { /////////////////////////--- Profile Infos ---////////////////////////// $id = UserService::getUserIdByName($uname); if ($id === false) { throw new \yii\web\NotFoundHttpException("User cannot be found"); } $uid = new components\UserId($id); $myId = Yii::$app->user->getId(); $myUid = new components\UserId($myId); if ($id == $myId) { return $this->redirect('/profile'); } if (Yii::$app->request->isPost || Yii::$app->request->isPjax) { if (Yii::$app->user->can('relations-manage-own')) { $request = Yii::$app->request; if (!is_null($request->post('follow-btn')) && Yii::$app->user->can('relations-follow')) { RelationService::setRelation($myUid, $uid, RelationType::Follower); components\EventService::createEvent(components\EEvent::FOLLOWS(), $uid, false, $myUid); components\EventService::createEvent(components\EEvent::FOLLOWS(), $myUid, true, $uid); } if (!is_null($request->post('friend-btn')) && Yii::$app->user->can('relations-friend')) { RequestService::createRequest($myUid, $uid, RequestType::FriendRequest, date('Y-m-d H:i:s')); //to tutaj components\EventService::createEvent(components\EEvent::FRIEND_REQUEST_SENT(), $uid, false, $myUid); components\EventService::createEvent(components\EEvent::FRIEND_REQUEST_SENT(), $myUid, true, $uid); } if (!is_null($request->post('unfriend-btn'))) { RelationService::removeRelation($myUid, $uid, RelationType::Friend); components\EventService::createEvent(components\EEvent::UNFRIEND(), $uid, false, $myUid); components\EventService::createEvent(components\EEvent::UNFRIEND(), $myUid, true, $uid); } if (!is_null($request->post('unfollow-btn'))) { RelationService::removeRelation($myUid, $uid, RelationType::Follower); components\EventService::createEvent(components\EEvent::UNFOLLOWS(), $uid, false, $myUid); components\EventService::createEvent(components\EEvent::UNFOLLOWS(), $myUid, true, $uid); } if (!is_null(Yii::$app->request->post('type'))) { switch (Yii::$app->request->post('type')) { case 'newpost': $post_id = PostsService::createPost($uid, Yii::$app->request->post('inputText')); $pliks = $_FILES['kawaiiPicture']['tmp_name']; if ($pliks[0] != '') { PhotoService::addPostAttachmentPhoto($pliks, $post_id); } components\EventService::createEvent(components\EEvent::POST_CREATE(), $uid, false, $myUid); components\EventService::createEvent(components\EEvent::POST_CREATE(), $myUid, true, $uid); break; case 'newcomment': PostsService::createComment(PostsService::getPostById(Yii::$app->request->post('post_id')), Yii::$app->request->post('inputText')); components\EventService::createEvent(components\EEvent::COMMENT_CREATE(), $uid, false, $myUid); components\EventService::createEvent(components\EEvent::COMMENT_CREATE(), $myUid, true, $uid); break; case 'delete_post': $rep_post_id = Yii::$app->request->post('post_id'); PostsService::deletePost(PostsService::getPostById($rep_post_id)); components\EventService::createEvent(components\EEvent::POST_DELETE(), $uid, false, $myUid); components\EventService::createEvent(components\EEvent::POST_DELETE(), $myUid, true, $uid); break; case 'delete_comment': $rep_comment_id = Yii::$app->request->post('comment_id'); PostsService::deleteComment(PostsService::getCommentById($rep_comment_id)); components\EventService::createEvent(components\EEvent::COMMENT_DELETE(), $uid, false, $myUid); components\EventService::createEvent(components\EEvent::COMMENT_DELETE(), $myUid, true, $uid); break; } } } else { $this->redirect(["intouch/accessdenied"]); } if (!is_null(Yii::$app->request->post('type'))) { switch (Yii::$app->request->post('type')) { case 'like': $like_form_post_id = Yii::$app->request->post('post_id'); $like_form_score_elem = Yii::$app->request->post('score_elem'); $like_form_user_id = Yii::$app->request->post('user_id'); $score = new components\Score(EScoreType::like(), null, EScoreElem::$like_form_score_elem(), $like_form_post_id, new components\UserId($like_form_user_id)); $existing_scores = ScoreService::getScoresByElem(EScoreElem::post(), $like_form_post_id); $found = false; foreach ($existing_scores as $var) { $user = $var->getPublisher(); $userId = $user->getId(); if ((int) $like_form_user_id == $userId && (int) $like_form_post_id == $var->getElementId()) { $found = true; $found_score_id = $var->getScoreId(); } } if (!$found) { ScoreService::addScore($score); components\EventService::createEvent(components\EEvent::POST_LIKED(), $uid, false, $myUid); components\EventService::createEvent(components\EEvent::POST_LIKED(), $myUid, true, $uid); } else { ScoreService::revokeScore($found_score_id); components\EventService::createEvent(components\EEvent::POST_UNLIKED(), $uid, false, $myUid); components\EventService::createEvent(components\EEvent::POST_UNLIKED(), $myUid, true, $uid); } break; } } } $user = $uid->getUser(); $followers = count(RelationService::getUsersWhoFollowMe($uid)); $following = count(RelationService::getUsersWhoIFollow($uid)); $friends = count(RelationService::getFriendsList($uid)); /////$$$$$ FORMS $$$$$////////////////////////////////////////////////// ////////////////////////////--- Other stuff ---///////////////////////// $UserRelations = RelationService::getRelations($myUid, $uid); $isFriend = $UserRelations[RelationType::Friend]; if (!$isFriend) { if (RequestService::isRequestBetween($uid, $myUid, RequestType::FriendRequest)) { $isFriend = "Friend Request Sent"; } } $IFollow = $UserRelations[RelationType::Follower]; //***Do not add anything new below this line (except for the render)**** //$this->getUserData(); $posts = PostsService::getUserPosts($uid); $shared = ['user' => $user, 'followers' => $followers, 'following' => $following, 'friends' => $friends, 'UserFollowState' => $IFollow, 'UserFriendshipState' => $isFriend, 'posts' => $posts]; return $this->render('view', $shared); }
public function actionAboutedit() { $id = Yii::$app->user->getId(); $uid = new components\UserId($id); //////////////////////////// $loggedUser = $uid->getUser(); if (Yii::$app->request->isPost) { $loggedUser->setCity(Yii::$app->request->post('inputLocation')); $loggedUser->setEducation(Yii::$app->request->post('inputEducation')); $loggedUser->setAbout(Yii::$app->request->post('inputNotes')); try { $bdate = Yii::$app->request->post('inputDate'); if (strtotime($bdate) - time() > 0) { Yii::$app->session->setFlash('error', 'Hello! It\'s date from future!'); return $this->redirect('/profile/aboutedit'); } $loggedUser->setBirthDate(new \DateTime($bdate)); UserService::saveUser($loggedUser); } catch (\common\components\exceptions\InvalidDateException $e) { Yii::$app->session->setFlash('error', 'Invalid date'); return $this->redirect('/profile/aboutedit'); } EventService::createEvent(components\EEvent::ACCOUNT_INFO_CHANGED(), $uid); Yii::$app->session->setFlash('success', 'Profile\'s been Succesfuly Updated'); return $this->redirect('/profile'); } $this->getUserData(); // refresh return $this->render('aboutEdit', []); }
private static function createReqObj($user1_id, $date, $req_id, $req_type) { $u1uid = new UserId($user1_id); $u1 = UserService::getUserById($u1uid); $uname = $u1->getUsername(); $fullname = $u1->getFullName(); return ['type' => $req_type, 'req_id' => $req_id, 'senderUserName' => $uname, 'date' => $date, 'fullname' => $fullname]; }
public function getUser() { return UserService::getUserById($this); }
/** * Returns an array of friends of User1 * @param int $user1_id User's ID * @return int[] Array of User's ID */ public static function getFriendsList(UserId $user1id) { $user1_id = $user1id->getId(); $arr = []; $rel = Relationship::find()->where(['user1_id' => $user1_id, 'relation_type' => RelationType::Friend])->all(); $rel2 = Relationship::find()->where(['user2_id' => $user1_id, 'relation_type' => RelationType::Friend])->all(); foreach ($rel as $var) { $u2id = new UserId($var->user2_id); $arr[] = UserService::getUserById($u2id); } foreach ($rel2 as $var) { $u1id = new UserId($var->user1_id); $arr[] = UserService::getUserById($u1id); } return $arr; }