man Bric::SOAP::MediaType () - SOAP interface to Bricolage media types
NAME
Bric::SOAP::MediaType - SOAP interface to Bricolage media types
VERSION
$LastChangedRevision$
DATE
$LastChangedDate: 2004-08-12 17:13:34 -0700 (Thu, 12 Aug 2004) $
SYNOPSIS
use SOAP::Lite; import SOAP::Data 'name';
# setup soap object to login with my $soap = new SOAP::Lite uri => 'http://bricolage.sourceforge.net/Bric/SOAP/Auth', readable => DEBUG; $soap->proxy('http://localhost/soap', cookie_jar => HTTP::Cookies->new(ignore_discard => 1)); # login $soap->login(name(username => USER), name(password => PASSWORD));
# set uri for MediaType module $soap->uri('http://bricolage.sourceforge.net/Bric/SOAP/MediaType');
# get a list of all media types my $mt_ids = $soap->list_ids()->result;
DESCRIPTION
This module provides a SOAP interface to manipulating Bricolage media types.
INTERFACE
Public Class Methods
- list_ids
- This method queries the database for matching mediatypes and returns a list of ids. If no mediatypes are found an empty list will be returned. This method can accept the following named parameters to specify the search. Some fields support matching and are marked with an (M). The value for these fields will be interpreted as an SQL match expression and will be matched case-insensitively. Other fields must specify an exact string to match. Match fields combine to narrow the search results (via ANDs in an SQL WHERE clause).
- name (M)
- The media type's name.
- description (M)
- The media type's description.
- ext
- The media type's extension.
- active
- Set false to return deleted media types. Throws:
- Exception::AP
- Side Effects: NONE Notes: NONE
- export
- The export method retrieves a set of assets from the database, serializes them and returns them as a single XML document. See Bric::SOAP for the schema of the returned document. Accepted paramters are:
- media_type_id
- Specifies a single media_type_id to be retrieved.
- media_type_ids
- Specifies a list of media_type_ids. The value for this option should be an array of integer media_type_id assets. Throws:
- Exception::AP
- Side Effects: NONE Notes: NONE
- create
- The create method creates new objects using the data contained in an XML document of the format created by export(). Returns a list of new ids created in the order of the assets in the document. Available options:
- document (required)
- The XML document containing objects to be created. The document must contain at least one asset object. Throws:
- Exception::AP
- Side Effects: NONE Notes: NONE
- update
- The update method updates an asset using the data in an XML document of the format created by export(). A common use of update() is to export() a selected object, make changes to one or more fields and then submit the changes with update(). Returns a list of new ids created in the order of the assets in the document. Takes the following options:
- document (required)
- The XML document where the objects to be updated can be found. The document must contain at least one asset and may contain any number of related asset objects.
- update_ids (required)
- A list of media_type_id integers for the assets to be updated. These must match id attributes on asset elements in the document. If you include objects in the document that are not listed in update_ids then they will be treated as in create(). For that reason an update() with an empty update_ids list is equivalent to a create(). Throws:
- Exception::AP
- Side Effects: NONE Notes: NONE
- delete
- The delete() method deletes assets. It takes the following options:
- media_type_id
- Specifies a single asset ID to be deleted.
- media_type_ids
- Specifies a list of asset IDs to delete. Throws:
- Exception::AP
- Side Effects: NONE Notes: NONE
- $self->module
- Returns the module name, that is the first argument passed to bric_soap.
- is_allowed_param
- Returns true if CW$param is an allowed parameter to the CW$method method.
Private Class Methods
- $pkg->load_asset($args)
- This method provides the meat of both create() and update(). The only difference between the two methods is that update_ids will be empty on create(). Serializes a single mediatype object into a <mediatype> mediatype using the given writer and args.
AUTHOR
Sam Tregar <stregar@about-inc.com>
Scott Lanning <slanning@theworld.com>
SEE ALSO
Bric::SOAP, Bric::SOAP::Asset