2011-06-03 21:10:56 +04:00
/* -------------------------------------------------------------------------- */
2012-01-12 15:29:18 +04:00
/* Copyright 2002-2012, OpenNebula Project Leads (OpenNebula.org) */
2011-06-03 21:10:56 +04:00
/* */
/* Licensed under the Apache License, Version 2.0 (the "License"); you may */
/* not use this file except in compliance with the License. You may obtain */
/* a copy of the License at */
/* */
/* http://www.apache.org/licenses/LICENSE-2.0 */
/* */
/* Unless required by applicable law or agreed to in writing, software */
/* distributed under the License is distributed on an "AS IS" BASIS, */
/* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. */
/* See the License for the specific language governing permissions and */
/* limitations under the License. */
/* -------------------------------------------------------------------------- */
# ifndef REQUEST_MANAGER_CHOWN_H_
# define REQUEST_MANAGER_CHOWN_H_
# include "Request.h"
# include "Nebula.h"
using namespace std ;
/* ------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------- */
class RequestManagerChown : public Request
{
protected :
RequestManagerChown ( const string & method_name ,
2011-06-09 14:29:38 +04:00
const string & help ,
const string & params = " A:siii " )
: Request ( method_name , params , help )
2011-06-03 21:10:56 +04:00
{
2012-01-04 01:59:40 +04:00
auth_op = AuthRequest : : MANAGE ;
2011-09-21 18:13:04 +04:00
Nebula & nd = Nebula : : instance ( ) ;
gpool = nd . get_gpool ( ) ;
upool = nd . get_upool ( ) ;
2011-06-03 21:10:56 +04:00
} ;
~ RequestManagerChown ( ) { } ;
/* -------------------------------------------------------------------- */
2011-09-21 18:13:04 +04:00
GroupPool * gpool ;
UserPool * upool ;
/* -------------------------------------------------------------------- */
2011-07-07 14:45:13 +04:00
virtual void request_execute ( xmlrpc_c : : paramList const & _paramList ,
RequestAttributes & att ) ;
2011-06-03 21:10:56 +04:00
} ;
/* ------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------- */
class VirtualMachineChown : public RequestManagerChown
{
public :
VirtualMachineChown ( ) :
RequestManagerChown ( " VirtualMachineChown " ,
" Changes ownership of a virtual machine " )
{
Nebula & nd = Nebula : : instance ( ) ;
pool = nd . get_vmpool ( ) ;
2012-01-03 05:58:23 +04:00
auth_object = PoolObjectSQL : : VM ;
2011-06-03 21:10:56 +04:00
} ;
~ VirtualMachineChown ( ) { } ;
} ;
/* ------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------- */
class TemplateChown : public RequestManagerChown
{
public :
TemplateChown ( ) :
RequestManagerChown ( " TemplateChown " ,
" Changes ownership of a virtual machine template " )
{
Nebula & nd = Nebula : : instance ( ) ;
pool = nd . get_tpool ( ) ;
2012-01-03 05:58:23 +04:00
auth_object = PoolObjectSQL : : TEMPLATE ;
2011-06-03 21:10:56 +04:00
} ;
~ TemplateChown ( ) { } ;
} ;
/* ------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------- */
class VirtualNetworkChown : public RequestManagerChown
{
public :
VirtualNetworkChown ( ) :
RequestManagerChown ( " VirtualNetworkChown " ,
" Changes ownership of a virtual network " )
{
Nebula & nd = Nebula : : instance ( ) ;
pool = nd . get_vnpool ( ) ;
2012-01-03 05:58:23 +04:00
auth_object = PoolObjectSQL : : NET ;
2011-06-03 21:10:56 +04:00
} ;
~ VirtualNetworkChown ( ) { } ;
} ;
/* ------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------- */
class ImageChown : public RequestManagerChown
{
public :
ImageChown ( ) :
RequestManagerChown ( " ImageChown " ,
" Changes ownership of an image " )
{
Nebula & nd = Nebula : : instance ( ) ;
pool = nd . get_ipool ( ) ;
2012-01-03 05:58:23 +04:00
auth_object = PoolObjectSQL : : IMAGE ;
2011-06-03 21:10:56 +04:00
} ;
~ ImageChown ( ) { } ;
} ;
/* ------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------- */
2011-06-07 18:55:23 +04:00
class UserChown : public RequestManagerChown
{
public :
UserChown ( ) :
RequestManagerChown ( " UserChown " ,
2011-06-09 14:29:38 +04:00
" Changes ownership of a user " ,
" A:sii " )
2011-06-07 18:55:23 +04:00
{
Nebula & nd = Nebula : : instance ( ) ;
pool = nd . get_upool ( ) ;
2012-01-03 05:58:23 +04:00
auth_object = PoolObjectSQL : : USER ;
2011-06-07 18:55:23 +04:00
} ;
~ UserChown ( ) { } ;
/* -------------------------------------------------------------------- */
2011-07-07 14:45:13 +04:00
virtual void request_execute ( xmlrpc_c : : paramList const & _paramList ,
RequestAttributes & att ) ;
2011-06-07 18:55:23 +04:00
} ;
2012-03-02 19:11:50 +04:00
/* ------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------- */
class DatastoreChown : public RequestManagerChown
{
public :
DatastoreChown ( ) :
RequestManagerChown ( " Datastore " ,
" Changes ownership of a datastore " )
{
Nebula & nd = Nebula : : instance ( ) ;
pool = nd . get_dspool ( ) ;
auth_object = PoolObjectSQL : : DATASTORE ;
} ;
~ DatastoreChown ( ) { } ;
} ;
2011-06-03 21:10:56 +04:00
/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
# endif