mirror of https://github.com/pixelfed/pixelfed
commit
090881829f
@ -0,0 +1,165 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Jobs\DeletePipeline;
|
||||||
|
|
||||||
|
use Illuminate\Bus\Queueable;
|
||||||
|
use Illuminate\Queue\SerializesModels;
|
||||||
|
use Illuminate\Queue\InteractsWithQueue;
|
||||||
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
||||||
|
use Illuminate\Foundation\Bus\Dispatchable;
|
||||||
|
use App\{
|
||||||
|
AccountLog,
|
||||||
|
Activity,
|
||||||
|
Avatar,
|
||||||
|
Bookmark,
|
||||||
|
Collection,
|
||||||
|
DirectMessage,
|
||||||
|
EmailVerification,
|
||||||
|
Follower,
|
||||||
|
FollowRequest,
|
||||||
|
Hashtag,
|
||||||
|
Like,
|
||||||
|
Media,
|
||||||
|
Mention,
|
||||||
|
Notification,
|
||||||
|
Profile,
|
||||||
|
Report,
|
||||||
|
ReportComment,
|
||||||
|
ReportLog,
|
||||||
|
StatusHashtag,
|
||||||
|
Status,
|
||||||
|
User,
|
||||||
|
UserFilter,
|
||||||
|
UserSetting,
|
||||||
|
};
|
||||||
|
|
||||||
|
class DeleteAccountPipeline implements ShouldQueue
|
||||||
|
{
|
||||||
|
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
|
||||||
|
|
||||||
|
protected $user;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create a new job instance.
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function __construct(User $user)
|
||||||
|
{
|
||||||
|
$this->user = $user;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Execute the job.
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function handle()
|
||||||
|
{
|
||||||
|
$user = $this->user;
|
||||||
|
$this->deleteAccountLogs($user);
|
||||||
|
$this->deleteActivities($user);
|
||||||
|
$this->deleteAvatar($user);
|
||||||
|
$this->deleteBookmarks($user);
|
||||||
|
$this->deleteEmailVerification($user);
|
||||||
|
$this->deleteFollowRequests($user);
|
||||||
|
$this->deleteFollowers($user);
|
||||||
|
$this->deleteLikes($user);
|
||||||
|
$this->deleteMedia($user);
|
||||||
|
$this->deleteMentions($user);
|
||||||
|
$this->deleteNotifications($user);
|
||||||
|
|
||||||
|
// todo send Delete to every known instance sharedInbox
|
||||||
|
}
|
||||||
|
|
||||||
|
public function deleteAccountLogs($user)
|
||||||
|
{
|
||||||
|
AccountLog::chunk(200, function($logs) use ($user) {
|
||||||
|
foreach($logs as $log) {
|
||||||
|
if($log->user_id == $user->id) {
|
||||||
|
$log->delete();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
public function deleteActivities($user)
|
||||||
|
{
|
||||||
|
// todo after AP
|
||||||
|
}
|
||||||
|
|
||||||
|
public function deleteAvatar($user)
|
||||||
|
{
|
||||||
|
$avatar = $user->profile->avatar;
|
||||||
|
|
||||||
|
if(is_file($avatar->media_path)) {
|
||||||
|
unlink($avatar->media_path);
|
||||||
|
}
|
||||||
|
|
||||||
|
if(is_file($avatar->thumb_path)) {
|
||||||
|
unlink($avatar->thumb_path);
|
||||||
|
}
|
||||||
|
|
||||||
|
$avatar->delete();
|
||||||
|
}
|
||||||
|
|
||||||
|
public function deleteBookmarks($user)
|
||||||
|
{
|
||||||
|
Bookmark::whereProfileId($user->profile->id)->delete();
|
||||||
|
}
|
||||||
|
|
||||||
|
public function deleteEmailVerification($user)
|
||||||
|
{
|
||||||
|
EmailVerification::whereUserId($user->id)->delete();
|
||||||
|
}
|
||||||
|
|
||||||
|
public function deleteFollowRequests($user)
|
||||||
|
{
|
||||||
|
$id = $user->profile->id;
|
||||||
|
FollowRequest::whereFollowingId($id)->orWhere('follower_id', $id)->delete();
|
||||||
|
}
|
||||||
|
|
||||||
|
public function deleteFollowers($user)
|
||||||
|
{
|
||||||
|
$id = $user->profile->id;
|
||||||
|
Follower::whereProfileId($id)->orWhere('following_id', $id)->delete();
|
||||||
|
}
|
||||||
|
|
||||||
|
public function deleteLikes($user)
|
||||||
|
{
|
||||||
|
$id = $user->profile->id;
|
||||||
|
Like::whereProfileId($id)->delete();
|
||||||
|
}
|
||||||
|
|
||||||
|
public function deleteMedia($user)
|
||||||
|
{
|
||||||
|
$medias = Media::whereUserId($user->id)->get();
|
||||||
|
foreach($medias as $media) {
|
||||||
|
$path = $media->media_path;
|
||||||
|
$thumb = $media->thumbnail_path;
|
||||||
|
if(is_file($path)) {
|
||||||
|
unlink($path);
|
||||||
|
}
|
||||||
|
if(is_file($thumb)) {
|
||||||
|
unlink($thumb);
|
||||||
|
}
|
||||||
|
$media->delete();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public function deleteMentions($user)
|
||||||
|
{
|
||||||
|
Mention::whereProfileId($user->profile->id)->delete();
|
||||||
|
}
|
||||||
|
|
||||||
|
public function deleteNotifications($user)
|
||||||
|
{
|
||||||
|
$id = $user->profile->id;
|
||||||
|
Notification::whereProfileId($id)->orWhere('actor_id', $id)->delete();
|
||||||
|
}
|
||||||
|
|
||||||
|
public function deleteProfile($user) {}
|
||||||
|
public function deleteReports($user) {}
|
||||||
|
public function deleteStatuses($user) {}
|
||||||
|
public function deleteUser($user) {}
|
||||||
|
}
|
@ -1,31 +1,64 @@
|
|||||||
FROM php:7.2.6-fpm-alpine
|
FROM php:7-fpm
|
||||||
|
|
||||||
ARG COMPOSER_VERSION="1.6.5"
|
ARG COMPOSER_VERSION="1.6.5"
|
||||||
ARG COMPOSER_CHECKSUM="67bebe9df9866a795078bb2cf21798d8b0214f2e0b2fd81f2e907a8ef0be3434"
|
ARG COMPOSER_CHECKSUM="67bebe9df9866a795078bb2cf21798d8b0214f2e0b2fd81f2e907a8ef0be3434"
|
||||||
|
|
||||||
RUN apk add --no-cache --virtual .build build-base autoconf imagemagick-dev libtool && \
|
RUN apt-get update \
|
||||||
apk --no-cache add imagemagick git && \
|
&& apt-get install -y --no-install-recommends git \
|
||||||
docker-php-ext-install pdo_mysql pcntl && \
|
optipng pngquant jpegoptim gifsicle \
|
||||||
pecl install imagick && \
|
libfreetype6 libjpeg62-turbo libpng16-16 libxpm4 libvpx4 libmagickwand-6.q16-3 \
|
||||||
docker-php-ext-enable imagick pcntl imagick && \
|
libfreetype6-dev libjpeg62-turbo-dev libpng-dev libxpm-dev libvpx-dev libmagickwand-dev \
|
||||||
curl -LsS https://getcomposer.org/download/${COMPOSER_VERSION}/composer.phar -o /tmp/composer.phar && \
|
&& docker-php-source extract \
|
||||||
echo "${COMPOSER_CHECKSUM} /tmp/composer.phar" | sha256sum -c - && \
|
&& docker-php-ext-configure gd \
|
||||||
install -m0755 -o root -g root /tmp/composer.phar /usr/bin/composer.phar && \
|
--with-freetype-dir=/usr/lib/x86_64-linux-gnu/ \
|
||||||
ln -sf /usr/bin/composer.phar /usr/bin/composer && \
|
--with-jpeg-dir=/usr/lib/x86_64-linux-gnu/ \
|
||||||
rm /tmp/composer.phar && \
|
--with-xpm-dir=/usr/lib/x86_64-linux-gnu/ \
|
||||||
apk --no-cache del --purge .build
|
--with-vpx-dir=/usr/lib/x86_64-linux-gnu/ \
|
||||||
|
&& docker-php-ext-install pdo_mysql pcntl gd exif bcmath \
|
||||||
COPY . /var/www/html/
|
&& pecl install imagick \
|
||||||
|
&& docker-php-ext-enable imagick pcntl imagick gd exif \
|
||||||
WORKDIR /var/www/html
|
&& curl -LsS https://getcomposer.org/download/${COMPOSER_VERSION}/composer.phar -o /usr/bin/composer \
|
||||||
RUN install -d -m0755 -o www-data -g www-data \
|
&& echo "${COMPOSER_CHECKSUM} /usr/bin/composer" | sha256sum -c - \
|
||||||
/var/www/html/storage \
|
&& chmod 755 /usr/bin/composer \
|
||||||
/var/www/html/storage/framework \
|
&& apt-get autoremove --purge -y \
|
||||||
/var/www/html/storage/logs \
|
libfreetype6-dev libjpeg62-turbo-dev libpng-dev libxpm-dev libvpx-dev libmagickwand-dev \
|
||||||
/var/www/html/storage/framework/sessions \
|
&& rm -rf /var/cache/apt \
|
||||||
/var/www/html/storage/framework/views \
|
&& docker-php-source delete
|
||||||
/var/www/html/storage/framework/cache && \
|
|
||||||
composer install --prefer-source --no-interaction
|
|
||||||
|
|
||||||
VOLUME ["/var/www/html"]
|
|
||||||
ENV PATH="~/.composer/vendor/bin:./vendor/bin:${PATH}"
|
ENV PATH="~/.composer/vendor/bin:./vendor/bin:${PATH}"
|
||||||
|
|
||||||
|
COPY . /var/www/
|
||||||
|
|
||||||
|
WORKDIR /var/www/
|
||||||
|
RUN cp -r storage storage.skel \
|
||||||
|
&& cp contrib/docker/php.ini /usr/local/etc/php/conf.d/pixelfed.ini \
|
||||||
|
&& composer install --prefer-source --no-interaction \
|
||||||
|
&& rm -rf html && ln -s public html
|
||||||
|
|
||||||
|
VOLUME ["/var/www/storage", "/var/www/public.ext"]
|
||||||
|
|
||||||
|
ENV APP_ENV=production \
|
||||||
|
APP_DEBUG=false \
|
||||||
|
LOG_CHANNEL=stderr \
|
||||||
|
DB_CONNECTION=mysql \
|
||||||
|
DB_PORT=3306 \
|
||||||
|
DB_HOST=db \
|
||||||
|
BROADCAST_DRIVER=log \
|
||||||
|
QUEUE_DRIVER=redis \
|
||||||
|
HORIZON_PREFIX=horizon-pixelfed \
|
||||||
|
REDIS_HOST=redis \
|
||||||
|
SESSION_SECURE_COOKIE=true \
|
||||||
|
API_BASE="/api/1/" \
|
||||||
|
API_SEARCH="/api/search" \
|
||||||
|
OPEN_REGISTRATION=true \
|
||||||
|
ENFORCE_EMAIL_VERIFICATION=true \
|
||||||
|
REMOTE_FOLLOW=false \
|
||||||
|
ACTIVITY_PUB=false
|
||||||
|
|
||||||
|
CMD cp -r storage.skel/* storage/ \
|
||||||
|
&& cp -r public/* public.ext/ \
|
||||||
|
&& chown -R www-data:www-data storage/ \
|
||||||
|
&& php artisan storage:link \
|
||||||
|
&& php artisan migrate --force \
|
||||||
|
&& php artisan update \
|
||||||
|
&& exec php-fpm
|
||||||
|
Loading…
Reference in New Issue