TTi18n::gettext( 'Name' ), '-1020-description' => TTi18n::gettext( 'Description' ), '-1030-script_name' => TTi18n::gettext( 'Report' ), '-1040-is_default' => TTi18n::gettext( 'Default' ), '-1050-is_scheduled' => TTi18n::gettext( 'Scheduled' ), '-2000-created_by' => TTi18n::gettext( 'Created By' ), '-2010-created_date' => TTi18n::gettext( 'Created Date' ), '-2020-updated_by' => TTi18n::gettext( 'Updated By' ), '-2030-updated_date' => TTi18n::gettext( 'Updated Date' ), ]; break; case 'list_columns': $retval = Misc::arrayIntersectByKey( $this->getOptions( 'default_display_columns' ), Misc::trimSortPrefix( $this->getOptions( 'columns' ) ) ); break; case 'default_display_columns': //Columns that are displayed by default. $retval = [ 'name', 'script_name', 'description', 'is_default', ]; break; case 'unique_columns': //Columns that are unique, and disabled for mass editing. $retval = [ 'name', 'description', ]; break; } return $retval; } /** * @param $data * @return array */ function _getVariableToFunctionMap( $data ) { $variable_function_map = [ 'id' => 'ID', 'company_id' => 'Company', 'user_id' => 'User', 'script' => 'Script', 'script_name' => false, 'name' => 'Name', 'is_default' => 'Default', 'is_scheduled' => false, 'description' => 'Description', 'data' => 'Data', 'deleted' => 'Deleted', ]; return $variable_function_map; } /** * @return bool */ function getUserObject() { return $this->getGenericObject( 'UserListFactory', $this->getUser(), 'user_obj' ); } /** * @return bool|null */ function getObjectHandler() { if ( is_object( $this->obj_handler ) ) { return $this->obj_handler; } else { $class = $this->getScript(); if ( class_exists( $class, true ) ) { $this->obj_handler = new $class(); return $this->obj_handler; } return false; } } /** * @return bool|mixed */ function getCompany() { return $this->getGenericDataValue( 'company_id' ); } /** * @param string $value UUID * @return bool */ function setCompany( $value ) { $value = TTUUID::castUUID( $value ); return $this->setGenericDataValue( 'company_id', $value ); } /** * @return bool|mixed */ function getUser() { return $this->getGenericDataValue( 'user_id' ); } /** * @param string $value UUID * @return bool */ function setUser( $value ) { $value = TTUUID::castUUID( $value ); return $this->setGenericDataValue( 'user_id', $value ); } /** * @return bool|mixed */ function getScript() { return $this->getGenericDataValue( 'script' ); } /** * @param $value * @return bool */ function setScript( $value ) { //Strip out double slashes, as sometimes those occur and they cause the saved settings to not appear. $value = self::handleScriptName( trim( $value ) ); return $this->setGenericDataValue( 'script', $value ); } /** * @param $name * @return bool */ function isUniqueName( $name ) { if ( $this->getCompany() == false ) { return false; } //Allow no user_id to be set yet, as that would be company generic data. if ( $this->getScript() == false ) { return false; } $name = trim( $name ); if ( $name == '' ) { return false; } $ph = [ 'company_id' => TTUUID::castUUID( $this->getCompany() ), 'script' => $this->getScript(), 'name' => TTi18n::strtolower( $name ), ]; $query = 'select id from ' . $this->getTable() . ' where company_id = ? AND script = ? AND lower(name) = ? '; if ( $this->getUser() != '' ) { $query .= ' AND user_id = \'' . TTUUID::castUUID( $this->getUser() ) . '\''; } else { $query .= ' AND user_id is NULL '; } $query .= ' AND deleted = 0'; $name_id = $this->db->GetOne( $query, $ph ); Debug::Arr( $name_id, 'Unique Name: ' . $name, __FILE__, __LINE__, __METHOD__, 10 ); if ( $name_id === false ) { return true; } else { if ( $name_id == $this->getId() ) { return true; } } return false; } /** * @return bool|mixed */ function getName() { return $this->getGenericDataValue( 'name' ); } /** * @param $value * @return bool */ function setName( $value ) { $value = trim( $value ); return $this->setGenericDataValue( 'name', $value ); } /** * @return bool */ function getDefault() { return $this->fromBool( $this->getGenericDataValue( 'is_default' ) ); } /** * @param $value * @return bool */ function setDefault( $value ) { return $this->setGenericDataValue( 'is_default', $this->toBool( $value ) ); } /** * @return bool|mixed */ function getDescription() { return $this->getGenericDataValue( 'description' ); } /** * @param $value * @return bool */ function setDescription( $value ) { $value = trim( $value ); return $this->setGenericDataValue( 'description', $value ); } /** * @return mixed */ function getData() { return json_decode( $this->getGenericDataValue( 'data' ), true ); } /** * @param $value * @return bool */ function setData( $value ) { $this->setGenericDataValue( 'data', json_encode( $value ) ); return true; } /** * @param bool $ignore_warning * @return bool */ function Validate( $ignore_warning = true ) { if ( $this->getDeleted() == false ) { // // BELOW: Validation code moved from set*() functions. // // Company $clf = TTnew( 'CompanyListFactory' ); /** @var CompanyListFactory $clf */ $this->Validator->isResultSetWithRows( 'company', $clf->getByID( $this->getCompany() ), TTi18n::gettext( 'Invalid Company' ) ); // User must always be specified, don't allow a zero UUID either. if ( $this->getUser() !== false ) { $ulf = TTnew( 'UserListFactory' ); /** @var UserListFactory $ulf */ $this->Validator->isResultSetWithRows( 'user', $ulf->getByID( $this->getUser() ), TTi18n::gettext( 'Invalid Employee' ) ); } // Script $this->Validator->isLength( 'script', $this->getScript(), TTi18n::gettext( 'Invalid script' ), 1, 250 ); // Name $this->Validator->isLength( 'name', $this->getName(), TTi18n::gettext( 'Name is too short or too long' ), 1, 100 ); if ( $this->Validator->isError( 'name' ) == false ) { $this->Validator->isTrue( 'name', $this->isUniqueName( $this->getName() ), TTi18n::gettext( 'Name already exists' ) ); } // Description $this->Validator->isLength( 'description', $this->getDescription(), TTi18n::gettext( 'Description is invalid' ), 0, 1024 ); // // ABOVE: Validation code moved from set*() functions. // if ( $this->Validator->hasError( 'name' ) == false && $this->getName() == '' ) { $this->Validator->isTRUE( 'name', false, TTi18n::gettext( 'Name must be specified' ) ); } } return true; } /** * @return bool */ function preSave() { if ( $this->getDefault() == true ) { //Remove default flag from all other entries. $urdlf = TTnew( 'UserReportDataListFactory' ); /** @var UserReportDataListFactory $urdlf */ if ( $this->getUser() == TTUUID::getZeroID() || $this->getUser() == '' ) { $urdlf->getByCompanyIdAndScriptAndDefault( $this->getCompany(), $this->getScript(), true ); } else { $urdlf->getByUserIdAndScriptAndDefault( $this->getUser(), $this->getScript(), true ); } if ( $urdlf->getRecordCount() > 0 ) { foreach ( $urdlf as $urd_obj ) { if ( $urd_obj->getId() != $this->getId() ) { //Don't remove default flag from ourselves when editing an existing record. Debug::Text( 'Removing Default Flag From: ' . $urd_obj->getId(), __FILE__, __LINE__, __METHOD__, 10 ); $urd_obj->setDefault( false ); if ( $urd_obj->isValid() ) { $urd_obj->Save(); } } } } } return true; } /** * @param $script_name * @return mixed */ static function handleScriptName( $script_name ) { return str_replace( '//', '/', $script_name ); } /** * Support setting created_by, updated_by especially for importing data. * @param $data * @return bool */ function setObjectFromArray( $data ) { if ( is_array( $data ) ) { $variable_function_map = $this->getVariableToFunctionMap(); foreach ( $variable_function_map as $key => $function ) { if ( isset( $data[$key] ) ) { $function = 'set' . $function; switch ( $key ) { default: if ( method_exists( $this, $function ) ) { $this->$function( $data[$key] ); } break; } } } $this->setCreatedAndUpdatedColumns( $data ); return true; } return false; } /** * @param null $include_columns * @return array */ function getObjectAsArray( $include_columns = null ) { $data = []; $variable_function_map = $this->getVariableToFunctionMap(); if ( is_array( $variable_function_map ) ) { foreach ( $variable_function_map as $variable => $function_stub ) { if ( $include_columns == null || ( isset( $include_columns[$variable] ) && $include_columns[$variable] == true ) ) { $function = 'get' . $function_stub; switch ( $variable ) { case 'is_scheduled': $data[$variable] = $this->getColumn( 'is_scheduled' ); break; case 'script_name': $report_obj = $this->getObjectHandler(); if ( is_object( $report_obj ) ) { $data[$variable] = $report_obj->title; } break; default: if ( method_exists( $this, $function ) ) { $data[$variable] = $this->$function(); } break; } } } $this->getCreatedAndUpdatedColumns( $data, $include_columns ); } return $data; } /** * @param $log_action * @return bool */ function addLog( $log_action ) { if ( $this->getUser() == false && $this->getDefault() == true ) { //Bypass logging on Company Default Save. return true; } return TTLog::addEntry( $this->getId(), $log_action, TTi18n::getText( 'Saved Report Data' ), null, $this->getTable() ); } } ?>