[![CircleCI](https://circleci.com/gh/fawry-api/fawry.svg?style=svg)](https://circleci.com/gh/fawry-api/fawry) # Fawry **تنويه:** نحن لسنا تابعين رسميًا لشركة فوري. مكتبة لتسهيل التعامل مع خدمات الدفع الخاصة بشبكة الدفع الإلكتروني فوري: - [لإجراء عملية دفع](https://github.com/fawry-api/fawry#charge-customers) - [لإجراء عملية استرداد](https://github.com/fawry-api/fawry#refund-customers) - [حالة الدفع](https://github.com/fawry-api/fawry#get-payment-status) - [عرض رموز الكروت](https://github.com/fawry-api/fawry#list-card-tokens) - [إضافة رمز كارت](https://github.com/fawry-api/fawry#create-card-token) - [حذف رمز كارت](https://github.com/fawry-api/fawry#delete-card-token) - [تحليل رد خدمة فوري V2](https://github.com/fawry-api/fawry#parse-fawry-service-callback-v2) - [طلب البيانات الخاصة بإعدادات الإستخدام](https://github.com/fawry-api/fawry#configuration-keys-as-environment-variables) _المكتبة تدعم النظام التجريبي لفوري ايضا_ ## لإضافة وتشغيل المكتبة أضف هذا السطر إلى ملف Gemfile الخاص بتطبيقك: ```ruby gem 'fawry' ``` ثم نفذ: $ bundle أو قم بتثبيته بنفسك على النحو التالي: $ gem install fawry ## طريقة الإستعمال ### لإجراء عملية دفع ```ruby params = { "merchant_code": 'merchant_code', "merchant_ref_num": 'io5jxf3jp27kfh8m719arcqgw7izo7db', "customer_profile_id": 'ocvsydvbu2gcp528wvl64i9z5srdalg5', "customer_mobile": '012345678901', "payment_method": 'PAYATFAWRY', "currency_code": 'EGP', "amount": 20, "fawry_secure_key": 'fawry_secure_key', "description": 'the charge request description', "charge_items": [{ "item_id": 'fk3fn9flk8et9a5t9w3c5h3oc684ivho', "description": 'desc', "price": 20, "quantity": 1 }] } # استخدم خيار النظام التجريبي للاتصال بالنظام التجريبي الخاص بفوري # sandbox: true res = Fawry.charge(params, sandbox: true) # => # res.success? # => true res.reference_number # => 931600239 ``` ### لإجراء عملية استرداد ```ruby params = { "merchant_code": 'merchant_code', "reference_number": '931337410', "refund_amount": 20, "fawry_secure_key": 'fawry_secure_key' } res = Fawry.refund(params, sandbox: true) # => # res.success? # => true ``` ### حالة الدفع ```ruby params = { "merchant_code": 'merchant_code', "merchant_ref_number": 'ssshxb98phmyvm434es62kage3nsm2cj', "fawry_secure_key": 'fawry_secure_key' } res = Fawry.payment_status(params, sandbox: true) # => # res.success? # => true res.payment_status # => UNPAID ``` ### عرض رموز الكروت ```ruby params = { "merchant_code": 'merchant_code', "customer_profile_id": 'customer_profile_id', "fawry_secure_key": 'fawry_secure_key' } res = Fawry.list_tokens(params, sandbox: true) #"CustomerTokensResponse", "cards"=>[{"token"=>"b5sshhdsl98df96200f254c19b2718bfc825a0678888216c28962b3e66a393084ee9aed6", "creationDate"=>1599487402318, "lastFourDigits"=>"4242", "brand"=>"Visa Card"}, {"token"=>"fb98dslsksmkdds7857ed7042ce30a2a5b777e1f1ac6ac58da1c8c0199f61df7a8bc098e96", "creationDate"=>1599489158457, "lastFourDigits"=>"0001", "brand"=>"Visa Card"}, {"token"=>"cc03fwqaacbd94e468a1b756ac1cbb285a41a2428df9f1a727457b41f9447d0058c7c", "creationDate"=>1599584834346, "lastFourDigits"=>"2346", "brand"=>"MasterCard"}, {"token"=>"f04a8bc9c973f900515f4b58e52c9ff03070baf3f534bdfdad0e97679534f60ddkjk13", "creationDate"=>1600260415739, "lastFourDigits"=>"8769", "brand"=>"Visa Card"}], "statusCode"=>200, "statusDescription"=>"Operation done successfully"}, @type="CustomerTokensResponse", @cards=[{"token"=>"b5sshhdsl98df96200f254c19b2718bfc825a0678888216c28962b3e66a393084ee9aed6", "creationDate"=>1599487402318, "lastFourDigits"=>"4242", "brand"=>"Visa Card"}, {"token"=>"fb98dslsksmkdds7857ed7042ce30a2a5b777e1f1ac6ac58da1c8c0199f61df7a8bc098e96", "creationDate"=>1599489158457, "lastFourDigits"=>"0001", "brand"=>"Visa Card"}, {"token"=>"cc03fwqaacbd94e468a1b756ac1cbb285a41a2428df9f1a727457b41f9447d0058c7c", "creationDate"=>1599584834346, "lastFourDigits"=>"2346", "brand"=>"MasterCard"}, {"token"=>"f04a8bc9c973f900515f4b58e52c9ff03070baf3f534bdfdad0e97679534f60ddkjk13", "creationDate"=>1600260415739, "lastFourDigits"=>"8769", "brand"=>"Visa Card"}], @status_code=200, @status_description="Operation done successfully"> res.success? # => true res.cards # => cards ``` ### إضافة رمز كارت ```ruby params = { "merchant_code" : "merchant_code", "customer_profile_id" : "customer_profile_id", "customer_mobile" : "customer_mobile", "customer_email" : "customer_email", "card_number" : "card_number", "expiry_year" : "expiry_year", "expiry_month" : "expiry_month", "cvv" : "cvv" } res = Fawry.create_card_token(params, sandbox: true) #"CardTokenResponse", "card"=>{"token"=>"b598f96200f254c19b2718bfc825a063278888216c28962b3e66a393084ee9aed6", "creationDate"=>1607011562353, "lastFourDigits"=>"4242"}, "statusCode"=>200, "statusDescription"=>"Operation done successfully"}, @type="CardTokenResponse", @status_code=200, @status_description="Operation done successfully", @card={"token"=>"b598f96200f254c19b2718bfc825a063278888216c28962b3e66a393084ee9aed6", "creationDate"=>1607011562353, "lastFourDigits"=>"4242"}> res.success? res.card ``` ### حذف رمز كارت ```ruby params = { "merchant_code": 'merchant_code', "customer_profile_id": 'customer_profile_id', "card_token": 'card_token' } res = Fawry.delete_token(params, sandbox: true) #"CardTokenResponse", "statusCode"=>200, "statusDescription"=>"Operation done successfully"}, @type="CardTokenResponse", @status_code=200, @status_description="Operation done successfully"> res.success? ``` ### رد اتصال خدمة تحليل فوري v2 ```ruby # تم إرسال المعلمات من خادم فوري callback_params = { "requestId": 'c72827d084ea4b88949d91dd2db4996e', "fawryRefNumber": '970177', "merchantRefNumber": '9708f1cea8b5426cb57922df51b7f790', "customerMobile": '01004545545', "customerMail": 'fawry@fawry.com', "paymentAmount": 152.00, "orderAmount": 150.00, "fawryFees": 2.00, "shippingFees": '', "orderStatus": 'NEW', "paymentMethod": 'PAYATFAWRY', "messageSignature": 'b0175565323e464b01dc9407160368af5568196997fb6e379374a4f4fbbcf587', "orderExpiryDate": 1_533_554_719_314, "orderItems": [{ "itemCode": 'e6aacbd5a498487ab1a10ae71061535d', "price": 150.0, "quantity": 1 }] } # FAWRY_SECURE_KEY يجب تعيين متغير البيئة fawry_callback = Fawry.parse_callback(callback_params, {}) # fawry_callback.fawry_ref_number # => 970177 fawry_callback.order_status # => NEW ``` ### طلب البيانات الخاصة بإعدادات الإستخدام يمكن إرسال بيانات تهيئة فوري مثل رمز التاجر ومفتاح الأمان خلال البيانات المعطاه (`merchant_code`, `fawry_secure_key` ) الى **charge**, **refund**, **payment_status** طرق, _أو_ يمكن تعيينها كمتغيرات لنظام التشغيل: (`FAWRY_MERCHANT_CODE`, `FAWRY_SECURE_KEY`). لتحليل fawry معاودة الاتصال ، يجب عليك ضبط متغير البيئة `FAWRY_SECURE_KEY`. ## الخطوات القادمة المطلوب تنفيذها: - إضافة خيار لرفع الاستثناء عند فشل الطلب ## تطوير المكتبة بعد التحقق من الريبو ، قم بتشغيل `bin/setup` لتثبيت التبعيات. ثم نفذ الأمر `rake spec` لإجراء الاختبارات. يمكنك أيضا الجري `bin/console` للمطالبة التفاعلية التي تسمح لك بالتجربة. لتثبيت هذه المكتبة على جهازك ، قم بتشغيل `bundle exec rake install`. لإصدار إصدار جديد ، قم بتحديث رقم الإصدار بتنسيق `version.rb`, ثم نفذ الأمر `bundle exec rake release`, الذي سينشئ علامة git للإصدار ، ويدفع التزامات git والعلامات ، ويدفع ملف `.gem` يا صديق [rubygems.org](https://rubygems.org). ## المساهمة يتم الترحيب بتقارير الأخطاء وطلبات السحب على GitHub في https://github.com/amrrbakry/fawry. يهدف هذا المشروع إلى أن يكون مساحة آمنة ومرحبة للتعاون ، ومن المتوقع أن يلتزم المساهمون بـ [Contributor Covenant](http://contributor-covenant.org) القواعد السلوكية.