gforge-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gforge-commits] gforge/cronjobs update_filesize.php,NONE,1.1


From: cbayle
Subject: [Gforge-commits] gforge/cronjobs update_filesize.php,NONE,1.1
Date: Fri, 09 Jan 2004 17:02:23 -0600

Update of /cvsroot/gforge/gforge/cronjobs
In directory db.perdue.net:/tmp/cvs-serv19904/cronjobs

Added Files:
        update_filesize.php 
Log Message:
Patch [ #634 ] Cronjob to update file sizes proposed by Brett N DiFrischia 


--- NEW FILE: update_filesize.php ---
#! /usr/bin/php4 -f
<?php
/**
 * Copyright 2003 (c) GFDL
 *
 * @version   $Id: update_filesize.php,v 1.1 2004/01/09 23:02:20 cbayle Exp $
 *
 * This file is part of FMS.
 *
 * FMS is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * FMS is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with FMS; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  US
 * -------------- Gforge team comment ------------
 * This file was proposed by Brett N DiFrischia
 * with the following description:
 * The GFDL uses many large files that could not be uploaded to our GForge site.
 * At this time, such files are updated manually. This cronjob updates file 
sizes
 * for all files that have the incorrect size. Note that this cronjob checks 
all files
 * instead of recently updated ones. This could put a major damper on large 
systems.
 * Updates are only performed for incorrect file sizes.
 *
 * Thanks
 */

require_once ('squal_pre.php');

db_begin();

$fms_filesize_res =
  db_query( "SELECT frs_file.filename,frs_file.file_id,
             groups.unix_group_name,frs_file.file_size
             FROM frs_package,frs_release,frs_file,groups
             WHERE frs_release.release_id=frs_file.release_id
             AND groups.group_id=frs_package.group_id
             AND frs_release.package_id=frs_package.package_id
             AND frs_file.post_date > " .
             time() - (7 * 24 * 60 * 60)
            );
echo db_error();

while ( $fms_filesize_row = db_fetch_array( $fms_filesize_res ) ) {

  $fms_file_path = $sys_upload_dir . '/' .
    $fms_filesize_row['unix_group_name'] . '/' .
    $fms_filesize_row['filename'];

  $fms_curr_size = filesize( $fms_file_path );

  if ( $fms_curr_size != $fms_filesize_row['file_size'] ) {
    db_query( "UPDATE frs_file SET file_size='" .
              $fms_curr_size . "' WHERE file_id='" .
              $fms_filesize_row['file_id'] . "'" );
    echo db_error();
  }

}

db_commit();
echo db_error();

?>





reply via email to

[Prev in Thread] Current Thread [Next in Thread]