Can now edit/change application icon

This commit is contained in:
Zach Copley 2010-01-13 01:22:37 +00:00
parent 7694955cd6
commit adfca01808
3 changed files with 126 additions and 132 deletions

View File

@ -183,15 +183,12 @@ class EditApplicationAction extends OwnerDesignAction
_('Description is too long (max %d chars).'), _('Description is too long (max %d chars).'),
Oauth_application::maxDescription())); Oauth_application::maxDescription()));
return; return;
} elseif (empty($source_url)) { } elseif (mb_strlen($source_url) > 255) {
$this->showForm(_('Source URL is required.')); $this->showForm(_('Source URL is too long.'));
return; return;
} elseif ((strlen($source_url) > 0) } elseif ((mb_strlen($source_url) > 0)
&& !Validate::uri( && !Validate::uri($source_url,
$source_url, array('allowed_schemes' => array('http', 'https'))))
array('allowed_schemes' => array('http', 'https'))
)
)
{ {
$this->showForm(_('Source URL is not valid.')); $this->showForm(_('Source URL is not valid.'));
return; return;
@ -204,24 +201,19 @@ class EditApplicationAction extends OwnerDesignAction
} elseif (empty($homepage)) { } elseif (empty($homepage)) {
$this->showForm(_('Organization homepage is required.')); $this->showForm(_('Organization homepage is required.'));
return; return;
} elseif ((strlen($homepage) > 0) } elseif ((mb_strlen($homepage) > 0)
&& !Validate::uri( && !Validate::uri($homepage,
$homepage, array('allowed_schemes' => array('http', 'https'))))
array('allowed_schemes' => array('http', 'https'))
)
)
{ {
$this->showForm(_('Homepage is not a valid URL.')); $this->showForm(_('Homepage is not a valid URL.'));
return; return;
} elseif (empty($callback_url)) { } elseif (mb_strlen($callback_url) > 255) {
$this->showForm(_('Callback is required.')); $this->showForm(_('Callback is too long.'));
return; return;
} elseif (strlen($callback_url) > 0 } elseif (mb_strlen($callback_url) > 0
&& !Validate::uri( && !Validate::uri($source_url,
$source_url,
array('allowed_schemes' => array('http', 'https')) array('allowed_schemes' => array('http', 'https'))
) ))
)
{ {
$this->showForm(_('Callback URL is not valid.')); $this->showForm(_('Callback URL is not valid.'));
return; return;
@ -244,8 +236,6 @@ class EditApplicationAction extends OwnerDesignAction
$this->app->callback_url = $callback_url; $this->app->callback_url = $callback_url;
$this->app->type = $type; $this->app->type = $type;
$result = $this->app->update($orig);
common_debug("access_type = $access_type"); common_debug("access_type = $access_type");
if ($access_type == 'r') { if ($access_type == 'r') {
@ -254,11 +244,15 @@ class EditApplicationAction extends OwnerDesignAction
$this->app->access_type = 3; $this->app->access_type = 3;
} }
$result = $this->app->update($orig);
if (!$result) { if (!$result) {
common_log_db_error($this->app, 'UPDATE', __FILE__); common_log_db_error($this->app, 'UPDATE', __FILE__);
$this->serverError(_('Could not update application.')); $this->serverError(_('Could not update application.'));
} }
$this->app->uploadLogo();
common_redirect(common_local_url('apps', common_redirect(common_local_url('apps',
array('nickname' => $cur->nickname)), 303); array('nickname' => $cur->nickname)), 303);
} }

View File

@ -200,8 +200,8 @@ class NewApplicationAction extends OwnerDesignAction
{ {
$this->showForm(_('Homepage is not a valid URL.')); $this->showForm(_('Homepage is not a valid URL.'));
return; return;
} elseif (empty($callback_url)) { } elseif (mb_strlen($callback_url) > 255) {
$this->showForm(_('Callback is required.')); $this->showForm(_('Callback is too long.'));
return; return;
} elseif (strlen($callback_url) > 0 } elseif (strlen($callback_url) > 0
&& !Validate::uri( && !Validate::uri(
@ -266,7 +266,7 @@ class NewApplicationAction extends OwnerDesignAction
$app->query('ROLLBACK'); $app->query('ROLLBACK');
} }
$this->uploadLogo($app); $this->app->uploadLogo();
$app->query('COMMIT'); $app->query('COMMIT');
@ -275,40 +275,5 @@ class NewApplicationAction extends OwnerDesignAction
} }
/**
* Handle an image upload
*
* Does all the magic for handling an image upload, and crops the
* image by default.
*
* @return void
*/
function uploadLogo($app)
{
if ($_FILES['app_icon']['error'] ==
UPLOAD_ERR_OK) {
try {
$imagefile = ImageFile::fromUpload('app_icon');
} catch (Exception $e) {
common_debug("damn that sucks");
$this->showForm($e->getMessage());
return;
}
$filename = Avatar::filename($app->id,
image_type_to_extension($imagefile->type),
null,
'oauth-app-icon-'.common_timestamp());
$filepath = Avatar::path($filename);
move_uploaded_file($imagefile->filepath, $filepath);
$app->setOriginal($filename);
}
}
} }

View File

@ -102,4 +102,39 @@ class Oauth_application extends Memcached_DataObject
return empty($result) ? null : $app; return empty($result) ? null : $app;
} }
/**
* Handle an image upload
*
* Does all the magic for handling an image upload, and crops the
* image by default.
*
* @return void
*/
function uploadLogo()
{
if ($_FILES['app_icon']['error'] ==
UPLOAD_ERR_OK) {
try {
$imagefile = ImageFile::fromUpload('app_icon');
} catch (Exception $e) {
common_debug("damn that sucks");
$this->showForm($e->getMessage());
return;
}
$filename = Avatar::filename($this->id,
image_type_to_extension($imagefile->type),
null,
'oauth-app-icon-'.common_timestamp());
$filepath = Avatar::path($filename);
move_uploaded_file($imagefile->filepath, $filepath);
$this->setOriginal($filename);
}
}
} }