package EnsEMBL::Web::Command::Account::Interface::AnnotationSave;
use strict;
use warnings;
use Class::Std;
use EnsEMBL::Web::RegObj;
use base 'EnsEMBL::Web::Command';
{
sub process {
my $self = shift;
my $object = $self->object;
my $interface = $object->interface;
$interface->cgi_populate($object);
## Add user ID to new entries in the user/group_record tables
if (!$object->param('id') && ref($interface->data) =~ /Record/) {
my $user = $EnsEMBL::Web::RegObj::ENSEMBL_WEB_REGISTRY->get_user;
$interface->data->user_id($user->id);
}
$interface->data->save;
## We need to close down the popup window if using AJAX and refresh the page!
my $r = Apache2::RequestUtil->request();
my $ajax_flag = $r && (
$r->headers_in->{'X-Requested-With'} eq 'XMLHttpRequest'||
$object->param('x_requested_with') eq 'XMLHttpRequest'
);
#warn "@@@ AJAX $ajax_flag";
if( $ajax_flag ) {
CGI::header( 'text/plain' );
print "SUCCESS";
} else {
my $data = $interface->data;
my $var = lc(substr($data->type, 0, 1));
my $url = '/'.$data->species.'/'.$data->type.'/UserAnnotation';
my $param = {$var => $data->stable_id};
$object->redirect($self->url($url, $param));
}
}
}
1;