Advertisement
Guest User

Untitled

a guest
Aug 17th, 2011
722
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 3.54 KB | None | 0 0
  1. <?
  2.  
  3. // General object config
  4. include('libs/config.php');
  5.  
  6. // Will be dynamic soon
  7. $current_rel = "1.8.12";
  8.  
  9. // Function to get files name is correct to our rom /pack
  10. function check_files_name($file, $marker)
  11. {
  12.         return strpos($file, $marker) === 0;
  13. }
  14. // EF
  15.  
  16. // Function to get device name from file name
  17. function device_name($file)
  18. {
  19.         $device = substr($file, 12, 33);
  20.         $device = substr($device, 0, -11);
  21.         return $device;
  22. }
  23. // EF
  24.  
  25. // Function to convert filesize properly
  26. function filesizeinfo( $file,$precision = 0)
  27. {
  28.     $sizes=array( 'YB','ZB','EB','PB','TB','GB','MB','kB','B' );
  29.     $total=count( $sizes );
  30.            
  31.     while( $total-- && $file > 1024 ) $file /= 1024;
  32.    
  33.     return substr(round( $file,$precision ).$sizes[$total], 0,3);
  34. }
  35.  
  36. // Define the OTA file repo
  37. $ota_dir = "/path/to/webroot/ota/".$current_rel;
  38.  
  39. // Set the OTA branch X = development
  40. $branch = 'X';
  41.  
  42. // Read through currently available public OTA ROMS
  43. if ( ($handle = opendir($ota_dir)) )
  44. {
  45.     // Loop through all files
  46.         while( false !== ($file = readdir($handle)) )
  47.         {
  48.                 if(check_files_name($file, 'miuiandroid'))
  49.                 {
  50.  
  51. // Filename OTA
  52. $filename = 'miuiandroid_'.device_name($file).'-'.$current_rel.'.zip';
  53.  
  54. // Version
  55. $version = 'MIUI-'.$current_rel;
  56.  
  57. // Filesize OTA
  58. $filesize = filesize($ota_dir.'/'.$filename);
  59.  
  60. $ota_filesize = filesizeinfo($filesize);
  61.  
  62. // MD5 of OTA
  63. $checksum = md5_file("/path/to/webroot/ota/".$current_rel."/miuiandroid_".device_name($file)."-".$current_rel.".zip");
  64.  
  65. if(device_name($file) == 'Captivate')
  66. {
  67.     $board = 'aries';
  68.     $device = 'captivatemtd';
  69.     $name = 'Samsung Captivate';
  70. }
  71. else if(device_name($file) == 'Defy')
  72. {
  73.     $board = 'jordan';
  74.     $device = 'umts_jordan';
  75.     $name = 'Motorola Defy';
  76. }
  77. else if(device_name($file) == 'Desire')
  78. {
  79.         $board = 'bravo';
  80.     $device = 'bravo';
  81.     $name = 'HTC Desire';
  82. }
  83. else if(device_name($file) == 'DesireZ')
  84. {
  85.         $board = 'vision';
  86.     $device = 'vision';
  87.     $name = 'HTC DesireZ';
  88. }
  89. else if(device_name($file) == 'DHD')
  90. {
  91.         $board = 'spade';
  92.     $device = 'ace';
  93.     $name = 'HTC Desire HD';
  94. }
  95. else if(device_name($file) == 'HD2')
  96. {
  97.         $board = 'leo';
  98.     $device = 'leo';
  99.     $name = 'HTC HD2';
  100. }
  101. else if(device_name($file) == 'I9000')
  102. {
  103.         $board = 'aries';
  104.     $device = 'galaxys';
  105.     $name = 'Samsung GalaxyS';
  106. }
  107. else if(device_name($file) == 'Milestone')
  108. {
  109.         $board = 'sholes';
  110.     $device = 'umts_sholes';
  111.     $name = 'Motorola Milestone';
  112. }
  113. else if(device_name($file) == 'N1')
  114. {
  115.         $board = 'mahimahi';
  116.     $device = 'passion';
  117.     $name = 'Google Nexus One';
  118. }
  119. else if(device_name($file) == 'NS')
  120. {
  121.         $board = 'herring';
  122.     $device = 'crespo';
  123.     $name = 'Google Nexus S';
  124. }
  125. else if(device_name($file) == 'Vibrant')
  126. {
  127.         $board = 'aries';
  128.     $device = 'vibrantmtd';
  129.     $name = 'Samsung Vibrant';
  130. }
  131. else if(device_name($file) == 'Optimus2x')
  132. {
  133.         $board = 'p990';
  134.     $device = 'p990';
  135.     $name = 'LG Optimus 2X';
  136. }
  137. // End device specific name checks
  138.  
  139.         // Insert each devices OTA data in the loop
  140.         $insert_ota_data = "INSERT INTO devices (`device`,`board`,`name`,`version`,`checksum`,`filename`,`filesize`,`branch`)
  141.                     VALUES(
  142.                      '$device',
  143.                      '$board',
  144.                      '$name',
  145.                      '$version',
  146.                      '$checksum',
  147.                      '$filename',
  148.                      '$ota_filesize',
  149.                      '$branch'                 
  150.                     )";
  151.  
  152.             // Execute insert OTA data
  153.             $query = mysql_query($insert_ota_data)or die(mysql_error());
  154.         }
  155.         }
  156.  
  157.         // close directory
  158.         closedir($handle);
  159. }
  160.  
  161. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement