/**
  * @return \EE_Default_Where_Conditions
  */
 protected function _generate_restrictions()
 {
     //if there are no standard caps for this model, then for now all we know
     //if they need the default cap to access this
     if (!$this->model()->cap_slug()) {
         return array(EE_Restriction_Generator_Base::get_default_restrictions_cap() => new EE_Return_None_Where_Conditions());
     }
     $restrictions = array();
     //does the basic cap exist? (eg 'ee_read_registrations')
     if (EE_Restriction_Generator_Base::is_cap($this->model(), $this->action())) {
         $restrictions[EE_Restriction_Generator_Base::get_cap_name($this->model(), $this->action())] = new EE_Return_None_Where_Conditions();
         //does the others cap exist? (eg 'ee_read_others_registrations')
         if (EE_Restriction_Generator_Base::is_cap($this->model(), $this->action() . '_others')) {
             //both caps exist
             $restrictions[EE_Restriction_Generator_Base::get_cap_name($this->model(), $this->action() . '_others')] = new EE_Default_Where_Conditions(array(EE_Default_Where_Conditions::user_field_name_placeholder => EE_Default_Where_Conditions::current_user_placeholder));
             //does the private cap exist (eg 'ee_read_others_private_events')
             if (EE_Restriction_Generator_Base::is_cap($this->model(), $this->action() . '_private') && $this->model() instanceof EEM_CPT_Base) {
                 //if they have basic and others, but not private, restrict them to see theirs and others' that aren't private
                 $restrictions[EE_Restriction_Generator_Base::get_cap_name($this->model(), $this->action() . '_private')] = new EE_Default_Where_Conditions(array('OR*no_' . EE_Restriction_Generator_Base::get_cap_name($this->model(), $this->action() . '_private') => array(EE_Default_Where_Conditions::user_field_name_placeholder => EE_Default_Where_Conditions::current_user_placeholder, 'status' => array('!=', 'private'))));
             }
         }
     } else {
         //there is no basic cap. So they can only access this if they have the default admin cap
         $restrictions[EE_Restriction_Generator_Base::get_default_restrictions_cap()] = new EE_Return_None_Where_Conditions();
     }
     return $restrictions;
 }
 /**
  *
  * @return \EE_Default_Where_Conditions
  * @throws EE_Error
  */
 protected function _generate_restrictions()
 {
     //if there are no standard caps for this model, then for now all we know
     //if they need the default cap to access this
     if (!$this->model()->cap_slug()) {
         return array(EE_Restriction_Generator_Base::get_default_restrictions_cap() => new EE_Return_None_Where_Conditions());
     }
     return array(EE_Restriction_Generator_Base::get_cap_name($this->model(), $this->action()) => new EE_Return_None_Where_Conditions(), EE_Restriction_Generator_Base::get_cap_name($this->model(), $this->action() . '_system') => new EE_Default_Where_Conditions(array('OR*no_' . EE_Restriction_Generator_Base::get_cap_name($this->model(), $this->action() . '_system') => array($this->_system_field_name => array('IN', array('', 0)), $this->_system_field_name . '*' => array('IS_NULL')))));
 }
 /**
  * @param \WP_REST_Request $request
  * @return \EE_Config|\WP_Error
  */
 public static function handle_request(\WP_REST_Request $request)
 {
     $cap = \EE_Restriction_Generator_Base::get_default_restrictions_cap();
     if (\EE_Capabilities::instance()->current_user_can($cap, 'read_over_api')) {
         return \EE_Config::instance();
     } else {
         return new \WP_Error('cannot_read_config', sprintf(__('You do not have the necessary capabilities (%s) to read Event Espresso Configuration data', 'event_espresso'), $cap), array('status' => 403));
     }
 }
 /**
  * @return \EE_Default_Where_Conditions
  */
 protected function _generate_restrictions()
 {
     //if there are no standard caps for this model, then for now all we know is
     //if they need the default cap to access this
     if (!$this->model()->cap_slug()) {
         return array(EE_Restriction_Generator_Base::get_default_restrictions_cap() => new EE_Return_None_Where_Conditions());
     }
     return array(EE_Restriction_Generator_Base::get_cap_name($this->model(), $this->action()) => new EE_Return_None_Where_Conditions(), EE_Restriction_Generator_Base::get_cap_name($this->model(), $this->action() . '_others') => new EE_Default_Where_Conditions(array('OR*no_' . EE_Restriction_Generator_Base::get_cap_name($this->model(), $this->action() . '_others') => array(EE_Default_Where_Conditions::user_field_name_placeholder => EE_Default_Where_Conditions::current_user_placeholder, $this->_global_field_name => true))), EE_Restriction_Generator_Base::get_cap_name($this->model(), $this->action() . '_global') => new EE_Default_Where_Conditions(array($this->_global_field_name => false)));
 }
 /**
  *
  * @return \EE_Default_Where_Conditions
  * @throws EE_Error
  */
 protected function _generate_restrictions()
 {
     $whitelisted_meta_keys = apply_filters('FHEE__EE_Restriction_Generator_Meta___generate_restrictions__whitelisted_meta_keys', array());
     $blacklisted_meta_keys = apply_filters('FHEE__EE_Restriction_Generator_Meta___generate_restrictions__blacklisted_meta_keys', array());
     $conditions = array($this->_key_field_name => array('NOT_LIKE', "\\\\_%"), $this->_value_field_name => array('NOT_REGEXP', '^[aOs]:[\\d]:.*$'));
     if (!empty($blacklisted_meta_keys)) {
         $conditions[$this->_key_field_name . '*blacklisted'] = array('NOT_IN', $blacklisted_meta_keys);
     }
     if (!empty($whitelisted_meta_keys)) {
         $conditions = array('OR*whitelisted-or-normal' => array('AND' => $conditions, $this->_key_field_name . '*whitelisted' => array('IN', $whitelisted_meta_keys)));
     }
     return array(EE_Restriction_Generator_Base::get_default_restrictions_cap() => new EE_Return_None_Where_Conditions(), 'apply-to-all-queries-using-caps' => new EE_Default_Where_Conditions($conditions));
 }
 public function test_no_caps__whitelisted_and_blacklisted()
 {
     add_filter('FHEE__EE_Restriction_Generator_Meta___generate_restrictions__whitelisted_meta_keys', array($this, '_whitelist_metas'));
     add_filter('FHEE__EE_Restriction_Generator_Meta___generate_restrictions__blacklisted_meta_keys', array($this, '_blacklist_metas'));
     $generator = new EE_Restriction_Generator_Meta('meta_key', 'meta_value');
     $generator->_construct_finalize(EEM_Post_Meta::instance(), EEM_Base::caps_read);
     $restrictions = $generator->generate_restrictions();
     $this->assertArrayHasKey(EE_Restriction_Generator_Base::get_default_restrictions_cap(), $restrictions);
     $this->assertArrayHasKey('apply-to-all-queries-using-caps', $restrictions);
     $this->assertInstanceOf('EE_Return_None_Where_Conditions', $restrictions[EE_Restriction_Generator_Base::get_default_restrictions_cap()]);
     $restrictions_for_all_cap_contexts = $restrictions['apply-to-all-queries-using-caps'];
     $this->assertInstanceOf('EE_Default_Where_Conditions', $restrictions_for_all_cap_contexts);
     $this->assertEquals(array('OR*whitelisted-or-normal' => array('meta_key*whitelisted' => array('IN', array('white')), 'AND' => array('meta_key' => array('NOT_LIKE', "\\\\_%"), 'meta_value' => array('NOT_REGEXP', '^[aOs]:[\\d]:.*$'), 'meta_key*blacklisted' => array('NOT_IN', array('black'))))), $restrictions_for_all_cap_contexts->get_default_where_conditions());
 }
 /**
  * constructor
  *	@access protected
  *	@return EEM_Change_Log
  */
 protected function __construct($timezone = null)
 {
     global $current_user;
     $this->singular_item = __('Log', 'event_espresso');
     $this->plural_item = __('Logs', 'event_espresso');
     $this->_tables = array('Log' => new EE_Primary_Table('esp_log', 'LOG_ID'));
     $models_this_can_attach_to = array_keys(EE_Registry::instance()->non_abstract_db_models);
     $this->_fields = array('Log' => array('LOG_ID' => new EE_Primary_Key_Int_Field('LOG_ID', __('Log ID', 'event_espresso')), 'LOG_time' => new EE_Datetime_Field('LOG_time', __("Log Time", 'event_espresso'), false, time()), 'OBJ_ID' => new EE_Foreign_Key_String_Field('OBJ_ID', __("Object ID (int or string)", 'event_espresso'), true, NULL, $models_this_can_attach_to), 'OBJ_type' => new EE_Any_Foreign_Model_Name_Field('OBJ_type', __("Object Type", 'event_espresso'), true, NULL, $models_this_can_attach_to), 'LOG_type' => new EE_Enum_Text_Field('LOG_type', __("Type of log entry", "event_espresso"), false, self::type_debug, array(self::type_create => __("Create", "event_espresso"), self::type_update => __("Update", "event_espresso"), self::type_delete => __("Delete", "event_espresso"), self::type_debug => __("Debug", "event_espresso"), self::type_error => __("Error", "event_espresso"), self::type_gateway => __("Gateway Interaction (IPN or Direct Payment)", 'event_espresso'))), 'LOG_message' => new EE_Maybe_Serialized_Text_Field('LOG_message', __("Log Message (body)", 'event_espresso'), true), 'LOG_wp_user' => new EE_WP_User_Field('LOG_wp_user', __("User who was logged in while this occurred", 'event_espresso'), true)));
     $this->_model_relations = array();
     foreach ($models_this_can_attach_to as $model) {
         if ($model == 'WP_User') {
             $this->_model_relations[$model] = new EE_Belongs_To_Relation();
         } elseif ($model != 'Change_Log') {
             $this->_model_relations[$model] = new EE_Belongs_To_Any_Relation();
         }
     }
     //use completely custom caps for this
     $this->_cap_restriction_generators = false;
     //caps-wise this is all-or-nothing: if you have the default role you can access anything, otherwise nothing
     foreach ($this->_cap_contexts_to_cap_action_map as $cap_context => $action) {
         $this->_cap_restrictions[$cap_context][EE_Restriction_Generator_Base::get_default_restrictions_cap()] = new EE_Return_None_Where_Conditions();
     }
     parent::__construct($timezone);
 }