public function checkAuth($challengeId, $userId) { $outsideProject = $this->load($challengeId); if ($outsideProject) { if ($outsideProject->getStatus() == 3 || $outsideProject->getStatus() == 7) { return false; } elseif ($outsideProject->getProjectId() == 0) { return true; } elseif ($outsideProject->getProjectId() != 0) { $DAOFactory = new DAOFactory(); $projectDAO = $DAOFactory->getProjectsDAO(); $projectObj = $projectDAO->load($outsideProject->getProjectId()); if ($projectObj->getType() == 'Public') { return true; } elseif ($projectObj->getType() == 'Classified' || $projectObj->getType() == 'Private') { $sql = "SELECT teams.user_id FROM teams WHERE project_id = ? and user_id = ? and member_status = 1 ;"; $sqlQuery = new SqlQuery($sql); $sqlQuery->setNumber($outsideProject->getProjectId()); $sqlQuery->setNumber($userId); $activity = $this->getRowChallenge($sqlQuery); if ($activity) { return true; } else { return false; } } else { return false; } } else { return false; } } else { return false; } }
function __construct() { global $configs; $this->baseUrl = $configs["COLLAP_BASE_URL"]; $this->jobsBaseUrl = $configs["JOBS_COLLAP_BASE_URL"]; $this->url = rtrim($this->baseUrl, "/") . $_SERVER[REQUEST_URI]; global $logger; $this->logger = $logger; $this->logger->debug("BaseController started"); if (isset($_SESSION["user_id"])) { $this->userId = $_SESSION["user_id"]; $this->username = $_SESSION["username"]; $this->firstName = $_SESSION['first_name']; $this->lastName = $_SESSION['last_name']; } $DAOFactory = new DAOFactory(); $this->challengesDAO = $DAOFactory->getChallengesDAO(); $this->projectsDAO = $DAOFactory->getProjectsDAO(); $this->userInfoDAO = $DAOFactory->getUserInfoDAO(); $this->userSkillDAO = $DAOFactory->getSkillsDAO(); $this->challengeResponsesDAO = $DAOFactory->getChallengeResponsesDAO(); $this->projectResponsesDAO = $DAOFactory->getProjectResponsesDAO(); $this->teamsDAO = $DAOFactory->getTeamsDAO(); $this->notificationsDAO = $DAOFactory->getNotificationsDAO(); $this->userEducationDAO = $DAOFactory->getEducationDAO(); $this->userTechStrengthDAO = $DAOFactory->getTechnicalStrengthDAO(); $this->userWorkHistoryDAO = $DAOFactory->getWorkingHistoryDAO(); $this->userJobPreferenceDAO = $DAOFactory->getJobPreferenceDAO(); $this->userSkillsInsertDAO = $DAOFactory->getUserSkillsDAO(); $this->jobLocationsDAO = $DAOFactory->getWorkingLocationsDAO(); $this->userPreferredLocationsDAO = $DAOFactory->getUserLocationsDAO(); $this->involveInDAO = $DAOFactory->getInvolveInDAO(); $this->userSocialLinksDAO = $DAOFactory->getUserSocialLinksDAO(); $this->collaborativeRoleDAO = $DAOFactory->getUserCollaborativeRoleDAO(); $this->userPushFormsDAO = $DAOFactory->getFormsDAO(); $this->userPushFormsInsertDAO = $DAOFactory->getUserFormsDAO(); $this->userAccessAidDAO = $DAOFactory->getUserAccessAidDAO(); $this->process(); }
public function __construct() { $DAOFactory = new DAOFactory(); $this->collapDAO = $DAOFactory->getProjectsDAO(); }