getPermissionObject()->Check( 'user_review', 'enabled' ) || !( $this->getPermissionObject()->Check( 'user_review', 'view' ) || $this->getPermissionObject()->Check( 'user_review', 'view_own' ) || $this->getPermissionObject()->Check( 'user_review', 'view_child' ) ) ) ) { $name = 'list_columns'; } return parent::getOptions( $name, $parent ); } /** * @return array */ function getUserReviewDefaultData() { $company_obj = $this->getCurrentCompanyObject(); Debug::Text( 'Getting user review control default data...', __FILE__, __LINE__, __METHOD__, 10 ); $data = [ 'company_id' => $company_obj->getId(), ]; return $this->returnHandler( $data ); } /** * @param array $data filter data * @param bool $disable_paging * @return array|bool */ function getUserReview( $data = null, $disable_paging = false ) { $data = $this->initializeFilterAndPager( $data, $disable_paging ); if ( $this->getPermissionObject()->checkAuthenticationType( 700 ) == false ) { //700=HTTP Auth with username/password return $this->getPermissionObject()->AuthenticationTypeDenied(); } if ( !$this->getPermissionObject()->Check( 'user_review', 'enabled' ) || !( $this->getPermissionObject()->Check( 'user_review', 'view' ) || $this->getPermissionObject()->Check( 'user_review', 'view_own' ) || $this->getPermissionObject()->Check( 'user_review', 'view_child' ) ) ) { return $this->getPermissionObject()->PermissionDenied(); } $data['filter_data']['permission_children_ids'] = $this->getPermissionObject()->getPermissionChildren( 'user_review', 'view' ); $urlf = TTnew( 'UserReviewListFactory' ); /** @var UserReviewListFactory $urlf */ $urlf->getAPISearchByCompanyIdAndArrayCriteria( $this->getCurrentCompanyObject()->getId(), $data['filter_data'], $data['filter_items_per_page'], $data['filter_page'], null, $data['filter_sort'] ); Debug::Text( 'Record Count: ' . $urlf->getRecordCount(), __FILE__, __LINE__, __METHOD__, 10 ); if ( $urlf->getRecordCount() > 0 ) { $this->setPagerObject( $urlf ); Debug::Arr( $data, 'Searching Data: ', __FILE__, __LINE__, __METHOD__, 10 ); $retarr = []; foreach ( $urlf as $ur_obj ) { $retarr[] = $ur_obj->getObjectAsArray( $data['filter_columns'], $data['filter_data']['permission_children_ids'] ); } Debug::Arr( $retarr, 'Getting Data: ', __FILE__, __LINE__, __METHOD__, 10 ); return $this->returnHandler( $retarr ); } return $this->returnHandler( true ); //No records returned. } /** * Get only the fields that are common across all records in the search criteria. Used for Mass Editing of records. * @param array $data filter data * @return array */ function getCommonUserReviewData( $data ) { return Misc::arrayIntersectByRow( $this->stripReturnHandler( $this->getUserReview( $data, true ) ) ); } /** * @param array $data user review data * @return array */ function validateUserReview( $data ) { return $this->setUserReview( $data, true ); } /** * @param array $data user review data * @param bool $validate_only * @param bool $ignore_warning * @return array|bool */ function setUserReview( $data, $validate_only = false, $ignore_warning = true ) { $validate_only = (bool)$validate_only; $ignore_warning = (bool)$ignore_warning; if ( !is_array( $data ) ) { return $this->returnHandler( false ); } if ( $this->getPermissionObject()->checkAuthenticationType( 700 ) == false ) { //700=HTTP Auth with username/password return $this->getPermissionObject()->AuthenticationTypeDenied(); } if ( !$this->getPermissionObject()->Check( 'user_review', 'enabled' ) || !( $this->getPermissionObject()->Check( 'user_review', 'edit' ) || $this->getPermissionObject()->Check( 'user_review', 'edit_own' ) || $this->getPermissionObject()->Check( 'user_review', 'edit_child' ) || $this->getPermissionObject()->Check( 'user_review', 'add' ) ) ) { return $this->getPermissionObject()->PermissionDenied(); } if ( $validate_only == true ) { Debug::Text( 'Validating Only!', __FILE__, __LINE__, __METHOD__, 10 ); $permission_children_ids = false; } else { //Get Permission Hierarchy Children first, as this can be used for viewing, or editing. $permission_children_ids = $this->getPermissionChildren(); } [ $data, $total_records ] = $this->convertToMultipleRecords( $data ); Debug::Arr( $data, 'Data: ', __FILE__, __LINE__, __METHOD__, 10 ); $validator_stats = [ 'total_records' => $total_records, 'valid_records' => 0 ]; $validator = $save_result = []; $key = false; if ( is_array( $data ) && $total_records > 0 ) { foreach ( $data as $key => $row ) { $primary_validator = new Validator(); $lf = TTnew( 'UserReviewListFactory' ); /** @var UserReviewListFactory $lf */ $lf->StartTransaction(); if ( isset( $row['id'] ) && $row['id'] != '' ) { //Modifying existing object. //Get Kpi object, so we can only modify just changed data for specific records if needed. $lf->getByIdAndCompanyId( $row['id'], $this->getCurrentCompanyObject()->getId() ); if ( $lf->getRecordCount() == 1 ) { //Object exists, check edit permissions if ( $validate_only == true || ( $this->getPermissionObject()->Check( 'user_review', 'edit' ) || ( $this->getPermissionObject()->Check( 'user_review', 'edit_own' ) && $this->getPermissionObject()->isOwner( $lf->getCurrent()->getColumn( 'user_id' ) ) === true ) //Make sure we check against the employee the review is assigned too. || ( $this->getPermissionObject()->Check( 'user_review', 'edit_child' ) && $this->getPermissionObject()->isChild( $lf->getCurrent()->getColumn( 'user_id' ), $permission_children_ids ) === true ) //Make sure we check against the employee the review is assigned too. ) ) { Debug::Text( 'Row Exists, getting current data for ID: ' . $row['id'], __FILE__, __LINE__, __METHOD__, 10 ); $lf = $lf->getCurrent(); $row = array_merge( $lf->getObjectAsArray(), $row ); } else { $primary_validator->isTrue( 'user_review', false, TTi18n::gettext( 'Edit permission denied' ) ); } } else { //Object doesn't exist. $primary_validator->isTrue( 'id', false, TTi18n::gettext( 'Edit permission denied, record does not exist' ) ); } } else { //Adding new object, check ADD permissions. $primary_validator->isTrue( 'user_review', $this->getPermissionObject()->Check( 'user_review', 'add' ), TTi18n::gettext( 'Add permission denied' ) ); //Because this class has sub-classes that depend on it, when adding a new record we need to make sure the ID is set first, //so the sub-classes can depend on it. We also need to call Save( TRUE, TRUE ) to force a lookup on isNew() $row['id'] = $lf->getNextInsertId(); } Debug::Arr( $row, 'Data: ', __FILE__, __LINE__, __METHOD__, 10 ); $is_valid = $primary_validator->isValid(); if ( $is_valid == true ) { //Check to see if all permission checks passed before trying to save data. Debug::Text( 'Setting object data...', __FILE__, __LINE__, __METHOD__, 10 ); Debug::Arr( $row, 'Setting object data...', __FILE__, __LINE__, __METHOD__, 10 ); $lf->setObjectFromArray( $row ); $is_valid = $lf->isValid( $ignore_warning ); if ( $is_valid == true ) { Debug::Text( 'Saving data...', __FILE__, __LINE__, __METHOD__, 10 ); if ( $validate_only == true ) { $save_result[$key] = true; } else { $save_result[$key] = $lf->Save( true, true ); //Force lookup on isNew() } $validator_stats['valid_records']++; } } if ( $is_valid == false ) { Debug::Text( 'Data is Invalid...', __FILE__, __LINE__, __METHOD__, 10 ); $lf->FailTransaction(); //Just rollback this single record, continue on to the rest. $validator[$key] = $this->setValidationArray( [ $primary_validator, $lf ] ); } else if ( $validate_only == true ) { $lf->FailTransaction(); } $lf->CommitTransaction(); } return $this->handleRecordValidationResults( $validator, $validator_stats, $key, $save_result ); } return $this->returnHandler( false ); } /** * @param array $data user review control data * @return array|bool */ function deleteUserReview( $data ) { if ( !is_array( $data ) ) { $data = [ $data ]; } if ( !is_array( $data ) ) { return $this->returnHandler( false ); } if ( $this->getPermissionObject()->checkAuthenticationType( 700 ) == false ) { //700=HTTP Auth with username/password return $this->getPermissionObject()->AuthenticationTypeDenied(); } if ( !$this->getPermissionObject()->Check( 'user_review', 'enabled' ) || !( $this->getPermissionObject()->Check( 'user_review', 'delete' ) || $this->getPermissionObject()->Check( 'user_review', 'delete_own' ) || $this->getPermissionObject()->Check( 'user_review', 'delete_child' ) ) ) { return $this->getPermissionObject()->PermissionDenied(); } $permission_children_ids = $this->getPermissionChildren(); Debug::Arr( $data, 'Data: ', __FILE__, __LINE__, __METHOD__, 10 ); $total_records = count( $data ); $validator = $save_result = []; $key = false; $validator_stats = [ 'total_records' => $total_records, 'valid_records' => 0 ]; if ( is_array( $data ) && $total_records > 0 ) { foreach ( $data as $key => $id ) { $primary_validator = new Validator(); $lf = TTnew( 'UserReviewListFactory' ); /** @var UserReviewListFactory $lf */ $lf->StartTransaction(); if ( $id != '' ) { //Modifying existing object. //Get Kpi object, so we can only modify just changed data for specific records if needed. $lf->getByIdAndCompanyId( $id, $this->getCurrentCompanyObject()->getId() ); if ( $lf->getRecordCount() == 1 ) { //Object exists, check edit permissions if ( $this->getPermissionObject()->Check( 'user_review', 'delete' ) || ( $this->getPermissionObject()->Check( 'user_review', 'delete_own' ) && $this->getPermissionObject()->isOwner( $lf->getCurrent()->getCreatedBy() ) === true ) || ( $this->getPermissionObject()->Check( 'user_review', 'delete_child' ) && $this->getPermissionObject()->isChild( $lf->getCurrent()->getCreatedBy(), $permission_children_ids ) === true ) ) { Debug::Text( 'Record Exists, deleting record ID: ' . $id, __FILE__, __LINE__, __METHOD__, 10 ); $lf = $lf->getCurrent(); } else { $primary_validator->isTrue( 'user_review', false, TTi18n::gettext( 'Delete permission denied' ) ); } } else { //Object doesn't exist. $primary_validator->isTrue( 'id', false, TTi18n::gettext( 'Delete permission denied, record does not exist' ) ); } } else { $primary_validator->isTrue( 'id', false, TTi18n::gettext( 'Delete permission denied, record does not exist' ) ); } //Debug::Arr($lf, 'AData: ', __FILE__, __LINE__, __METHOD__, 10); $is_valid = $primary_validator->isValid(); if ( $is_valid == true ) { //Check to see if all permission checks passed before trying to save data. Debug::Text( 'Attempting to delete record...', __FILE__, __LINE__, __METHOD__, 10 ); $lf->setDeleted( true ); $is_valid = $lf->isValid(); if ( $is_valid == true ) { Debug::Text( 'Record Deleted...', __FILE__, __LINE__, __METHOD__, 10 ); $save_result[$key] = $lf->Save(); $validator_stats['valid_records']++; } } if ( $is_valid == false ) { Debug::Text( 'Data is Invalid...', __FILE__, __LINE__, __METHOD__, 10 ); $lf->FailTransaction(); //Just rollback this single record, continue on to the rest. $validator[$key] = $this->setValidationArray( [ $primary_validator, $lf ] ); } $lf->CommitTransaction(); } return $this->handleRecordValidationResults( $validator, $validator_stats, $key, $save_result ); } return $this->returnHandler( false ); } /** * @param array $data user review control IDs * @return array */ function copyUserReview( $data ) { if ( !is_array( $data ) ) { $data = [ $data ]; } if ( !is_array( $data ) ) { return $this->returnHandler( false ); } Debug::Arr( $data, 'Data: ', __FILE__, __LINE__, __METHOD__, 10 ); $src_rows = $this->stripReturnHandler( $this->getUserReview( [ 'filter_data' => [ 'id' => $data ] ], true ) ); if ( is_array( $src_rows ) && count( $src_rows ) > 0 ) { Debug::Arr( $src_rows, 'SRC Rows: ', __FILE__, __LINE__, __METHOD__, 10 ); foreach ( $src_rows as $key => $row ) { unset( $src_rows[$key]['id'] ); //Clear fields that can't be copied } unset( $row ); //code standards //Debug::Arr($src_rows, 'bSRC Rows: ', __FILE__, __LINE__, __METHOD__, 10); return $this->setUserReview( $src_rows ); //Save copied rows } return $this->returnHandler( false ); } } ?>