Ignore:
Timestamp:
Aug 2, 2011, 9:20:50 PM (13 years ago)
Author:
rvelices
Message:

rename #images.average_rate to rating_score

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/ws_functions.inc.php

    r11827 r11893  
    5555  if ( is_numeric($params['f_min_rate']) )
    5656  {
    57     $clauses[] = $tbl_name.'average_rate>'.$params['f_min_rate'];
     57    $clauses[] = $tbl_name.'rating_score>'.$params['f_min_rate'];
    5858  }
    5959  if ( is_numeric($params['f_max_rate']) )
    6060  {
    61     $clauses[] = $tbl_name.'average_rate<='.$params['f_max_rate'];
     61    $clauses[] = $tbl_name.'rating_score<='.$params['f_max_rate'];
    6262  }
    6363  if ( is_numeric($params['f_min_hit']) )
     
    124124        $matches[1][$i] = DB_RANDOM_FUNCTION.'()'; break;
    125125    }
    126     $sortable_fields = array('id', 'file', 'name', 'hit', 'average_rate',
     126    $sortable_fields = array('id', 'file', 'name', 'hit', 'rating_score',
    127127      'date_creation', 'date_available', DB_RANDOM_FUNCTION.'()' );
    128128    if ( in_array($matches[1][$i], $sortable_fields) )
     
    193193
    194194  $infos['version'] = PHPWG_VERSION;
    195        
     195
    196196  $query = 'SELECT COUNT(*) FROM '.IMAGES_TABLE.';';
    197197  list($infos['nb_elements']) = pwg_db_fetch_row(pwg_query($query));
     
    444444      // which is an element in the XML output. The "hierarchy" output is
    445445      // only compatible with json/php output.
    446      
     446
    447447      return new PwgError(405, "The tree_output option is only compatible with json/php output formats");
    448448    }
     
    472472    $where[] = 'status = "public"';
    473473    $where[] = 'visible = "true"';
    474    
     474
    475475    $join_user = $conf['guest_id'];
    476476  }
     
    480480    // categories. Function calculate_permissions will only return
    481481    // categories that are either locked or private and not permitted
    482     // 
     482    //
    483483    // calculate_permissions does not consider empty categories as forbidden
    484484    $forbidden_categories = calculate_permissions($user['id'], $user['status']);
     
    519519        )
    520520      );
    521    
     521
    522522    $row['comment'] = strip_tags(
    523523      trigger_event(
     
    527527        )
    528528      );
    529    
     529
    530530    array_push($cats, $row);
    531531  }
     
    533533
    534534  if ($params['tree_output'])
    535   { 
     535  {
    536536    return categories_flatlist_to_tree($cats);
    537537  }
     
    782782  }
    783783  //------------------------------------------------------------- related rates
    784         $rating = array('score'=>$image_row['average_rate'], 'count'=>0, 'average'=>null);
     784        $rating = array('score'=>$image_row['rating_score'], 'count'=>0, 'average'=>null);
    785785        if (isset($rating['score']))
    786786        {
     
    10291029    return new PwgError(401, 'Access denied');
    10301030  }
    1031  
     1031
    10321032  if (!$service->isPost())
    10331033  {
     
    10551055    return new PwgError(WS_ERR_INVALID_PARAM, "Invalid rank");
    10561056  }
    1057  
     1057
    10581058  // does the image really exist?
    10591059  $query='
     
    10691069    return new PwgError(404, "image_id not found");
    10701070  }
    1071  
     1071
    10721072  // is the image associated to this category?
    10731073  $query = '
     
    11381138{
    11391139  global $conf;
    1140  
     1140
    11411141  ws_logfile('[ws_images_add_chunk] welcome');
    11421142  // data
     
    11591159      continue;
    11601160    }
    1161    
     1161
    11621162    ws_logfile(
    11631163      sprintf(
     
    12191219{
    12201220  global $conf;
    1221  
     1221
    12221222  ws_logfile('[merge_chunks] input parameter $output_filepath : '.$output_filepath);
    12231223
     
    12871287{
    12881288  include_once(PHPWG_ROOT_PATH.'admin/include/functions_upload.inc.php');
    1289  
     1289
    12901290  $file_path = file_path_for_type($file_path, $type);
    12911291
     
    12981298  ws_logfile('[add_file] file_path  : '.$file_path);
    12991299  ws_logfile('[add_file] upload_dir : '.$upload_dir);
    1300  
     1300
    13011301  if (!is_dir($upload_dir)) {
    13021302    umask(0000);
     
    14461446    $where_clause = "file = '".$params['original_filename']."'";
    14471447  }
    1448  
     1448
    14491449  $query = '
    14501450SELECT
     
    15501550  require_once(PHPWG_ROOT_PATH.'admin/include/functions_metadata.php');
    15511551  update_metadata(array($image_id=>$file_path));
    1552  
     1552
    15531553  invalidate_user_cache();
    15541554}
     
    15711571    return new PwgError(405, "The image (file) parameter is missing");
    15721572  }
    1573  
     1573
    15741574  $params['image_id'] = (int)$params['image_id'];
    15751575  if ($params['image_id'] > 0)
     
    16771677;';
    16781678  list($file_path) = pwg_db_fetch_row(pwg_query($query));
    1679  
     1679
    16801680  require_once(PHPWG_ROOT_PATH.'admin/include/functions_metadata.php');
    16811681  update_metadata(array($image_id=>$file_path));
     
    17321732  list($dbnow) = pwg_db_fetch_row(pwg_query('SELECT NOW();'));
    17331733  $res['current_datetime'] = $dbnow;
    1734  
     1734
    17351735  return $res;
    17361736}
     
    18271827
    18281828  $image_ids = array_slice($image_ids, (int)($params['per_page']*$params['page']), (int)$params['per_page'] );
    1829  
     1829
    18301830  $image_tag_map = array();
    18311831  if ( !empty($image_ids) and !$params['tag_mode_and'] )
     
    19631963{
    19641964  global $conf;
    1965  
     1965
    19661966  if (!is_admin())
    19671967  {
     
    20022002    }
    20032003  }
    2004  
     2004
    20052005  if ('filename' == $conf['uniqueness_mode'])
    20062006  {
     
    24812481{
    24822482  global $conf;
    2483  
     2483
    24842484  if (!is_admin())
    24852485  {
     
    25192519    return new PwgError(WS_ERR_INVALID_PARAM, "Invalid image_id");
    25202520  }
    2521  
     2521
    25222522  // does the image really exist?
    25232523  $query='
     
    26122612    return;
    26132613  }
    2614  
     2614
    26152615  include_once(PHPWG_ROOT_PATH.'admin/include/functions.php');
    26162616  delete_categories($category_ids, $params['photo_deletion_mode']);
     
    26212621{
    26222622  global $conf, $page;
    2623  
     2623
    26242624  if (!is_admin())
    26252625  {
     
    26612661  // we can't move physical categories
    26622662  $categories_in_db = array();
    2663  
     2663
    26642664  $query = '
    26652665SELECT
     
    26842684          )
    26852685        );
    2686      
     2686
    26872687      return new PwgError(
    26882688        403,
     
    26992699  {
    27002700    $unknown_category_ids = array_diff($category_ids, array_keys($categories_in_db));
    2701    
     2701
    27022702    return new PwgError(
    27032703      403,
     
    27172717    return new PwgError(403, 'Invalid parent input parameter');
    27182718  }
    2719  
     2719
    27202720  if (0 != $params['parent']) {
    27212721    $params['parent'] = intval($params['parent']);
     
    27662766  $ret['message'] = ready_for_upload_message();
    27672767  $ret['ready_for_upload'] = true;
    2768  
     2768
    27692769  if (!empty($ret['message']))
    27702770  {
    27712771    $ret['ready_for_upload'] = false;
    27722772  }
    2773  
     2773
    27742774  return $ret;
    27752775}
     
    27782778{
    27792779  global $conf;
    2780  
     2780
    27812781  if (!is_admin())
    27822782  {
     
    28182818{
    28192819  global $template;
    2820  
     2820
    28212821  if (!is_admin())
    28222822  {
     
    28342834  $errors = $plugins->perform_action($params['action'], $params['plugin']);
    28352835
    2836  
     2836
    28372837  if (!empty($errors))
    28382838  {
     
    28522852{
    28532853  global $template;
    2854  
     2854
    28552855  if (!is_admin())
    28562856  {
     
    28672867  $themes = new themes();
    28682868  $errors = $themes->perform_action($params['action'], $params['theme']);
    2869  
     2869
    28702870  if (!empty($errors))
    28712871  {
     
    30453045      );
    30463046    }
    3047    
     3047
    30483048    $upgrade_status = $extension->extract_plugin_files('upgrade', $revision, $extension_id);
    30493049    $extension_name = $extension->fs_plugins[$extension_id]['name'];
Note: See TracChangeset for help on using the changeset viewer.