Просмотр файла admin/icons/weather.php

Размер файла: 2.45Kb
  1. <?php
  2. include '../../engine/includes/start.php';
  3.  
  4. if (!$creator)
  5. Core::stop();
  6. if (file_exists($_SERVER['DOCUMENT_ROOT'].'/style/themes/weather_'.$_GET['city'].'.png') && (filemtime($_SERVER['DOCUMENT_ROOT'].'/style/themes/weather_'.$_GET['city'].'.png') > (time() - 30000)))
  7. {
  8. $im = imagecreatefrompng($_SERVER['DOCUMENT_ROOT'].'/style/themes/weather_'.$_GET['city'].'.png');
  9. }
  10. else
  11. {
  12. $weather = json_decode(file_get_contents('http://api.openweathermap.org/data/2.5/weather?q='.$_GET['city']), true);
  13. //unset($weather['coord'], $weather['sys']);
  14. if ($weather['cod'] == 404)
  15. {
  16. $im = imagecreatefrompng($_SERVER['DOCUMENT_ROOT'].'/admin/icons/screen.png');
  17. imagestring($im, 3 , 6 , 10 , 'unknown' , imagecolorallocate($im, 0, 0, 0));
  18. }
  19. else
  20. {
  21. /*echo '<pre>';
  22. foreach ($weather as $item=>$val)
  23. {
  24. if (is_array($val))
  25. {echo PHP_EOL .$item . ' ['.PHP_EOL ;
  26. foreach ($val as $item2=>$val2)
  27. {
  28. if (is_array($val2))
  29. {echo PHP_EOL .$item2 .'['.PHP_EOL ;
  30. foreach ($val2 as $item3=>$val3)echo ' ---'.$item3 . ' > ' . $val3. PHP_EOL;
  31. echo ']'.PHP_EOL . PHP_EOL;
  32. }
  33. else
  34. {
  35. echo ' --'.$item2 . ' > ' . $val2. PHP_EOL;
  36. }
  37. }
  38. echo ']'.PHP_EOL .PHP_EOL ;
  39. }
  40. else
  41. {
  42. echo ' -'.$item . ' > ' . $val . PHP_EOL;
  43. }
  44. }echo '</pre>';
  45. */
  46. file_put_contents(H.'style/themes/weather_'.$_GET['city'].'.png', file_get_contents('http://openweathermap.org/img/w/'.$weather['weather'][0]['icon'].'.png'));
  47. $im = imagecreatefrompng($_SERVER['DOCUMENT_ROOT'].'/style/themes/weather_'.$_GET['city'].'.png');
  48. imagestring($im, 3 , 6 , 35 , $weather['name'] , imagecolorallocate($im, 0, 0, 0));
  49. imagestring($im, 3 , 6 , 5 , ceil($weather['main']['temp'] - 273).' C' , imagecolorallocate($im, 0, 0, 0));
  50. imagepng($im, $_SERVER['DOCUMENT_ROOT'].'/style/themes/weather_'.$_GET['city'].'.png');
  51. }
  52. }
  53. header('Content-type: image/png');
  54.  
  55. imagepng($im);
  56. imagedestroy($im);