-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathaudios.php
More file actions
122 lines (118 loc) · 5.05 KB
/
audios.php
File metadata and controls
122 lines (118 loc) · 5.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<?php declare(strict_types=1);
/*
You may not change or alter any portion of this comment or credits
of supporting developers from this source code or any supporting source code
which is considered copyrighted (c) material of the original comment or credit authors.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*/
/**
* @category Module
* @copyright {@link https://xoops.org/ XOOPS Project}
* @license GNU GPL 2.0 or later (https://www.gnu.org/licenses/gpl-2.0.html)
* @author Marcello Brandão aka Suico, Mamba, LioMJ <https://xoops.org>
*/
use Xmf\Request;
use XoopsModules\Suico\{
AudioController
};
const COUNTAUDIOS = 'countAudios';
$GLOBALS['xoopsOption']['template_main'] = 'suico_audios.tpl';
require __DIR__ . '/header.php';
$controller = new AudioController($xoopsDB, $xoopsUser);
/**
* Fetching numbers of groups friends videos pictures etc...
*/
$nbSections = $controller->getNumbersSections();
$start = Request::getInt('start', 0, 'GET');
/**
* Fetching numbers of groups friends videos pictures etc...
*/
$nbSections = $controller->getNumbersSections();
/**
* Criteria for Audio
*/
$criteriaUidAudio = new Criteria('uid_owner', $controller->uidOwner);
$criteriaUidAudio->setStart($start);
$criteriaUidAudio->setLimit($helper->getConfig('audiosperpage'));
/**
* Get all audios of this user and assign them to template
*/
$audiosArray = [];
$audios = $controller->getAudio($criteriaUidAudio);
/**
* If there is no audio files show in template lang_noaudioyet
*/
if (isset($nbSections[COUNTAUDIOS]) && 0 === $nbSections[COUNTAUDIOS]) {
$lang_noaudioyet = _MD_SUICO_NOTHINGYET;
$xoopsTpl->assign('lang_nopicyet', $lang_noaudioyet);
// echo '<script>alert("Please add some audio files here")</script>';
} else {
/**
* Lets populate an array with the data from the pictures
*/
$i = 0;
foreach ($audios as $audio) {
$audiosArray[$i]['audio_id'] = $audio->getVar('audio_id', 's');
$audiosArray[$i]['title'] = $audio->getVar('title', 's');
$audiosArray[$i]['author'] = $audio->getVar('author', 's');
$audiosArray[$i]['description'] = $audio->getVar('description', 's');
$audiosArray[$i]['filename'] = $audio->getVar('filename', 's');
$audiosArray[$i]['uid_owner'] = $audio->getVar('uid_owner', 's');
$audiosArray[$i]['date_created'] = formatTimestamp($audio->getVar('date_created', 's'));
$audiosArray[$i]['date_updated'] = formatTimestamp($audio->getVar('date_updated', 's'));
$xoopsTpl->assign('audios', $audiosArray);
$i++;
}
}
$xoopsTpl->assign('audios', $audios);
$countAudio = $nbSections[COUNTAUDIOS] ?? 0;
try {
$audiosArray = $controller->assignAudioContent($countAudio, $audios);
} catch (\RuntimeException $e) {
echo 'Caught exception: ', $e->getMessage(), "\n";
}
if (is_array($audiosArray) && count($audiosArray) > 0) {
$xoopsTpl->assign('audios', $audiosArray);
$audio_list = [];
foreach ($audiosArray as $audio_item) {
$audio_list[] = XOOPS_UPLOAD_URL . '/suico/audio/' . $audio_item['filename']; // . ' | ';
}
//$audio_list = substr($audio_list,-2);
$xoopsTpl->assign('audio_list', $audio_list);
} else {
$xoopsTpl->assign('lang_noaudioyet', _MD_SUICO_NOAUDIOYET);
}
$pageNav = '';
if (isset($nbSections[COUNTAUDIOS]) && $nbSections[COUNTAUDIOS] > 0) {
$pageNav = $controller->getAudiosNavBar($nbSections[COUNTAUDIOS], $helper->getConfig('audiosperpage'), $start, 2);
}
$xoTheme->addScript('https://unpkg.com/wavesurfer.js');
//meta language names
$xoopsTpl->assign('lang_meta', _MD_SUICO_META);
$xoopsTpl->assign('lang_title', _MD_SUICO_META_TITLE);
$xoopsTpl->assign('lang_album', _MD_SUICO_META_ALBUM);
$xoopsTpl->assign('lang_artist', _MD_SUICO_META_ARTIST);
$xoopsTpl->assign('lang_year', _MD_SUICO_META_YEAR);
//form actions
$xoopsTpl->assign('lang_delete', _MD_SUICO_DELETE);
$xoopsTpl->assign('lang_editaudio', _MD_SUICO_EDIT_AUDIO);
$xoopsTpl->assign('lang_featurethisvideo', _MD_SUICO_FEATURETHISVIDEO);
//Form Submit
$xoopsTpl->assign('lang_selectaudio', _MD_SUICO_AUDIO_SELECT);
$xoopsTpl->assign('lang_authorLabel', _MD_SUICO_AUDIO_AUTHOR);
$xoopsTpl->assign('lang_titleLabel', _MD_SUICO_AUDIO_TITLE);
$xoopsTpl->assign('lang_submitValue', _MD_SUICO_AUDIO_SUBMIT);
$xoopsTpl->assign('lang_addaudios', _MD_SUICO_AUDIO_ADD);
$xoopsTpl->assign('width', $helper->getConfig('width_tube'));
$xoopsTpl->assign('height', $helper->getConfig('height_tube'));
$xoopsTpl->assign('player_from_list', _MD_SUICO_PLAYER);
$xoopsTpl->assign('lang_audiohelp', sprintf(_MD_SUICO_AUDIO_ADD_HELP, $helper->getConfig('maxfilesize')));
$xoopsTpl->assign('max_youcanupload', $helper->getConfig('maxfilesize'));
$xoopsTpl->assign('lang_mysection', _MD_SUICO_MYAUDIOS);
$xoopsTpl->assign('section_name', _MD_SUICO_AUDIOS);
//Page Navigation
$xoopsTpl->assign('pageNav', $pageNav);
require __DIR__ . '/footer.php';
require \dirname(__DIR__, 2) . '/footer.php';