# -*- coding: utf-8 -*-
##############################################################################
#
# Copyright (c) 2009 Nexedi SA and Contributors. All Rights Reserved.
#                    Jean-Paul Smets-Solanes <jp@nexedi.com>
#
# WARNING: This program as such is intended to be used by professional
# programmers who take the whole responsability of assessing all potential
# consequences resulting from its eventual inadequacies and bugs
# End users who are looking for a ready-to-use solution with commercial
# garantees and support are strongly adviced to contract a Free Software
# Service Company
#
# This program is Free Software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
#
##############################################################################

from zope.interface import Interface
MAX_REPEAT = 0 # XXX - this variable should be put somewhere else

class IUploadable(Interface):
  """
  Uploadable interface specification

  Documents which implement IUploadable can be updated
  by uploading a file using multiple formats. IUploadable
  provides methods to list possible source formats which
  can be uploaded into a document.
  """

  def isSourceFormatAllowed(format):
    """
    Checks if a file with the specified format
    can be uploaded into the current document.

    format -- the source conversion format specified either as an
              extension (ex. 'png') or as a mime type
              string (ex. 'text/plain')
    """

  def isSourceFormatPermitted(format):
    """
    Checks if the current user can upload into the current
    document a file with the specified source format.
    This method can be used to restrict the list of possible
    formats which can be uploaded into a document to a certain group of 
    users (ex. users which are known to use
    OpenOffice in a company are only allowed to upload ODT files, 
    as a way to prevent the use of illegal copies of other applications).

    format -- the source conversion format specified either as an
              extension (ex. 'png') or as a mime type
              string (ex. 'text/plain')
    """

  def getSourceFormatItemList():
    """
    Returns the list of acceptable formats for upload
    in the form of tuples which can be used for example for
    listfield in ERP5Form. Each tuple in the list has the form
    (title, format) where format is an extension (ex. 'png')
    which can be passed to IConvertable.convert or to 
    IDownloadable.index_html and title is a string which 
    can be translated and displayed to the user.
 
    Example of result:    
        [('ODF Drawing', 'odg'), ('ODF Drawing Template', 'otg'), 
        ('OpenOffice.org 1.0 Drawing', 'sxd')]
    """

  def getSourceFormatTitleList():
    """
    Returns the list of titles of acceptable formats for upload 
    as a list of strings which can be translated and displayed 
    to the user.
    """

  def getSourceFormatList():
    """
    Returns the list of acceptable formats for upload
    where format is an extension (ex. 'png') which can be 
    passed to IConvertable.convert or to IDownloadable.index_html
    """

  def updateContentFromURL(url=None, repeat=MAX_REPEAT, crawling_depth=0):
    """
    Download and update content of this document from the specified URL.
    If no url is specified, Document which support the IUrlGetter
    interface use the Url of the document itself. 

    url -- optional URL to download the updated content from.
           required whenever document does not implement IUrlGetter

    repeat -- optional max number of retries for download

    crawling_depth -- optional crawling depth for documents which 
                      implement ICrawlable

    NOTE: implementation is normally delegated to ContributionTool.

    XXX - it is unclear whether MAX_REPEAT should be part of signature
    """