Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use storage in ads uploads #185

Open
wants to merge 5 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 13 additions & 29 deletions banner/banner.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,52 +10,36 @@

namespace phpbb\ads\banner;

use phpbb\storage\storage;

class banner
{
/** @var \phpbb\files\upload */
protected $files_upload;

/** @var \phpbb\filesystem\filesystem_interface */
protected $filesystem;

/** @var string */
protected $root_path;

/** @var \phpbb\files\filespec */
/** @var \phpbb\files\filespec_storage */
protected $file;

/** @var storage */
protected $storage;

/**
* Constructor
*
* @param \phpbb\files\upload $files_upload Files upload object
* @param \phpbb\filesystem\filesystem_interface $filesystem Filesystem object
* @param string $root_path Root path
* @param \phpbb\files\upload $files_upload Files upload object
* @param storage $storage Storage object
*/
public function __construct(\phpbb\files\upload $files_upload, \phpbb\filesystem\filesystem_interface $filesystem, $root_path)
public function __construct(\phpbb\files\upload $files_upload, storage $storage)
{
$this->files_upload = $files_upload;
$this->filesystem = $filesystem;
$this->root_path = $root_path;
$this->storage = $storage;
}

public function set_file($file)
{
$this->file = $file;
}

/**
* Create storage directory for banners uploaded by Ads Management
*
* @throws \phpbb\filesystem\exception\filesystem_exception
*/
public function create_storage_dir()
{
if (!$this->filesystem->exists($this->root_path . 'images/phpbb_ads'))
{
$this->filesystem->mkdir($this->root_path . 'images/phpbb_ads');
}
}

/**
* Handle banner upload
*
Expand All @@ -69,11 +53,11 @@ public function upload()
$this->files_upload->set_allowed_extensions(array('gif', 'jpg', 'jpeg', 'png'));

// Upload file
$this->set_file($this->files_upload->handle_upload('files.types.form', 'banner'));
$this->set_file($this->files_upload->handle_upload('files.types.form_storage', 'banner'));
$this->file->clean_filename('unique_ext');

// Move file to proper location
if (!$this->file->move_file('images/phpbb_ads'))
if (!$this->file->move_file($this->storage))
{
$this->file->set_error('FILE_MOVE_UNSUCCESSFUL');
}
Expand All @@ -91,6 +75,6 @@ public function upload()
*/
public function remove()
{
$this->file->remove();
$this->file->remove($this->storage);
}
}
5 changes: 5 additions & 0 deletions config/routing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,8 @@ phpbb_ads_visual_demo:
defaults: { _controller: phpbb.ads.visual_demo.controller:handle }
requirements:
action: enable|disable

phpbb_ads_storage_banner:
path: /ads_download/{file}
defaults:
_controller: phpbb.ads.controller.banner:handle
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We'll probably want to add stateless: true here eventually, re: https://github.com/phpbb/phpbb/compare/master...marc1706:phpbb:feature/stateless_sessions?expand=1

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Well, this can be done in the future, there is not even a pull request for this and can change in the future

23 changes: 20 additions & 3 deletions config/services.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,24 @@ imports:
- { resource: location.yml }

services:
phpbb.ads.storage:
class: phpbb\storage\storage
arguments:
- '@storage.adapter.factory'
- '@storage.file_tracker'
- 'phpbb_ads'
tags:
- { name: storage }

phpbb.ads.controller.banner:
class: phpbb\storage\controller\controller
arguments:
- '@cache'
- '@dbal.conn'
- '@mimetype.extension_guesser'
- '@phpbb.ads.storage'
- '@symfony_request'

phpbb.ads.ad.manager:
class: phpbb\ads\ad\manager
arguments:
Expand All @@ -17,9 +35,7 @@ services:
class: phpbb\ads\banner\banner
arguments:
- '@files.upload'
- '@filesystem'
- '%core.root_path%'
- '%phpbb.ads.tables.ad_locations%'
- '@phpbb.ads.storage'

phpbb.ads.helper:
class: phpbb\ads\controller\helper
Expand All @@ -38,6 +54,7 @@ services:
phpbb.ads.admin.input:
class: phpbb\ads\controller\admin_input
arguments:
- '@controller.helper'
- '@user'
- '@user_loader'
- '@language'
Expand Down
20 changes: 12 additions & 8 deletions controller/admin_input.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@
*/
class admin_input
{
/** @var \phpbb\controller\helper */
protected $controller_helper;

/** @var \phpbb\user */
protected $user;

Expand All @@ -38,14 +41,16 @@ class admin_input
/**
* Constructor
*
* @param \phpbb\user $user User object
* @param \phpbb\user_loader $user_loader User loader object
* @param \phpbb\language\language $language Language object
* @param \phpbb\request\request $request Request object
* @param \phpbb\ads\banner\banner $banner Banner upload object
* @param \phpbb\controller\helper $controller_helper Controller helper object
* @param \phpbb\user $user User object
* @param \phpbb\user_loader $user_loader User loader object
* @param \phpbb\language\language $language Language object
* @param \phpbb\request\request $request Request object
* @param \phpbb\ads\banner\banner $banner Banner upload object
*/
public function __construct(\phpbb\user $user, \phpbb\user_loader $user_loader, \phpbb\language\language $language, \phpbb\request\request $request, \phpbb\ads\banner\banner $banner)
public function __construct(\phpbb\controller\helper $controller_helper, \phpbb\user $user, \phpbb\user_loader $user_loader, \phpbb\language\language $language, \phpbb\request\request $request, \phpbb\ads\banner\banner $banner)
{
$this->controller_helper = $controller_helper;
$this->user = $user;
$this->user_loader = $user_loader;
$this->language = $language;
Expand Down Expand Up @@ -134,10 +139,9 @@ public function banner_upload($ad_code)
{
try
{
$this->banner->create_storage_dir();
$realname = $this->banner->upload();

$banner_html = '<img src="' . generate_board_url() . '/images/phpbb_ads/' . $realname . '" />';
$banner_html = '<img src="' . generate_board_url() . $this->controller_helper->route('phpbb_ads_storage_banner', ['file' => $realname]) . '" />';

if ($this->request->is_ajax())
{
Expand Down
3 changes: 3 additions & 0 deletions language/en/common.php
Original file line number Diff line number Diff line change
Expand Up @@ -66,4 +66,7 @@
'AD_SLIDE_UP_DESC' => 'Displays on every page after user scrolls below main content. Slides up from the bottom.',
'AD_SCRIPTS' => 'Scripts',
'AD_SCRIPTS_DESC' => 'This location is for specialty JavaScript code like AdSense Auto ads, tracking codes, etc. The code entered here will be inserted into the page’s HEAD tag and is not intended for ad placement, but only for helper scripts.',

// Storage
'STORAGE_PHPBB_ADS_TITLE' => 'phpBB Ads',
));
114 changes: 114 additions & 0 deletions migrations/v30x/m1_storage.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,114 @@
<?php
/**
*
* Advertisement management. An extension for the phpBB Forum Software package.
*
* @copyright (c) 2017 phpBB Limited <https://www.phpbb.com>
* @license GNU General Public License, version 2 (GPL-2.0)
*
*/

namespace phpbb\ads\migrations\v30x;

use phpbb\filesystem\filesystem;
use phpbb\storage\provider\local;

class m1_storage extends \phpbb\db\migration\container_aware_migration
{
private const BATCH_SIZE = 100;

/**
* {@inheritdoc}
*/
public function effectively_installed()
{
/** @var filesystem $filesystem_interface */
$filesystem = $this->container->get('filesystem');

return $this->config->offsetExists('storage\\phpbb_ads\\provider') &&
$this->config->offsetExists('storage\\phpbb_ads\\config\\path') &&
$filesystem->exists($this->phpbb_root_path . 'images/phpbb_ads');
}

/**
* {@inheritDoc}
*/
public static function depends_on()
{
return [
'\phpbb\db\migration\data\v400\dev',
'\phpbb\ads\migrations\v20x\m1_hide_ad_for_group',
];
}

public function update_data()
{
return [
['config.add', ['storage\\phpbb_ads\\provider', local::class]],
['config.add', ['storage\\phpbb_ads\\config\\path', 'images/phpbb_ads']],
['custom', [[$this, 'migrate_ads_storage']]],
];
}

public function migrate_ads_storage()
{
/** @var filesystem $filesystem_interface */
$filesystem = $this->container->get('filesystem');

/** @var file_tracker $file_tracker */
$file_tracker = $this->container->get('storage.file_tracker');

$dir = $this->phpbb_root_path . 'images/phpbb_ads';

if (!$filesystem->exists($dir))
{
$filesystem->mkdir($dir);
}

$handle = @opendir($dir);

if ($handle)
{
$files = [];
while (($file = readdir($handle)) !== false)
{
if ($file === '.' || $file === '..')
{
continue;
}

$files[] = [
'file_path' => $file,
'filesize' => filesize($dir . '/' . $file),
];

if (count($files) >= self::BATCH_SIZE)
{
$file_tracker->track_files('phpbb_ads', $files);
$files = [];
}
}

if (!empty($files))
{
$file_tracker->track_files('phpbb_ads', $files);
}

closedir($handle);
}
}

public function revert_data()
{
return [
['config.remove', ['storage\\phpbb_ads\\provider']],
['config.remove', ['storage\\phpbb_ads\\config\\path']],
['custom', [[$this, 'revert_ads_storage']]],
];
}

public function revert_ads_storage()
{
$this->sql_query('DELETE FROM ' . $this->tables['storage'] . ' WHERE storage = "phpbb_ads"');
}
}
19 changes: 6 additions & 13 deletions tests/banner/banner_base.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,12 @@ class banner_base extends \phpbb_test_case
/** @var \PHPUnit\Framework\MockObject\MockObject|\phpbb\files\upload */
protected $files_upload;

/** @var \PHPUnit\Framework\MockObject\MockObject|\phpbb\filesystem\filesystem */
protected $filesystem;
/** @var \PHPUnit\Framework\MockObject\MockObject|\phpbb\files\filespec_storage */
protected $file;

/** @var string */
protected $root_path;
/** @var \phpbb\storage\storage */

/** @var \PHPUnit\Framework\MockObject\MockObject|\phpbb\files\filespec */
protected $file;
protected $storage;

protected static function setup_extensions()
{
Expand All @@ -36,16 +34,12 @@ protected function setUp(): void
{
parent::setUp();

global $phpbb_root_path;

$this->files_upload = $this->getMockBuilder('\phpbb\files\upload')
->disableOriginalConstructor()
->getMock();
$this->filesystem = $this->getMockBuilder('\phpbb\filesystem\filesystem')
$this->storage = $this->getMockBuilder('\phpbb\storage\storage')
->disableOriginalConstructor()
->getMock();

$this->root_path = $phpbb_root_path;
}

/**
Expand All @@ -57,8 +51,7 @@ public function get_manager()
{
return new \phpbb\ads\banner\banner(
$this->files_upload,
$this->filesystem,
$this->root_path
$this->storage
);
}
}
Loading