man Bric::Util::FTP::FileHandle () - Virtual FTP Server FileHandle

NAME

Bric::Util::FTP::FileHandle - Virtual FTP Server FileHandle

VERSION

$LastChangedRevision$

DATE

$LastChangedDate: 2005-03-10 23:36:51 -0800 (Thu, 10 Mar 2005) $

DESCRIPTION

This module provides a file handle object for use by Bric::Util::FTP::Server.

INTERFACE

This module inherits from Net::FTPServer::FileHandle and overrides the required methods. This class is used internally by Bric::Util::FTP::Server.

Constructors

Creates a new Bric::Util::FTP::FileHandle object. Requires three arguments: the Bric::Util::FTP::Server object, the Bric::Biz::Asset::Formatting object that this filehandle represents (aka the template object), and the category_id for the category that thetemplate is in.

Public Instance Methods

open($mode)
This method opens this template object for access using the provided mode ('r', 'w' or 'a'). The method returns an IO::Scalar object that will be used by Net::FTPServer to access the template text. For read-only access a plain IO::Scalar object is returned. For write-methods an instance of an internal subclass of IO::ScalarBric::Util::FTP::FileHandle::IOis used to provide write access to the data in the database. Returns CWundef on failure.
dir()
Returns the directory handle for the category that this template is in. Calls Bric::Util::FTP::DirHandle->new().
status()
This method returns information about the object. The return value is a list with seven elements - ($mode, CW$perms, CW$nlink, CW$user, CW$group, CW$size, CW$time). To quote the good book (Net::FTPServer::Handle):
          $mode     Mode        'd' = directory,
                                'f' = file,
                                and others as with
                                the find(1) -type option.
          $perms    Permissions Permissions in normal octal numeric format.
          $nlink    Link count
          $user     Username    In printable format.
          $group    Group name  In printable format.
          $size     Size        File size in bytes.
          $time     Time        Time (usually mtime) in Unix time_t format.
$mode is always 'f'. CW$perms is set depending on wether the template is checked out and whether the user has access to edit the template. CW$nlink is always 1. CW$user is set to the user that has the template checked out or nobody for checked in templates. CW$group is co if the template is checked out, ci if it's checked in. CW$size is the size of the template text in bytes. CW$time is set to the deploy_time() of the template.
move()
Deploys the template if the new name is the same as the template name followed by '.deploy'. Otherwise it's a no-op.
delete()
Deletes the current template. This has the same effect as deleting the template through the UI - it undeploys the template if it's deployed and marks it inactive.
can_*()
Returns permissions information for various activites. can_read() always returns 1 since templates can always be read. can_rename() and can_delete() return 0 since these operations are not yet supported. can_write() and can_append() return 1 if the user can write to the template - if it's checked in and the user has permission.

PRIVATE

Private Classes

Bric::Util::FTP::FileHandle::IO
This class subclasses IO::Scalar to encapsulate the interface to a template object's data. The CWnew() constructor takes a scalar variable as a first argument, followed by a parameter list. The supported parameters are:
template
user
deploy
ftps
An instance of the Bric::Util::FTP::Server class.
ftpfh
An instance of the Bric::Util::FTP::FileHandle class. Bric::Util::FTP::FileHandle::IO objects track when data has been written to the underlying scalar, and, if so, write the data to the underlying template object when the file handle is closed. It also properly handles deploying the template to the user's sandbox, and deploying the template to production if the name of the file ends in .deploy.

AUTHOR

Sam Tregar <stregar@about-inc.com>

David Wheeler <david@kineticode.com>

SEE ALSO

<Net:FTPServer::FileHandle|Net:FTPServer::FileHandle>

Bric::Util::FTP::Server

Bric::Util::FTP::DirHandle