-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjokte_adjuntos.php
152 lines (113 loc) · 5.49 KB
/
jokte_adjuntos.php
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
<?php
/**
* @version 0.1.0
* @package Jokte.Plugin
* @copyright CopyLeft Comparte Igual. Comunidad Juuntos Latinoamérica.
* @license GNU/GPL v3.0
*/
defined('_JEXEC') or die('Acceso directo a este archivo restringido');
jimport('joomla.plugin.plugin');
jimport('joomla.form.form');
jimport('joomla.form.helper');
jimport('joomla.utilities.simplexml');
jimport('joomla.filesystem.mime');
class plgSystemJokte_Adjuntos extends JPlugin {
function __construct(&$subject, $config) {
// Realiza comprobaciones adicionales en la inicialización
// del plugin para verificar si la operación se efectua desde
// el backend y si el usuario actual tiene permisos de edición
if(!JFactory::getApplication()->isAdmin()) return;
$user = JFactory::getUser();
if(!$user->authorise('core.edit', 'com_content')) return;
parent::__construct($subject, $config);
}
function onBeforeRender () {
$app = JFactory::getApplication();
$jinput = $app->input;
// obtiene los parámetros del request e inicializa valores predeterminados para
// el contexto de edición de un artículo
$reqParams = $jinput->getArray(array('view' => '','layout' => ''));
// termina la ejecución del plugin si los parametros recibidos no cumplen
// con las condiciones preestablecidas para modificar el contexto de edición de
// artículos
if ($reqParams["view"] != "article" || $reqParams["layout"] != "edit") return;
// Obtiene id del artículo
$id = $jinput->get('id', null, null);
$doc = JFactory::getDocument();
$doc->addStyleSheet(JURI::root().'plugins/system/jokte_adjuntos/assets/css/estilos.css');
// obtiene el buffer del documento que será renderizado
$buffer = mb_convert_encoding($doc->getBuffer('component'),'html-entities','utf-8');
// inicializa la manipulación del DOM para el buffer del documento
$dom = new DomDocument;
$dom->validateOnParse = true;
$dom->loadHTML($buffer);
// obtiene los datos de los adjuntos
$data = self::getAttachmentsData($id);
// selecciona elemento del DOM que contendrá los registros de los archivos adjuntos
$contenedor = $dom->getElementById("adjuntos");
// realiza la construcción de la tabla con el listado de adjuntos
$wrap = $dom->createElement("div");
$wrap->setAttribute("class", "wrap");
$tabla = $dom->createElement("table");
$tbody = $dom->createElement("tbody");
$c = 0;
foreach($data as $item){
$itemId = 'item-'.$c;
$iconSrc = JMime::checkIcon($item->mime_type);
$row = $dom->createElement("tr");
$row->setAttribute('id', $itemId);
$mime = $dom->createElement("td");
$file = $dom->createElement("td");
$info = $dom->createElement("td");
$info->setAttribute('class', 'center');
$trash = $dom->createElement("td");
$trash->setAttribute('class', 'center');
$mimeImg = $dom->createElement("img");
$mimeImg->setAttribute('src', $iconSrc);
$mime->appendChild($mimeImg);
$name = $dom->createElement("span");
$nameAnchor = $dom->createElement("a");
$nameAnchor->setAttribute('href', '/uploads/'.$item->hash.'-'.$item->nombre_archivo);
$nameAnchor->setAttribute('target','_blank');
$nameAnchor->nodeValue = $item->nombre_archivo;
$name->appendChild($nameAnchor);
$file->appendChild($name);
$infoBtn = $dom->createElement("button");
$infoBtn->setAttribute('onclick', 'showInfo()');
$infoBtn->setAttribute('title', 'Información');
$infoImg = $dom->createElement("img");
$infoImg->setAttribute('src', JURI::root() . '/media/adjuntos/file-info-icon.png');
$infoBtn->appendChild($infoImg);
$info->appendChild($infoBtn);
$trashBtn = $dom->createElement("button");
$trashBtn->setAttribute('onclick', 'eliminarAdjunto(this, event)');
$trashBtn->setAttribute('title', 'Eliminar archivo');
$trashBtn->setAttribute('data-hash', $item->hash);
$trashBtn->setAttribute('data-id', $itemId);
$trashImg = $dom->createElement("img");
$trashImg->setAttribute('src', JURI::root() . '/media/adjuntos/caneca.png');
$trashBtn->appendChild($trashImg);
$trash->appendChild($trashBtn);
$row->appendChild($mime);
$row->appendChild($file);
$row->appendChild($info);
$row->appendChild($trash);
$tbody->appendChild($row);
$c++;
}
$wrap->appendChild($tabla);
$tabla->appendChild($tbody);
$contenedor->appendChild($wrap);
// aplica los cambios realizados al DOM en un nuevo buffer para actualizar la presentación
// del la vista del componente en el contexto indicado
$newBuffer = $dom->saveHTML();
$doc->setBuffer($newBuffer,'component');
}
private function getAttachmentsData ($id) {
// carga el subcontrolador para ejecutar la tarea mostrar
JLoader::register('ContentControllerAdjuntos', JPATH_ADMINISTRATOR . '/components/com_content/controllers/adjuntos.json.php');
$data = new ContentControllerAdjuntos;
$adjuntos = $data->mostrar($id);
return $adjuntos;
}
}