## Script (Python) "pay_interswitch_acco"
##bind container=container
##bind context=context
##bind namespace=
##bind script=script
##bind subpath=traverse_subpath
##parameters=paytype=None
##title=
##
# $Id: pay_interswitch_acco.py 5795 2011-03-05 12:34:09Z henrik $
"""
pay online
"""
try:
    from Products.zdb import set_trace
except:
    def set_trace():
        pass
from urllib import urlencode
import logging
logger = logging.getLogger('Skins.pay_interswitch_acco')
import DateTime

if context.portal_membership.isAnonymousUser():
    return None

request = context.REQUEST
wftool = context.portal_workflow
students = context.portal_url.getPortalObject().campus.students

student_id = context.getStudentId()
if student_id is None:
    return context.REQUEST.RESPONSE.redirect("%s/srp_anonymous_view" % context.portal_url())
student = getattr(students,student_id)

student_record = context.students_catalog.getRecordByKey(student_id)
#amount,description = context.getSchoolFee(student_record.faculty,student_record.session,student_record.course)
now = DateTime.DateTime()
timestamp = "%d" % int(now.timeTime()*1000)
payment_id = "p%s" % timestamp
order_id = "%s%s" % (student_id[1:],timestamp)
hostel = paytype in ('HOM','HOMH',)
if hostel:
    info = context.getInterswitchParams(paytype,student,payment_id,order_id,student_record)
    info['student'] = student_record
else:
    return None

info['pay_bill_to'] = student_record.name
info['student_id'] = student_id
info['student_name'] = student_record.name
info['session_id'] = student_record.session
info['student_email'] = student_record.email
info['date'] = now
info['order_id'] = order_id

if "payments" not in student.objectIds():
    student.invokeFactory('PaymentsFolder','payments')
    payments = getattr(student,'payments')
    d = {}
    d['Title'] = 'Payments'
    payments.getContent().edit(mapping=d)
    wftool.doActionFor(payments,'open')
else:
    payments = getattr(student,'payments')


payments.invokeFactory('Payment', payment_id)
payment = getattr(payments,payment_id)
wftool.doActionFor(payment,'open')
d = {}
d.update(info)
payment.getContent().edit(mapping=d)
#wftool.doActionFor(payment,'close')
#wftool.doActionFor(student,'pay_school_fee')
info['callback_url'] = "%s/payments/%s/%s?echo=%s" % (student.absolute_url(),
                                                      payment_id,
                                                      info['callback_function'],
                                                      payment_id)

logger.info('%(student_id)s initiated %(type_description)s payment with order_id %(order_id)s and callback url %(callback_url)s' % info)
payment_fields = (('product_id','site_id'),
                  ('site_name','site_name'),
                  ('site_redirect_url','callback_url'),
                  ('Currency','currency_id'),
                  ('cust_id','student_id'),
                  ('cust_id_desc','type_description'),
                  ('cust_name','student_name'),
                  ('txn_ref','order_id'),
                  ('Amount','amount'),
                  ('pay_item_id','pay_item_id'),
                  ('pay_item_name','pay_item_name'),
                  ('payment_params','payment_params'),
                  #('xml_data','xml_data'),
                  )
args = {}
for arg,field in payment_fields:
    args[arg] = info[field]
interswitch_amount = int(info['surcharge'])*100
uni_amount = int(info['fee'])*100
total_amount = interswitch_amount + uni_amount
args['Amount'] = "%d" % (total_amount)
args['cust_name_desc'] = "Student Name"
info['args'] = args
return context.goto_interswitch_form(info=info)
