aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCash Costello <cash.costello@gmail.com>2012-07-14 15:50:06 -0400
committerCash Costello <cash.costello@gmail.com>2012-07-14 15:50:06 -0400
commitc7bd5fb64003c42f9299b7203af9a13bcd48948f (patch)
treed962c172af9395c734d345aa43d95561ea3ccf24
parent2d8b04169dda48a5dba8503d9943bdeee2c64685 (diff)
downloadelgg-c7bd5fb64003c42f9299b7203af9a13bcd48948f.tar.gz
elgg-c7bd5fb64003c42f9299b7203af9a13bcd48948f.tar.bz2
added quota back
-rw-r--r--classes/TidypicsImage.php6
-rw-r--r--languages/en.php5
-rw-r--r--lib/upload.php6
-rw-r--r--pages/photos/image/upload.php1
-rw-r--r--views/default/forms/photos/admin/settings.php14
-rw-r--r--views/default/forms/photos/admin/settings/main.php12
-rw-r--r--views/default/forms/photos/ajax_upload.php23
-rw-r--r--views/default/forms/photos/basic_upload.php27
-rw-r--r--views/default/photos/sidebar.php6
-rw-r--r--views/default/photos/sidebar/quota.php27
10 files changed, 63 insertions, 64 deletions
diff --git a/classes/TidypicsImage.php b/classes/TidypicsImage.php
index 672a0df20..5a8d42ccc 100644
--- a/classes/TidypicsImage.php
+++ b/classes/TidypicsImage.php
@@ -217,11 +217,15 @@ class TidypicsImage extends ElggFile {
}
$owner = $this->getOwnerEntity();
- $owner->image_repo_size = (int)$owner->image_repo_size + $size;
+ $owner->image_repo_size = (int)$owner->image_repo_size + $this->size();
return true;
}
+ /**
+ * Need to restore sanity to this function
+ * @param type $data
+ */
protected function checkUploadErrors($data) {
// check for upload errors
if ($data['error']) {
diff --git a/languages/en.php b/languages/en.php
index 0fe3996f1..007dc5785 100644
--- a/languages/en.php
+++ b/languages/en.php
@@ -71,7 +71,7 @@ $english = array(
'tidypics:settings:uploader' => "Use Flash uploader",
'tidypics:settings:grp_perm_override' => "Allow group members full access to group albums",
'tidypics:settings:maxfilesize' => "Maximum image size in megabytes (MB):",
- 'tidypics:settings:quota' => "User/Group Quota (MB) - 0 equals no quota",
+ 'tidypics:settings:quota' => "User Quota (MB) - 0 equals no quota",
'tidypics:settings:watermark' => "Enter text to appear in the watermark",
'tidypics:settings:im_path' => "Enter the path to your ImageMagick commands",
'tidypics:settings:img_river_view' => "How many entries in activity river for each batch of uploaded images",
@@ -153,12 +153,13 @@ $english = array(
'album:tags' => "Tags",
'album:cover' => "Make image album cover?",
'album:cover_link' => 'Set cover image',
+ 'tidypics:title:quota' => 'Quota',
'tidypics:quota' => "Quota usage:",
'tidypics:uploader:choose' => "Choose photos",
'tidypics:uploader:upload' => "Upload photos",
'tidypics:uploader:describe' => "Describe photos",
'tidypics:uploader:filedesc' => 'Image files (jpeg, png, gif)',
- 'tidypics:uploader:instructs' => 'There are three easy steps for adding photos to your album using this uploader: choosing, uploading, and describing them. If you do not have Flash, there is also a <a href="%s">basic uploader</a> available.',
+ 'tidypics:uploader:instructs' => 'There are three easy steps for adding photos to your album using this uploader: choosing, uploading, and describing them. There is a %s MB maximum per photo. If you do not have Flash, there is also a <a href="%s">basic uploader</a> available.',
'tidypics:uploader:basic' => 'You can upload up to 10 photos at a time (%s MB maximum per photo)',
'tidypics:sort:instruct' => 'Sort the album photos by dragging and dropping the images. Then click the save button.',
'tidypics:sort:no_images' => 'No images found to sort. Upload images using the link above.',
diff --git a/lib/upload.php b/lib/upload.php
index 0b034517c..a83323f16 100644
--- a/lib/upload.php
+++ b/lib/upload.php
@@ -111,9 +111,9 @@ function tp_upload_check_quota($image_size, $owner_guid) {
// no quota
return true;
}
-
- $image_repo_size_md = get_metadata_byname($owner_guid, "image_repo_size");
- $image_repo_size = (int)$image_repo_size_md->value;
+
+ $owner = get_entity($owner_guid);
+ $image_repo_size_md = (int)$owner->image_repo_size;
return ($image_repo_size + $image_size) < $quota;
} \ No newline at end of file
diff --git a/pages/photos/image/upload.php b/pages/photos/image/upload.php
index 3d3e67b58..425d5689a 100644
--- a/pages/photos/image/upload.php
+++ b/pages/photos/image/upload.php
@@ -52,6 +52,7 @@ $body = elgg_view_layout('content', array(
'content' => $content,
'title' => $title,
'filter' => '',
+ 'sidebar' => elgg_view('photos/sidebar', array('page' => 'upload')),
));
echo elgg_view_page($title, $body);
diff --git a/views/default/forms/photos/admin/settings.php b/views/default/forms/photos/admin/settings.php
index 7e9c17ac2..403203f69 100644
--- a/views/default/forms/photos/admin/settings.php
+++ b/views/default/forms/photos/admin/settings.php
@@ -2,7 +2,7 @@
/**
* Tidypics admin settings form body
*
- * @todo watermark, quota, remove original image, group only upload not delete
+ * @todo remove original image, group only upload not delete
*/
$plugin = elgg_get_plugin_from_id('tidypics');
@@ -24,15 +24,3 @@ $content = elgg_view('forms/photos/admin/settings/thumbnails', array('plugin' =>
echo elgg_view_module('inline', $title, $content);
echo elgg_view('input/submit', array('value' => elgg_echo("save")));
-
-return true;
-
-
-// Quota Size
-$quota = $plugin->quota;
-if (!$quota) {
- $quota = 0;
-}
-$form_body .= "<p>" . elgg_echo('tidypics:settings:quota') . "<br />";
-$form_body .= elgg_view("input/text",array('internalname' => 'params[quota]', 'value' => $quota)) . "</p>";
-
diff --git a/views/default/forms/photos/admin/settings/main.php b/views/default/forms/photos/admin/settings/main.php
index 352a9c5a1..c99b9d688 100644
--- a/views/default/forms/photos/admin/settings/main.php
+++ b/views/default/forms/photos/admin/settings/main.php
@@ -34,3 +34,15 @@ echo elgg_view("input/text", array(
'value' => $plugin->watermark_text,
));
echo '</div>';
+
+// Quota Size
+$quota = $plugin->quota;
+if (!$quota) {
+ $quota = 0;
+}
+echo '<div>' . elgg_echo('tidypics:settings:quota');
+echo elgg_view('input/text', array(
+ 'name' => 'params[quota]',
+ 'value' => $quota,
+));
+echo '</div>';
diff --git a/views/default/forms/photos/ajax_upload.php b/views/default/forms/photos/ajax_upload.php
index be25d628e..3ab578a38 100644
--- a/views/default/forms/photos/ajax_upload.php
+++ b/views/default/forms/photos/ajax_upload.php
@@ -17,26 +17,13 @@ if (!$maxfilesize) {
$maxfilesize = 5;
}
-$quota = elgg_get_plugin_setting('quota', 'tidypics');
-if ($quota) {
- $image_repo_size_md = get_metadata_byname($album->container_guid, "image_repo_size");
- $image_repo_size = (int)$image_repo_size_md->value;
- $image_repo_size = $image_repo_size / 1024 / 1024;
- $quote_percentage = round(100 * ($image_repo_size / $quota));
- // for small quotas, so one decimal place
- if ($quota < 10) {
- $image_repo_size = sprintf('%.1f', $image_repo_size);
- } else {
- $image_repo_size = round($image_repo_size);
- }
- if ($image_repo_size > $quota) {
- $image_repo_size = $quota;
- }
-}
-
?>
-<p><?php echo elgg_echo('tidypics:uploader:instructs', array($basic_uploader_url)); ?></p>
+<p>
+<?php
+ echo elgg_echo('tidypics:uploader:instructs', array($maxfilesize, $basic_uploader_url));
+?>
+</p>
<ul id="tidypics-uploader-steps">
<li class="mbm">
diff --git a/views/default/forms/photos/basic_upload.php b/views/default/forms/photos/basic_upload.php
index e4535814b..ba849d1b4 100644
--- a/views/default/forms/photos/basic_upload.php
+++ b/views/default/forms/photos/basic_upload.php
@@ -15,33 +15,6 @@ $album = $vars['entity'];
$access_id = $album->access_id;
$maxfilesize = (float) elgg_get_plugin_setting('maxfilesize', 'tidypics');
-$quota = elgg_get_plugin_setting('quota', 'tidypics');
-/*
-if ($quota) {
- $image_repo_size_md = get_metadata_byname($album->container_guid, "image_repo_size");
- $image_repo_size = (int)$image_repo_size_md->value;
- $image_repo_size = $image_repo_size / 1024 / 1024;
- $quote_percentage = round(100 * ($image_repo_size / $quota));
- // for small quotas, so one decimal place
- if ($quota < 10) {
- $image_repo_size = sprintf('%.1f', $image_repo_size);
- } else {
- $image_repo_size = round($image_repo_size);
- }
- if ($image_repo_size > $quota) {
- $image_repo_size = $quota;
- }
-}
- <?php
- if ($quota) {
- ?>
- <i><?php echo elgg_echo("tidypics:quota") . ' ' . $image_repo_size . '/' . $quota . " MB ({$quote_percentage}%)"; ?></i><br />
- <?php
- }
- ?>
-
- *
-*/
$instructions = elgg_echo("tidypics:uploader:upload");
$max = elgg_echo('tidypics:uploader:basic', array($maxfilesize));
diff --git a/views/default/photos/sidebar.php b/views/default/photos/sidebar.php
index 4c0feb72c..fd5202691 100644
--- a/views/default/photos/sidebar.php
+++ b/views/default/photos/sidebar.php
@@ -10,3 +10,9 @@ if ($image && $page == 'view') {
echo elgg_view('photos/sidebar/exif', $vars);
}
}
+
+if ($page == 'upload') {
+ if (elgg_get_plugin_setting('quota', 'tidypics')) {
+ echo elgg_view('photos/sidebar/quota', $vars);
+ }
+} \ No newline at end of file
diff --git a/views/default/photos/sidebar/quota.php b/views/default/photos/sidebar/quota.php
new file mode 100644
index 000000000..16b7885c4
--- /dev/null
+++ b/views/default/photos/sidebar/quota.php
@@ -0,0 +1,27 @@
+<?php
+/**
+ * User quota
+ */
+
+$user = elgg_get_logged_in_user_entity();
+
+
+$quota = elgg_get_plugin_setting('quota', 'tidypics');
+if ($quota) {
+ $image_repo_size = (int)$user->image_repo_size;
+ $image_repo_size = $image_repo_size / 1024 / 1024;
+ $quote_percentage = round(100 * ($image_repo_size / $quota));
+ // for small quotas, so one decimal place
+ if ($quota < 10) {
+ $image_repo_size = sprintf('%.1f', $image_repo_size);
+ } else {
+ $image_repo_size = round($image_repo_size);
+ }
+ if ($image_repo_size > $quota) {
+ $image_repo_size = $quota;
+ }
+
+ $title = elgg_echo('tidypics:title:quota');
+ $body = elgg_echo("tidypics:quota") . ' ' . $image_repo_size . '/' . $quota . " MB ({$quote_percentage}%)";
+ echo elgg_view_module('aside', $title, $body);
+}