|
- # Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
- # License: GNU General Public License v3. See license.txt
- from __future__ import unicode_literals
- import frappe
- from frappe import _
- from frappe.utils import flt, cint
- import json
- from six import string_types
-
- no_cache = 1
- no_sitemap = 1
-
- expected_keys = ('amount', 'title', 'description', 'reference_doctype', 'reference_docname',
- 'payer_name', 'payer_email', 'order_id')
-
- def get_context(context):
- context.no_cache = 1
- context.api_key = get_api_key()
-
- # all these keys exist in form_dict
- if not (set(expected_keys) - set(frappe.form_dict.keys())):
- for key in expected_keys:
- context[key] = frappe.form_dict[key]
-
- context['amount'] = flt(context['amount'])
-
- else:
- frappe.redirect_to_message(_('Some information is missing'), _('Looks like someone sent you to an incomplete URL. Please ask them to look into it.'))
- frappe.local.flags.redirect_location = frappe.local.response.location
- raise frappe.Redirect
-
- def get_api_key():
- api_key = frappe.db.get_value("Razorpay Settings", None, "api_key")
- if cint(frappe.form_dict.get("use_sandbox")):
- api_key = frappe.conf.sandbox_api_key
-
- return api_key
-
- @frappe.whitelist(allow_guest=True)
- def make_payment(razorpay_payment_id, options, reference_doctype, reference_docname):
- data = {}
-
- if isinstance(options, string_types):
- data = json.loads(options)
-
- data.update({
- "razorpay_payment_id": razorpay_payment_id,
- "reference_docname": reference_docname,
- "reference_doctype": reference_doctype
- })
-
- data = frappe.get_doc("Razorpay Settings").create_request(data)
- frappe.db.commit()
- return data
|