apiupdatebackgroundimage.php 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. <?php
  2. /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3. · ·
  4. · Update the cover photo ·
  5. · ·
  6. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  7. · ·
  8. · ·
  9. · Q V I T T E R ·
  10. · ·
  11. · https://git.gnu.io/h2p/Qvitter ·
  12. · ·
  13. · ·
  14. · ·
  15. · <o) ·
  16. · /_//// ·
  17. · (____/ ·
  18. · (o< ·
  19. · o> \\\\_\ ·
  20. · \\) \____) ·
  21. · ·
  22. · ·
  23. · Qvitter is free software: you can redistribute it and / or modify it ·
  24. · under the terms of the GNU Affero General Public License as published by ·
  25. · the Free Software Foundation, either version three of the License or (at ·
  26. · your option) any later version. ·
  27. · ·
  28. · Qvitter is distributed in hope that it will be useful but WITHOUT ANY ·
  29. · WARRANTY; without even the implied warranty of MERCHANTABILTY or FITNESS ·
  30. · FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for ·
  31. · more details. ·
  32. · ·
  33. · You should have received a copy of the GNU Affero General Public License ·
  34. · along with Qvitter. If not, see <http://www.gnu.org/licenses/>. ·
  35. · ·
  36. · Contact h@nnesmannerhe.im if you have any questions. ·
  37. · ·
  38. · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · */
  39. if (!defined('GNUSOCIAL')) {
  40. exit(1);
  41. }
  42. class ApiUpdateBackgroundImageAction extends ApiAuthAction
  43. {
  44. protected $needPost = true;
  45. /**
  46. * Take arguments for running
  47. *
  48. * @param array $args $_REQUEST args
  49. *
  50. * @return boolean success flag
  51. */
  52. protected function prepare(array $args=array())
  53. {
  54. parent::prepare($args);
  55. $this->format = 'json';
  56. $this->user = $this->auth_user;
  57. $this->cropW = $this->trimmed('cropW');
  58. $this->cropH = $this->trimmed('cropW'); // note W, we want a square
  59. $this->cropX = $this->trimmed('cropX');
  60. $this->cropY = $this->trimmed('cropY');
  61. $this->img = $this->trimmed('img');
  62. $this->img = str_replace('data:image/jpeg;base64,', '', $this->img);
  63. $this->img = str_replace('data:image/png;base64,', '', $this->img);
  64. $this->img = str_replace(' ', '+', $this->img);
  65. $this->img = base64_decode($this->img);
  66. if (empty($this->img)) {
  67. throw new ClientException(_('No uploaded image data.'));
  68. }
  69. return true;
  70. }
  71. /**
  72. * Handle the request
  73. *
  74. * @return void
  75. */
  76. protected function handle()
  77. {
  78. parent::handle();
  79. $imagefile = null;
  80. // put the image data in a temporary file
  81. $fh = tmpfile();
  82. fwrite($fh, $this->img);
  83. unset($this->img);
  84. fseek($fh, 0); // go to beginning just to be sure the content is read properly
  85. // We get a MediaFile with a File object using the filehandle
  86. $mediafile = MediaFile::fromFilehandle($fh, $this->scoped);
  87. // and can dispose of the temporary filehandle since we're certain we have a File on disk now
  88. fclose($fh);
  89. $imagefile = ImageFile::fromFileObject($mediafile->fileRecord);
  90. unset($mediafile); // No need to keep the MediaFile around anymore, everything we need is in ImageFile
  91. // We're just using the Avatar function to build a filename here
  92. // but we don't save it _as_ an avatar below... but in the same dir!
  93. $filename = Avatar::filename(
  94. $this->scoped->getID(),
  95. image_type_to_extension($imagefile->preferredType()),
  96. null,
  97. 'bg-'.common_timestamp()
  98. );
  99. $imagefile->resizeTo(Avatar::path($filename), array('width'=>1280, 'height'=>1280, 'x'=>$this->cropX, 'y'=>$this->cropY, 'w'=>$this->cropW, 'h'=>$this->cropH));
  100. $result['url'] = Avatar::url($filename);
  101. Profile_prefs::setData($this->scoped, 'qvitter', 'background_image', $result['url']);
  102. $this->initDocument('json');
  103. $this->showJsonObjects($result);
  104. $this->endDocument('json');
  105. }
  106. }