Skip to content
This repository has been archived by the owner on Nov 16, 2022. It is now read-only.

Latest commit

 

History

History
76 lines (66 loc) · 2.26 KB

UploadFilenameListener.md

File metadata and controls

76 lines (66 loc) · 2.26 KB
<?php

/**
 * Example listener which will change the upload folder and filename for an uploaded image
 * 
 * Should be in `src/Event`
 * 
 * @category Example
 * @package UploadFilenameListener.php
 * 
 * @author David Yell <neon1024@gmail.com>
 * @when 03/03/15
 *
 */

namespace App\Event;

use Cake\Event\Event;
use Cake\Event\EventListenerInterface;
use Cake\Utility\Inflector;
use Proffer\Lib\ProfferPath;

class UploadFilenameListener implements EventListenerInterface
{
    public function implementedEvents()
    {
        return [
            'Proffer.afterPath' => 'change',
        ];
    }

    /**
     * Rename a file and change it's upload folder before it's processed
     *
     * @param Event $event The event class with a subject of the entity
     * @param ProfferPath $path
     * @return ProfferPath $path
     */
    public function change(Event $event, ProfferPath $path)
    {
        // Detect and select the right file extension
        switch ($event->subject()->get('image')['type']) {
            default:
            case "image/jpeg":
                $ext = '.jpg';
                break;
            case "image/png":
                $ext = '.png';
                break;
            case "image/gif":
                $ext = '.gif';
                break;
        }

        // Create a new filename using the id and the name of the entity
        $newFilename = $event->subject()->get('id') . '_' . Inflector::slug($event->subject()->get('name')) . $ext;

        // This would set the containing upload folder to `webroot/files/user_profile_pictures/<field>/<seed>/<file>` 
        // for every file uploaded through the table this listener was attached to.
        $path->setTable('user_profile_pictures'); 

        // If a seed is set in the data already, we'll use that rather than make a new one each time we upload
        if (empty($event->subject()->get('image_dir'))) {
            $path->setSeed(date('Y-m-d-His'));
        }

        // Change the filename in both the path to be saved, and in the entity data for saving to the db
        $path->setFilename($newFilename);
        $event->subject('image')['name'] = $newFilename;

        // Must return the modified path instance, so that things are saved in the right place
        return $path;
    }
}