##Script (Python) "pay_online"
##bind container=container
##bind context=context
##bind namespace=
##bind script=script
##bind subpath=traverse_subpath
##parameters=
##title=
##
# $Id: pay_etranzact.py 8679 2012-06-11 11:28:03Z henrik $
"""
pay online
"""
from urllib import urlencode
import logging
logger = logging.getLogger('Skins.pay_etranzact')
import DateTime

if context.portal_membership.isAnonymousUser():
    return None

try:
    from Products.zdb import set_trace
except:
    def set_trace():
        pass
request = context.REQUEST
wftool = context.portal_workflow
students = context.portal_url.getPortalObject().campus.students


student_id = context.getStudentId()
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)
info = {}
info['action'] = 'pay_etranzact'
info['student'] = student_record
info['payment_possible'] = False
info['amount'] = '0'
info['bank'] = ''
info['type_description'] = ''
info['pay_bill_to'] = ''
fee_dict = context.getSchoolFee(student_record)
#fulltime = student_record.mode.endswith('_ft')
new = student_record.review_state == 'cleared_and_validated'
returning = student_record.review_state == 'returning'
if not fee_dict or not (new or returning):
    return context.etranzact_form(info=info)
if new:
    amount = info['amount'] = fee_dict['new']
elif returning:
    amount = info['amount'] = fee_dict['returning']

late_registration = False
if new and int(student_record.session) < 11 and student_record.mode.startswith('ug'):
    late_registration = True
if returning and int(student_record.session) < 10 and student_record.mode.startswith('ug'):
    late_registration = True
if new and int(student_record.session) < 10 and student_record.mode.startswith('pg'):
    late_registration = True
if returning and int(student_record.session) < 9 and student_record.mode.startswith('pg'):
    late_registration = True
if late_registration:
    amount_int = int(amount)
    amount_int += 5000
    amount = info['amount'] = '%d' % (amount_int)

info['surcharge'] = '0'  # Uniben doesn't show the surcharge on the slip
info['payment_possible'] = True
info['type_description'] = fee_dict['description']
info['pay_bill_to'] = student_record.name
info['pay_ship_to'] = "University of Benin"
info['student_id'] = student_id
info['student_name'] = student_record.name
info['student_email'] = student_record.email
#info['session_id'] = student_record.session   # this holds only for new students und must be replaced when also previous session students will pay online !!!!!!
info['session_id'] = fee_dict['next_session_id']
info['type'] = 'etranzact'
info['status'] = 'started'
info['item'] = student_record.course
info['category'] = 'schoolfee'
now = DateTime.DateTime()
info['date'] = now
timestamp = "%d" % int(now.timeTime()*1000)
info['order_id'] = "%s%s" % (student_id[1:],timestamp)
p_id = "p%s" % timestamp

if student_id is None:
    return context.REQUEST.RESPONSE.redirect("%s/srp_anonymous_view" % context.portal_url())

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')
if request.has_key('epayment'):
    return context.etranzact_form(info=info)

payments.invokeFactory('Payment', p_id)
payment = getattr(payments,p_id)
wftool.doActionFor(payment,'open')
d = {}
d.update(info)
payment.getContent().edit(mapping=d)
logger.info('%(student_id)s initiated eTranzact school fee payment with order_id %(order_id)s' % info)

return context.payments_view()