SubscriptionSynchronization.py 5.91 KB
Newer Older
1
# -*- coding: utf-8 -*-
Jean-Paul Smets's avatar
Jean-Paul Smets committed
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
##############################################################################
#
# Copyright (c) 2003 Nexedi SARL and Contributors. All Rights Reserved.
#          Sebastien Robin <seb@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.
#
##############################################################################

import smtplib # to send emails
31 32
from Subscription import Subscription
from Signature import Signature
33
from XMLSyncUtils import XMLSyncUtils
Jean-Paul Smets's avatar
Jean-Paul Smets committed
34 35
import commands
from Conduit.ERP5Conduit import ERP5Conduit
36
from AccessControl import getSecurityManager
37
from DateTime import DateTime
38
from zLOG import LOG, DEBUG, INFO
Nicolas Delaby's avatar
Nicolas Delaby committed
39
from lxml import etree
40 41 42 43
from lxml.builder import ElementMaker
from SyncCode import SYNCML_NAMESPACE
nsmap = {'syncml' : SYNCML_NAMESPACE}
E = ElementMaker(namespace=SYNCML_NAMESPACE, nsmap=nsmap)
Jean-Paul Smets's avatar
Jean-Paul Smets committed
44 45 46 47 48 49 50

class SubscriptionSynchronization(XMLSyncUtils):

  def SubSyncInit(self, subscription):
    """
      Send the first XML message from the client
    """
Nicolas Delaby's avatar
Nicolas Delaby committed
51
    #LOG('SubSyncInit',0,'starting....')
Jean-Paul Smets's avatar
Jean-Paul Smets committed
52
    cmd_id = 1 # specifies a SyncML message-unique command identifier
53 54
    subscription.NewAnchor()
    subscription.initLastMessageId()
Fabien Morin's avatar
Fabien Morin committed
55 56

    #save the actual user to use it in all the session:
57
    user = getSecurityManager().getUser()
Fabien Morin's avatar
Fabien Morin committed
58 59 60
    subscription.setZopeUser(user)
    subscription.setAuthenticated(True)

61 62
    #create element 'SyncML'
    xml = E.SyncML()
Jean-Paul Smets's avatar
Jean-Paul Smets committed
63
    # syncml header
Nicolas Delaby's avatar
Nicolas Delaby committed
64
    xml.append(self.SyncMLHeader(subscription.incrementSessionId(),
65
      subscription.incrementMessageId(), subscription.getPublicationUrl(),
66
      subscription.getSubscriptionUrl(), source_name=subscription.getLogin()))
Jean-Paul Smets's avatar
Jean-Paul Smets committed
67 68

    # syncml body
69 70
    sync_body = E.SyncBody()
    xml.append(sync_body)
Jean-Paul Smets's avatar
Jean-Paul Smets committed
71 72 73 74
    # We have to set every object as NOT_SYNCHRONIZED
    subscription.startSynchronization()

    # alert message
Nicolas Delaby's avatar
Nicolas Delaby committed
75
    sync_body.append(self.SyncMLAlert(cmd_id, subscription.getSynchronizationType(),
76 77
                            subscription.getTargetURI(),
                            subscription.getSourceURI(),
78
                            subscription.getLastAnchor(),
Sebastien Robin's avatar
Sebastien Robin committed
79
                            subscription.getNextAnchor()))
Jean-Paul Smets's avatar
Jean-Paul Smets committed
80
    cmd_id += 1
81
    syncml_put = self.SyncMLPut(cmd_id, subscription)
Nicolas Delaby's avatar
Nicolas Delaby committed
82 83
    if syncml_put is not None:
      sync_body.append(syncml_put)
84
      cmd_id += 1
Jean-Paul Smets's avatar
Jean-Paul Smets committed
85

Nicolas Delaby's avatar
Nicolas Delaby committed
86 87
    xml_string = etree.tostring(xml, encoding='utf-8', xml_declaration=True,
                                pretty_print=True)
Sebastien Robin's avatar
Sebastien Robin committed
88
    self.sendResponse(from_url=subscription.subscription_url,
Nicolas Delaby's avatar
Nicolas Delaby committed
89 90 91 92
                      to_url=subscription.publication_url,
                      sync_id=subscription.getTitle(),
                      xml=xml_string, domain=subscription,
                      content_type=subscription.getSyncContentType())
93

Nicolas Delaby's avatar
Nicolas Delaby committed
94
    return {'has_response':1, 'xml':xml_string}
Jean-Paul Smets's avatar
Jean-Paul Smets committed
95

96
  def SubSyncCred (self, subscription, msg=None, RESPONSE=None):
97 98 99 100
    """
      This method send crendentials
    """
    cmd_id = 1 # specifies a SyncML message-unique command identifier
101
    #create element 'SyncML' with a default namespace
102
    xml = E.SyncML()
103 104
    # syncml header
    data = "%s:%s" % (subscription.getLogin(), subscription.getPassword())
Nicolas Delaby's avatar
Nicolas Delaby committed
105 106
    data = subscription.encode(subscription.getAuthenticationFormat(), data)
    xml.append(self.SyncMLHeader(
107
      subscription.incrementSessionId(),
108
      subscription.incrementMessageId(),
109
      subscription.getPublicationUrl(),
110 111
      subscription.getSubscriptionUrl(),
      source_name=subscription.getLogin(),
112
      dataCred=data,
113
      authentication_format=subscription.getAuthenticationFormat(),
114 115 116
      authentication_type=subscription.getAuthenticationType()))

    # syncml body
117 118
    sync_body = E.SyncBody()
    xml.append(sync_body)
119

120 121 122
    # We have to set every object as NOT_SYNCHRONIZED
    subscription.startSynchronization()

123
    # alert message
Nicolas Delaby's avatar
Nicolas Delaby committed
124
    sync_body.append(self.SyncMLAlert(cmd_id, subscription.getSynchronizationType(),
125 126
                            subscription.getTargetURI(),
                            subscription.getSourceURI(),
127 128 129
                            subscription.getLastAnchor(),
                            subscription.getNextAnchor()))
    cmd_id += 1
Nicolas Delaby's avatar
Nicolas Delaby committed
130 131 132
    syncml_put = self.SyncMLPut(cmd_id, subscription)
    if syncml_put is not None:
      sync_body.append(syncml_put)
133
    cmd_id += 1
134
    sync_body.append(E.Final())
Nicolas Delaby's avatar
Nicolas Delaby committed
135 136
    xml_string = etree.tostring(xml, encoding='utf-8', xml_declaration=True,
                                pretty_print=True)
137
    self.sendResponse(from_url=subscription.subscription_url,
Nicolas Delaby's avatar
Nicolas Delaby committed
138 139 140 141
                      to_url=subscription.publication_url,
                      sync_id=subscription.getTitle(),
                      xml=xml_string, domain=subscription,
                      content_type=subscription.getSyncContentType())
142

Nicolas Delaby's avatar
Nicolas Delaby committed
143
    return {'has_response':1, 'xml':xml_string}
144

Jean-Paul Smets's avatar
Jean-Paul Smets committed
145 146 147 148 149
  def SubSyncModif(self, subscription, xml_client):
    """
      Send the client modification, this happens after the Synchronization
      initialization
    """
150
    return self.SyncModif(subscription, xml_client)
Jean-Paul Smets's avatar
Jean-Paul Smets committed
151 152 153