<?php

$app->get('/download/{id}', function ($request, $response, $args) {
    $this->logger->info("Загрузка файла");

    $file=$this->files_GW->getFile($args['id']);

    $url=$this->settings['upload_folder'];
    $url.=$file->path;
    $url.=$file->name;

    $response = $response->withHeader('Content-Disposition', 'attachment');
    $response = $response->withHeader('Location', $url);
    return $this->view->render($response, 'download.html', $args);
})->setName('download');