Passed
Pull Request — master (#192)
by Lio
04:47
created

submitAudio.php (1 issue)

Labels
Severity
1
<?php declare(strict_types=1);
2
/*
3
 You may not change or alter any portion of this comment or credits
4
 of supporting developers from this source code or any supporting source code
5
 which is considered copyrighted (c) material of the original comment or credit authors.
6
7
 This program is distributed in the hope that it will be useful,
8
 but WITHOUT ANY WARRANTY; without even the implied warranty of
9
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
10
*/
11
12
/**
13
 * @category        Module
14
 * @copyright       {@link https://xoops.org/ XOOPS Project}
15
 * @license         GNU GPL 2.0 or later (https://www.gnu.org/licenses/gpl-2.0.html)
16
 * @author          Marcello Brandão aka  Suico, Mamba, LioMJ  <https://xoops.org>
17
 */
18
19
use Xmf\Request;
0 ignored issues
show
This use statement conflicts with another class in this namespace, Request. Consider defining an alias.

Let?s assume that you have a directory layout like this:

.
|-- OtherDir
|   |-- Bar.php
|   `-- Foo.php
`-- SomeDir
    `-- Foo.php

and let?s assume the following content of Bar.php:

// Bar.php
namespace OtherDir;

use SomeDir\Foo; // This now conflicts the class OtherDir\Foo

If both files OtherDir/Foo.php and SomeDir/Foo.php are loaded in the same runtime, you will see a PHP error such as the following:

PHP Fatal error:  Cannot use SomeDir\Foo as Foo because the name is already in use in OtherDir/Foo.php

However, as OtherDir/Foo.php does not necessarily have to be loaded and the error is only triggered if it is loaded before OtherDir/Bar.php, this problem might go unnoticed for a while. In order to prevent this error from surfacing, you must import the namespace with a different alias:

// Bar.php
namespace OtherDir;

use SomeDir\Foo as SomeDirFoo; // There is no conflict anymore.
Loading history...
20
use XoopsModules\Suico\{
21
    AudioHandler
22
};
23
24
/**
25
 * Xoops header ...
26
 */
27
$GLOBALS['xoopsOption']['template_main'] = 'suico_index.tpl';
28
require __DIR__ . '/header.php';
29
/**
30
 * Modules class includes
31
 */
32
//require_once __DIR__ . '/class/Audio.php';
33
/**
34
 * Audio Factory created
35
 */
36
$audioFactory = new AudioHandler($xoopsDB);
37
$myts         = \MyTextSanitizer::getInstance();
38
/**
39
 * Getting the title
40
 */
41
$title       = Request::getString('title', '', 'POST');
42
$author      = Request::getString('author', '', 'POST');
43
$description = Request::getText('description', '', 'POST');
44
/**
45
 * Getting parameters defined in admin side
46
 */
47
$path_upload  = XOOPS_ROOT_PATH . '/uploads/suico/audio/';
48
$maxfilebytes = $helper->getConfig('maxfilesize');
49
/**
50
 * If we are receiving a file
51
 */
52
if ('sel_audio' === (Request::getArray('xoops_upload_file', '', 'POST')[0])) {
53
    /**
54
     * Verify Token
55
     */
56
    if (!$GLOBALS['xoopsSecurity']->check()) {
57
        redirect_header(Request::getString('HTTP_REFERER', '', 'SERVER'), 3, _MD_SUICO_TOKENEXPIRED);
58
    }
59
    /**
60
     * Try to upload the audio file, insert in database, and then redirect to index
61
     */
62
    if ($audioFactory->receiveAudio(
63
        $title,
64
        $path_upload,
65
        $author,
66
        $maxfilebytes,
67
        $description
68
    )) {
69
        //$extra_tags['X_OWNER_NAME'] = $xoopsUser->getVar('uname');
70
        //                     $extra_tags['X_OWNER_UID'] = $xoopsUser->getVar('uid');
71
        // /** @var \XoopsNotificationHandler $notificationHandler */
72
        //                     $notificationHandler = xoops_getHandler('notification');
73
        //                     $notificationHandler->triggerEvent ("picture", $xoopsUser->getVar('uid'), "new_picture",$extra_tags);
74
        //header("Location: ".XOOPS_URL."/modules/suico/index.php?uid=".$xoopsUser->getVar('uid'));
75
        redirect_header(
76
            XOOPS_URL . '/modules/suico/audios.php?uid=' . $xoopsUser->getVar('uid'),
77
            50,
78
            _MD_SUICO_UPLOADEDAUDIO
79
        );
80
    } else {
81
        redirect_header(
82
            XOOPS_URL . '/modules/suico/audios.php?uid=' . $xoopsUser->getVar('uid'),
83
            50,
84
            _MD_SUICO_ERROR
85
        );
86
    }
87
}
88
/**
89
 * Close page
90
 */
91
require \dirname(__DIR__, 2) . '/footer.php';
92