Revert "* Api - Avoid SQL errors caused by removed custom fields still in favorites"

This reverts commit a03931493f.
This commit is contained in:
Ralf Becker 2018-07-30 15:07:01 +02:00
parent 747b3bb103
commit f4081c1443
2 changed files with 1 additions and 66 deletions

View File

@ -351,21 +351,7 @@ class Nextmatch extends Etemplate\Widget
{
$GLOBALS['egw_info']['flags']['currentapp'] = $app;
Api\Translation::add_app($app);
// Avoid SQL errors from missing custom fields (deleted or no permission)
if(!Api\Storage\Customfields::get($app))
{
if(Api\Storage::remove_customfields($value['order']))
{
Api\Json\Response::get()->message(lang('Sort removed, given custom field is no longer available'));
}
if(Api\Storage::remove_customfields($value['col_filter']))
{
Api\Json\Response::get()->message(lang('Filter removed, given custom field is no longer available'));
}
}
}
// If specific data requested, just do that
if (($row_id = $value['row_id']) && $queriedRange['refresh'])
{

View File

@ -431,11 +431,6 @@ class Storage extends Storage\Base
//error_log(__METHOD__.'('.array2string(array_combine(array_slice(array('criteria','only_keys','order_by','extra_cols','wildcard','empty','op','start','filter','join','need_full_no_count'), 0, count(func_get_args())), func_get_args())).')');
if (!$this->customfields)
{
$this->remove_customfields($criteria);
$this->remove_customfields($only_keys);
$this->remove_customfields($order_by);
$this->remove_customfields($extra_cols);
$this->remove_customfields($filter);
return parent::search($criteria,$only_keys,$order_by,$extra_cols,$wildcard,$empty,$op,$start,$filter,$join,$need_full_no_count);
}
if ($only_keys === false)
@ -688,52 +683,6 @@ class Storage extends Storage\Base
return parent::search($criteria,$only_keys,$order_by,$extra_cols,$wildcard,$empty,$op,$start,$filter,$join,$need_full_no_count);
}
/**
* Make sure there are no custom fields referred to in the field
*
* Use this to prevent SQL errors caused by queries / favorites that refer to
* a custom field that is no longer available due to permission changes or
* deletion.
*
* @param Array|String $field
*
* @return Boolean True if any changes were made
*/
public static function remove_customfields(&$field)
{
$was_string = false;
$changed = false;
if(is_string($field) && strpos($field, self::CF_PREFIX) !== FALSE)
{
$was_string = true;
$field = explode(',',$field);
}
if(!is_array($field))
{
return;
}
foreach($field as $key => $value)
{
if($key[0] == self::CF_PREFIX || is_string($value) && strpos($value, self::CF_PREFIX) !== FALSE)
{
unset($field[$key]);
$changed = true;
}
else if(is_array($value))
{
$changed = $changed || static::remove_customfields($value);
}
}
if($was_string)
{
$field = implode(',',$field);
}
return $changed;
}
/**
* Get a default list of columns to search
*