Skip to content
Snippets Groups Projects
Commit 74e105b3 authored by noackorama's avatar noackorama
Browse files

re #73 , show last upload date

parent 930f8458
No related branches found
No related tags found
No related merge requests found
...@@ -25,6 +25,7 @@ class MarketRelease extends SimpleORMap { ...@@ -25,6 +25,7 @@ class MarketRelease extends SimpleORMap {
'on_delete' => 'delete', 'on_delete' => 'delete',
'on_store' => 'store', 'on_store' => 'store',
); );
$config['additional_fields']['last_upload_time']['get'] = 'getFileMTime';
parent::configure($config); parent::configure($config);
} }
...@@ -101,16 +102,21 @@ class MarketRelease extends SimpleORMap { ...@@ -101,16 +102,21 @@ class MarketRelease extends SimpleORMap {
public function getContentLength() public function getContentLength()
{ {
return filesize($this->getFilePath()); return @filesize($this->getFilePath());
}
public function getFileMtime()
{
return @filemtime($this->getFilePath());
} }
public function getContent() public function getContent()
{ {
return file_get_contents($this->getFilePath()); return @file_get_contents($this->getFilePath());
} }
public function getChecksum() { public function getChecksum() {
return md5_file($this->getFilePath()); return @md5_file($this->getFilePath());
} }
public function getSecurityHash() { public function getSecurityHash() {
......
...@@ -182,11 +182,9 @@ class MypluginsController extends MarketController ...@@ -182,11 +182,9 @@ class MypluginsController extends MarketController
} }
if (!Request::get("use_secret")) { if (!Request::get("use_secret")) {
$this->release['repository_secret'] = null; $this->release['repository_secret'] = null;
$this->release['chdate'] = time();
} elseif(!$this->release['repository_secret']) { } elseif(!$this->release['repository_secret']) {
$this->release['repository_secret'] = md5(uniqid()); $this->release['repository_secret'] = md5(uniqid());
} }
$this->release->installFile(); $this->release->installFile();
$this->release->store(); $this->release->store();
......
...@@ -40,7 +40,7 @@ ...@@ -40,7 +40,7 @@
<input type="text" name="release[repository_download_url]" value="<?= htmlReady($release['repository_download_url']) ?>"> <input type="text" name="release[repository_download_url]" value="<?= htmlReady($release['repository_download_url']) ?>">
</label> </label>
<label> <label>
<input type="checkbox" name="use_secret"<? $release->isNew() || $release['repository_secret'] ? " checked" : "" ?> value="1"> <input type="checkbox" name="use_secret" <?= $release->isNew() || $release['repository_secret'] ? " checked" : "" ?> value="1">
<?= _("Automatisches Update absichern ber Sicherheitstoken (optional)") ?> <?= _("Automatisches Update absichern ber Sicherheitstoken (optional)") ?>
</label> </label>
<p class="info"> <p class="info">
......
...@@ -134,7 +134,7 @@ if ($image) { ...@@ -134,7 +134,7 @@ if ($image) {
</td> </td>
<td><?= $release['studip_min_version'] ? htmlReady($release['studip_min_version']) : " - " ?></td> <td><?= $release['studip_min_version'] ? htmlReady($release['studip_min_version']) : " - " ?></td>
<td><?= $release['studip_max_version'] ? htmlReady($release['studip_max_version']) : " - " ?></td> <td><?= $release['studip_max_version'] ? htmlReady($release['studip_max_version']) : " - " ?></td>
<td><?= strftime("%x", $release['mkdate']) ?></td> <td><?= strftime("%x %R", $release['last_upload_time']) ?></td>
<td><?= htmlReady($release->getChecksum()) ?></td> <td><?= htmlReady($release->getChecksum()) ?></td>
<td><?= htmlReady($release['downloads']) ?></td> <td><?= htmlReady($release['downloads']) ?></td>
<td class="actions"> <td class="actions">
......
...@@ -32,8 +32,8 @@ ...@@ -32,8 +32,8 @@
<td> <td>
<?= htmlReady($marketplugin->uses->count()) ?> <?= htmlReady($marketplugin->uses->count()) ?>
</td> </td>
<td data-sorter="<?= $marketplugin->releases->orderBy('chdate DESC')->val('mkdate') ?>"> <td data-sorter="<?= $marketplugin->releases->orderBy('last_upload_time DESC')->val('last_upload_time') ?>">
<?= strftime('%x', $marketplugin->releases->orderBy('chdate DESC')->val('mkdate')) ?> <?= strftime('%x', $marketplugin->releases->orderBy('last_upload_time DESC')->val('last_upload_time')) ?>
</td> </td>
<td> <td>
<?= htmlReady($marketplugin->getDownloads()) ?> <?= htmlReady($marketplugin->getDownloads()) ?>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment