From 4cb94d7a0e7070a7c50696024219490d6e369438 Mon Sep 17 00:00:00 2001 From: letscode Date: Fri, 10 Jan 2020 13:50:47 +0200 Subject: [PATCH 01/57] Magento 2 api v2 integration without webhooks --- .gitignore | 2 + Api/CurrencyInterface.php | 30 + Api/InvoiceInterface.php | 36 + Api/WebHookInterface.php | 13 + Controller/Adminhtml/Validation/Invoice.php | 44 ++ .../Adminhtml/Validation/Validation.php | 52 ++ Controller/Adminhtml/Validation/WebHook.php | 96 +++ LICENSE | 674 ++++++++++++++++++ Model/Api/Currency.php | 161 +++++ Model/Api/Invoice.php | 107 +++ Model/Api/WebHook.php | 81 +++ Model/ApiProvider.php | 174 +++++ Model/CoinPaymentsConfigProvider.php | 99 +++ Model/Methods/Coinpayments.php | 61 ++ README.md | 0 composer.json | 21 + etc/acl.xml | 9 + etc/adminhtml/routes.xml | 8 + etc/adminhtml/system.xml | 75 ++ etc/config.xml | 21 + etc/di.xml | 6 + etc/frontend/di.xml | 13 + etc/frontend/routes.xml | 8 + etc/module.xml | 12 + etc/payment.xml | 14 + etc/webapi.xml | 22 + registration.php | 7 + .../layout/adminhtml_system_config_edit.xml | 14 + view/adminhtml/requirejs-config.js | 6 + view/adminhtml/templates/js_vars.phtml | 8 + view/adminhtml/web/images/logo.png | Bin 0 -> 6130 bytes view/adminhtml/web/js/invoice-validate.js | 38 + view/adminhtml/web/js/webhooks-validate.js | 48 ++ view/adminhtml/web/styles.css | 30 + view/frontend/layout/checkout_index_index.xml | 56 ++ view/frontend/web/images/logo.png | Bin 0 -> 2876 bytes .../web/js/action/set-payment-method.js | 56 ++ .../js/model/validate-selected-currency.js | 28 + .../web/js/view/payment/coin_payments.js | 22 + .../payment/method-renderer/coin-method.js | 275 +++++++ .../payment/validate-selected-currency.js | 16 + .../web/template/payment/coin_payment.html | 87 +++ 42 files changed, 2530 insertions(+) create mode 100644 .gitignore create mode 100644 Api/CurrencyInterface.php create mode 100644 Api/InvoiceInterface.php create mode 100644 Api/WebHookInterface.php create mode 100644 Controller/Adminhtml/Validation/Invoice.php create mode 100644 Controller/Adminhtml/Validation/Validation.php create mode 100644 Controller/Adminhtml/Validation/WebHook.php create mode 100644 LICENSE create mode 100644 Model/Api/Currency.php create mode 100644 Model/Api/Invoice.php create mode 100644 Model/Api/WebHook.php create mode 100644 Model/ApiProvider.php create mode 100644 Model/CoinPaymentsConfigProvider.php create mode 100644 Model/Methods/Coinpayments.php create mode 100644 README.md create mode 100644 composer.json create mode 100644 etc/acl.xml create mode 100644 etc/adminhtml/routes.xml create mode 100644 etc/adminhtml/system.xml create mode 100644 etc/config.xml create mode 100644 etc/di.xml create mode 100644 etc/frontend/di.xml create mode 100644 etc/frontend/routes.xml create mode 100644 etc/module.xml create mode 100644 etc/payment.xml create mode 100644 etc/webapi.xml create mode 100644 registration.php create mode 100644 view/adminhtml/layout/adminhtml_system_config_edit.xml create mode 100644 view/adminhtml/requirejs-config.js create mode 100644 view/adminhtml/templates/js_vars.phtml create mode 100644 view/adminhtml/web/images/logo.png create mode 100644 view/adminhtml/web/js/invoice-validate.js create mode 100644 view/adminhtml/web/js/webhooks-validate.js create mode 100644 view/adminhtml/web/styles.css create mode 100644 view/frontend/layout/checkout_index_index.xml create mode 100644 view/frontend/web/images/logo.png create mode 100644 view/frontend/web/js/action/set-payment-method.js create mode 100644 view/frontend/web/js/model/validate-selected-currency.js create mode 100644 view/frontend/web/js/view/payment/coin_payments.js create mode 100644 view/frontend/web/js/view/payment/method-renderer/coin-method.js create mode 100644 view/frontend/web/js/view/payment/validate-selected-currency.js create mode 100644 view/frontend/web/template/payment/coin_payment.html diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..5b9bd87 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ + +*.bak diff --git a/Api/CurrencyInterface.php b/Api/CurrencyInterface.php new file mode 100644 index 0000000..0d0e648 --- /dev/null +++ b/Api/CurrencyInterface.php @@ -0,0 +1,30 @@ +getRequest()->getParams(); + + $response = []; + if (!empty($params['client_id'])) { + $clientId = $params['client_id']; + $invoice = $this->invoiceModel->createSimple($clientId); + if ($invoice) { + $response = [ + 'success' => $invoice + ]; + } else { + $response = [ + 'success' => false, + 'errorText' => sprintf('Failed to create validation invoice!'), + ]; + } + } else { + $response = [ + 'success' => false, + 'errorText' => sprintf('Enter Coinpaymnets.NET credentials!'), + ]; + } + + $result = $this->jsonResultFactory->create(); + $result->setData($response); + return $result; + } +} \ No newline at end of file diff --git a/Controller/Adminhtml/Validation/Validation.php b/Controller/Adminhtml/Validation/Validation.php new file mode 100644 index 0000000..5ab3f50 --- /dev/null +++ b/Controller/Adminhtml/Validation/Validation.php @@ -0,0 +1,52 @@ +jsonResultFactory = $jsonResultFactory; + $this->webHookModel = $webHook; + $this->invoiceModel = $invoice; + } + + public function execute() + { + + } +} \ No newline at end of file diff --git a/Controller/Adminhtml/Validation/WebHook.php b/Controller/Adminhtml/Validation/WebHook.php new file mode 100644 index 0000000..0701536 --- /dev/null +++ b/Controller/Adminhtml/Validation/WebHook.php @@ -0,0 +1,96 @@ + 'notif-url', +// "notifications" => [ +// 2, +// 4 +// ], +// ]) +// ) +// ]; +// +// $equal = sprintf('%s%s%s%s', chr(239), chr(187), chr(191), implode('', $signatureData)) == $signatureString; +// +// $imploded = implode('', $signatureData); +// $signature = $this->webHookModel->generateHmac($signatureData, 'secret'); + + $params = $this->getRequest()->getParams(); + $response = []; + + if (!empty($params['client_id']) && !empty($params['client_secret'])) { + + $client_id = $params['client_id']; + $client_secret = $params['client_secret']; + + $webHooksList = $this->webHookModel->getList($client_id, $client_secret); + + if (!empty($webHooksList)) { + + $webHooksUrlsList = []; + if (!empty($webHooksList['items'])) { + $webHooksUrlsList = array_map(function ($webHook) { + return $webHook['notificationsUrl']; + }, $webHooksList['items']); + } + + if (!in_array($this->webHookModel->getWebHookCallbackUrl(), $webHooksUrlsList)) { + $webHook = $this->webHookModel->createWebHook($client_id, $client_secret); + if (!empty($webHook)) { + $response = [ + 'success' => $webHook, + ]; + } else { + $response = [ + 'success' => false, + 'errorText' => sprintf('Failed to create WebHook!'), + ]; + } + } else { + $response = [ + 'success' => true, + ]; + } + } else { + $response = [ + 'success' => false, + 'errorText' => sprintf('Failed to get WebHooks list!'), + ]; + } + } else { + $response = [ + 'success' => false, + 'errorText' => sprintf('Enter Coinpaymnets.NET credentials!'), + ]; + } + + + $result = $this->jsonResultFactory->create(); + $result->setData($response); + return $result; + } +} \ No newline at end of file diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..94a9ed0 --- /dev/null +++ b/LICENSE @@ -0,0 +1,674 @@ + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. + + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + 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 3 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, see . + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + Copyright (C) + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +. + + The GNU General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, you +may consider it more useful to permit linking proprietary applications with +the library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. But first, please read +. diff --git a/Model/Api/Currency.php b/Model/Api/Currency.php new file mode 100644 index 0000000..5aadb3c --- /dev/null +++ b/Model/Api/Currency.php @@ -0,0 +1,161 @@ +cart->getQuote(); + $currencyCode = $quote->getBaseCurrencyCode(); + $amount = $quote->getBaseGrandTotal(); + $response = []; + + if ($coinShopCurrency = $this->getFiatCurrency($currencyCode)) { + $currencyId = $coinShopCurrency['currencyId']; + $convertedAmount = $this->convertCurrencies($currencyId, $coinCurrencyId, $amount, $coinCurrencyPrecision); + } + + if (!empty($convertedAmount)) { + + $this->checkoutSession->setCoinpaymentsCurrency($coinCurrencyId); + $this->checkoutSession->setCoinpaymentsAmount($convertedAmount['value']); + + $response = [ + 'converted_amount' => $convertedAmount['displayValue'], + ]; + } + +// $result = $this->jsonResultFactory->create(); +// $result->setData($response); + return json_encode($response); + } + + + /** + * @return array|mixed + */ + public function getAllCryptoCurrencies() + { + + $currencies = []; + + $listData = $this->getCryptoCurrencies(); + + if (!empty($listData['items'])) { + $currencies = $listData['items']; + while (!empty($listData['next_page_params']) && $listData = $this->getCryptoCurrencies($listData['next_page_params'])) { + if (!empty($listData['items'])) { + $currencies = array_merge($currencies, $listData['items']); + } + } + } + return $currencies; + } + + + /** + * @param array $params + * @return array|mixed + */ + public function getCryptoCurrencies(array $params = []) + { + + $params = array_merge($params, [ + 'types' => self::CRYPTO_TYPE, + 'capabilities' => self::PAYMENT_CAPABILITY, + ]); + + $listData = $this->getCurrencies($params); + if (!empty($listData['paging']['next'])) { + $nextPage = parse_url($listData['paging']['next']); + $nextPage['query_params'] = Psr7\parse_query($nextPage['query']); + $listData['next_page_params'] = $nextPage['query_params']; + } + + return $listData; + } + + /** + * @param array $params + * @return array|mixed + */ + public function getFiatCurrency(string $name) + { + + $params = [ + 'types' => self::FIAT_TYPE, + 'q' => $name, + ]; + $items = []; + + $listData = $this->getCurrencies($params); + if (!empty($listData['items'])) { + $items = $listData['items']; + } + + return array_shift($items); + } + + + /** + * @param array $params + * @return mixed + */ + public function getCurrencies($params = []) + { + return $this->sendGetRequest('currencies', [], $params); + } + + /** + * @param int $currencyId + * @param $coinCurrencyId + * @param $amount + * @return bool + */ + public function convertCurrencies($currencyId, $coinCurrencyId, $amount, $precision) + { + $rate = $this->getCurrencyRate($currencyId, $coinCurrencyId); + + $data['displayValue'] = $amount * $rate; + $data['value'] = number_format($amount * $rate, $precision, '', ''); + + return $data; + } + + /** + * @param $currencyId + * @param $coinCurrencyId + * @return bool|mixed + */ + public function getCurrencyRate($currencyId, $coinCurrencyId) + { + + $rate = false; + + $params = [ + 'from' => $currencyId, + 'to' => $coinCurrencyId, + ]; + + $listData = $this->sendGetRequest('rates', [], $params); + + if (!empty($listData['items'])) { + $rateData = array_shift($listData['items']); + $rate = $rateData['rate']; + } + + return $rate; + } + +} \ No newline at end of file diff --git a/Model/Api/Invoice.php b/Model/Api/Invoice.php new file mode 100644 index 0000000..1dca75f --- /dev/null +++ b/Model/Api/Invoice.php @@ -0,0 +1,107 @@ +checkoutSession->getCoinpaymentsCurrency(); + $amount = $this->checkoutSession->getCoinpaymentsAmount(); + $order = $this->checkoutSession->getLastRealOrder(); + + $clientId = $this->scopeConfig->getValue('payment/coin_payments' . DIRECTORY_SEPARATOR . 'client_id'); + $clientSecret = $this->scopeConfig->getValue('payment/coin_payments' . DIRECTORY_SEPARATOR . 'client_secret'); + $merchantWebHooks = $this->scopeConfig->getValue('payment/coin_payments' . DIRECTORY_SEPARATOR . 'webhooks'); + + if ($merchantWebHooks) { + $invoiceData = $this->createMerchant($clientId, $clientSecret, $currencyId, $order->getIncrementId(), intval($amount)); + } else { + $invoiceData = $this->createSimple($clientId, $currencyId, $order->getIncrementId(), intval($amount)); + } + + $response = []; + + if (!empty($invoiceData['id'])) { + $this->checkoutSession->setCoinpaymentsInvoiceId($invoiceData['id']); + $response = ['coinInvoiceId' => $invoiceData['id']]; + } + + return $response; + } + + /** + * @return boolean + */ + public function updateInvoice() + { + $response = false; + + return $response; + } + + /** + * @param $clientId + * @param $clientSecret + * @param $currencyId + * @param $invoiceId + * @param $amount + * @return mixed + * @throws \Exception + */ + public function createMerchant($clientId, $clientSecret, $currencyId, $invoiceId, $amount) + { + $requestData = [ + "invoiceId" => $invoiceId, + "amount" => [ + "currencyId" => $currencyId, + "value" => $amount + ], + ]; + + $action = sprintf('merchant/invoices', $clientId); + + $requestParams = [ + 'method' => 'POST', + 'action' => $action, + 'clientId' => $clientId, + 'clientSecret' => $clientSecret, + ]; + + $headers = $this->getRequestHeaders($requestParams, $requestData); + + return $this->sendPostRequest($action, $headers, $requestData); + } + + /** + * @param $clientId + * @param int $currencyId + * @param string $invoiceId + * @param int $amount + * @return mixed + */ + public function createSimple($clientId, $currencyId = 1, $invoiceId = 'Validate invoice', $amount = 1) + { + + $action = 'invoices'; + + $requestParams = [ + 'clientId' => $clientId, + 'invoiceId' => $invoiceId, + 'amount' => [ + 'currencyId' => $currencyId, + 'value' => $amount + ] + ]; + + return $this->sendPostRequest($action, [], $requestParams); + } +} \ No newline at end of file diff --git a/Model/Api/WebHook.php b/Model/Api/WebHook.php new file mode 100644 index 0000000..1970857 --- /dev/null +++ b/Model/Api/WebHook.php @@ -0,0 +1,81 @@ +urlBuilder->getUrl('rest/V1/coinpayments/invoice/notification', ['_direct' => null]); + } + + public function createWebHook($clientId, $clientSecret) + { + + return [ // TODO delete test data + "id" => "testId", + "notificationsUrl" => $this->getWebHookCallbackUrl(), + "notifications" => [ + "invoiceCreated", + ] + ]; + + $action = sprintf('merchant/clients/%s/webhooks', $clientId); + + $requestParams = [ + 'method' => 'POST', + 'action' => $action, + 'clientId' => $clientId, + 'clientSecret' => $clientSecret, + ]; + + $requestData = [ + "notificationsUrl" => $this->getWebHookCallbackUrl(), + "notifications" => [ + "invoiceCreated", + "invoicePaymentsReceived", + "invoicePaymentsConfirmed", + "invoiceCompleted", + "invoiceExpired", + ], + ]; + + $headers = $this->getRequestHeaders($requestParams, $requestData); + return $this->sendPostRequest($action, $headers, $requestData); + } + + public function getList($clientId, $clientSecret) + { + + return [ // TODO delete test data + "items" => [ + [ + "id" => "testId", + "notificationsUrl" => "https://magento2.test/rest/V1/coinpayments/invoice/notification/", + "notificationsUrl" => "https://magento2.test/rest/V1/coinpayments/", + "notifications" => [ + "invoiceCreated", + ] + ] + ] + ]; + + $action = sprintf('merchant/clients/%s/webhooks', $clientId); + $requestParams = [ + 'method' => 'GET', + 'action' => $action, + 'clientId' => $clientId, + 'clientSecret' => $clientSecret, + ]; + + $headers = $this->getRequestHeaders($requestParams); + + return $this->sendGetRequest($action, $headers); + } + + +} \ No newline at end of file diff --git a/Model/ApiProvider.php b/Model/ApiProvider.php new file mode 100644 index 0000000..0598db3 --- /dev/null +++ b/Model/ApiProvider.php @@ -0,0 +1,174 @@ + 'application/json' + ]; + + /* @var Cart */ + protected $cart; + + /** + * @var Url + */ + protected $urlBuilder; + + /** + * @var \Magento\Framework\Controller\Result\JsonFactory + */ + protected $jsonResultFactory; + + /** + * @var mixed + */ + protected $baseConf; + + public function __construct( + Session $checkoutSession, + Cart $cart, + Curl $curl, + ScopeConfigInterface $scopeConfig, + \Magento\Framework\Controller\Result\JsonFactory $jsonResultFactory, + Url $urlBuilder + ) + { + $this->cart = $cart; + $this->checkoutSession = $checkoutSession; + $this->curl = $curl; + $this->scopeConfig = $scopeConfig; + $this->urlBuilder = $urlBuilder; + $this->jsonResultFactory = $jsonResultFactory; + $this->baseConf = $this->getBaseConfig(); + } + + public function getRequestHeaders($requestParams, $requestData = []) + { + + $date = new \Datetime(); + + $headerData = [ + 'method' => $requestParams['method'], + 'url' => $this->getApiUrl($requestParams['action']), + 'clientId' => $requestParams['clientId'], + 'timestamp' => $date->format('c'), + ]; + + if (!empty($requestData)) { + $headerData['params'] = json_encode($requestData); + } + + return [ + 'X-CoinPayments-Client' => $requestParams['clientId'], + 'X-CoinPayments-Timestamp' => $date->format('c'), + 'X-CoinPayments-Signature' => $this->generateHmac($headerData, $requestParams['clientSecret']), + ]; + } + + /** + * @param $action + * @param $headers + * @param $requestData + * @return mixed + */ + public function sendPostRequest($action, $headers, $requestData) + { + + $headers = array_merge($headers, $this->defaultHeaders); + foreach ($headers as $name => $value) { + $this->curl->addHeader($name, $value); + } + + $this->curl->setOption(CURLOPT_SSL_VERIFYHOST, 0); + $this->curl->setOption(CURLOPT_SSL_VERIFYPEER, 0); + + $requestUrl = $this->getApiUrl($action); + $this->curl->post($requestUrl, $requestData); + return json_decode($this->curl->getBody(), true); + } + + /** + * @param $action + * @param $headers + * @param array $requestData + * @return mixed + */ + public function sendGetRequest($action, $headers, $requestData = []) + { + + $headers = array_merge($headers, $this->defaultHeaders); + foreach ($headers as $name => $value) { + $this->curl->addHeader($name, $value); + } + + $this->curl->setOption(CURLOPT_SSL_VERIFYHOST, 0); + $this->curl->setOption(CURLOPT_SSL_VERIFYPEER, 0); + + $requestUrl = $this->getApiUrl($action); + if (!empty($requestData)) { + $requestUrl .= '?' . http_build_query($requestData); + } + + $this->curl->get($requestUrl); + return json_decode($this->curl->getBody(), true); + } + + /** + * @param $baseConf + * @param $action + * @return string + */ + public function getApiUrl($action) + { + return sprintf('%s/v%s/%s', $this->baseConf['api_url'], $this->baseConf['api_version'], $action); + } + + /** + * @param $requestData + * @param null $secretKey + * @return string + */ + public function generateHmac($requestData, $secretKey = null) + { + return base64_encode(hash_hmac('sha256', chr(239) . implode('', $requestData), $secretKey, true)); + } + + /** + * @param $base + * @param $field + * @return mixed + */ + protected function getConfig($base, $field = false) + { + if ($field) { + return $this->scopeConfig->getValue($base . DIRECTORY_SEPARATOR . $field); + } + return $this->scopeConfig->getValue($base); + } + + /** + * @param null $field + * @return mixed + */ + protected function getBaseConfig($field = null) + { + return $this->getConfig('coinpayment/conf', $field); + } +} diff --git a/Model/CoinPaymentsConfigProvider.php b/Model/CoinPaymentsConfigProvider.php new file mode 100644 index 0000000..2574cb9 --- /dev/null +++ b/Model/CoinPaymentsConfigProvider.php @@ -0,0 +1,99 @@ +curl = $curl; + $this->_scopeConfig = $scopeConfig; + $this->_assetRepo = $assetRepo; + $this->_apiCurrency = $apiCurrency; + } + + /** + * @return array + */ + public function getConfig() + { + $currencies = $this->getCryptoCurrencies(); + + return [ + 'payment' => [ + 'coinpayments' => [ + 'currencies' => $currencies, + 'logo' => $this->_assetRepo->getUrl('Coinpayments_CoinPayments::images/logo.png'), + ] + ] + ]; + } + + /** + * @return array + */ + public function getCryptoCurrencies() + { + $currencies = []; + + $apiCurrencies = $this->_apiCurrency->getAllCryptoCurrencies(); + + if (!empty($apiCurrencies)) { + foreach ($apiCurrencies as $key => $item) { + $elm = [ + 'value' => $item['currencyId'], + 'name' => $item['name'], + 'body' => $item, + ]; + $currencies[] = $elm; + } + } else { + $currencies = [ + 'error' => [ + 'name' => 'Cannot load Coinpayments.Net currencies', + 'value' => 'error', + 'attr' => [ + 'disabled' => true, + ], + ], + ]; + } + + return $currencies; + } +} diff --git a/Model/Methods/Coinpayments.php b/Model/Methods/Coinpayments.php new file mode 100644 index 0000000..ccbfce1 --- /dev/null +++ b/Model/Methods/Coinpayments.php @@ -0,0 +1,61 @@ + + */ + +namespace Coinpayments\CoinPayments\Model\Methods; + +use Magento\Framework\Pricing\PriceCurrencyInterface; +use Magento\Framework\HTTP\ZendClientFactory; +use Magento\Payment\Model\Method\ConfigInterface; +use Magento\Payment\Model\Method\TransparentInterface; +use Magento\Sales\Model\Order\Email\Sender\OrderSender; +use Magento\Quote\Api\Data\CartInterface; +use Magento\Payment\Model\Method\AbstractMethod; +use Magento\Sales\Model\Order; + +class Coinpayments extends AbstractMethod +{ + + /** + * Method code + */ + const CODE = 'coin_payments'; + + /** + * @var string + */ + protected $_code = self::CODE; + + + /* Uncomment if need using blocks + + protected $_formBlockType = 'Coinpayments\CoinPayments\Block\Form\Coinpayments'; + + protected $_infoBlockType = 'Coinpayments\CoinPayments\Block\Info';*/ + + + /** + * @param CartInterface|null $quote + * @return bool + */ + public function isAvailable(\Magento\Quote\Api\Data\CartInterface $quote = null) + { + return parent::isAvailable($quote); + } + + /** + * @param null $storeId + * @return bool + */ + public function isActive($storeId = null) + { + return (bool)(int)$this->getConfigData('active', $storeId); + } + + public function getCode() + { + return $this->_code; + } +} diff --git a/README.md b/README.md new file mode 100644 index 0000000..e69de29 diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..266a15a --- /dev/null +++ b/composer.json @@ -0,0 +1,21 @@ +{ + "name": "coinpaymentsnet/magento2", + "description": "Add new payment method for CoinPayments.net", + "require": { + "php": "~5.5.0|~5.6.0|~7.0.0|~7.1", + "lusitanian/oauth": "~0.8.10" + }, + "type": "magento2-module", + "version": "2.0.0", + "license": [ + "OSL-3.0" + ], + "autoload": { + "files": [ + "registration.php" + ], + "psr-4": { + "coinpaymentsnet\\magento2\\": "" + } + } +} diff --git a/etc/acl.xml b/etc/acl.xml new file mode 100644 index 0000000..2350630 --- /dev/null +++ b/etc/acl.xml @@ -0,0 +1,9 @@ + + + + + + + + \ No newline at end of file diff --git a/etc/adminhtml/routes.xml b/etc/adminhtml/routes.xml new file mode 100644 index 0000000..32b7201 --- /dev/null +++ b/etc/adminhtml/routes.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/etc/adminhtml/system.xml b/etc/adminhtml/system.xml new file mode 100644 index 0000000..e59e408 --- /dev/null +++ b/etc/adminhtml/system.xml @@ -0,0 +1,75 @@ + + + +
+ + complex coin-payment-section + Magento\Paypal\Block\Adminhtml\System\Config\Fieldset\Payment + + + + + Magento\Config\Model\Config\Source\Yesno + + + + + required-entry validate-length minimum-length-22 maximum-length-32 coin-invoice-validate + + + 1 + + + + + + Magento\Config\Model\Config\Source\Yesno + + 1 + + + + + + + required-entry validate-length minimum-length-22 maximum-length-44 coin-webhooks-validate + + + 1 + 1 + + + + + + Magento\Sales\Model\Config\Source\Order\Status + required-entry + + + + + 1 + 1 + + + + +
+
+
diff --git a/etc/config.xml b/etc/config.xml new file mode 100644 index 0000000..ed6f3b1 --- /dev/null +++ b/etc/config.xml @@ -0,0 +1,21 @@ + + + + + + 0 + Coinpayments\CoinPayments\Model\Methods\Coinpayments + Coin Payments + 0 + coinpayments + + + + + https://orion-api-testnet.starhermit.com/api + 1 + + + ` + \ No newline at end of file diff --git a/etc/di.xml b/etc/di.xml new file mode 100644 index 0000000..c1e61f3 --- /dev/null +++ b/etc/di.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/etc/frontend/di.xml b/etc/frontend/di.xml new file mode 100644 index 0000000..fca8dd9 --- /dev/null +++ b/etc/frontend/di.xml @@ -0,0 +1,13 @@ + + + + + + + Coinpayments\CoinPayments\Model\CoinPaymentsConfigProvider + + + + + \ No newline at end of file diff --git a/etc/frontend/routes.xml b/etc/frontend/routes.xml new file mode 100644 index 0000000..b040362 --- /dev/null +++ b/etc/frontend/routes.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/etc/module.xml b/etc/module.xml new file mode 100644 index 0000000..75bebe6 --- /dev/null +++ b/etc/module.xml @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/etc/payment.xml b/etc/payment.xml new file mode 100644 index 0000000..34905c1 --- /dev/null +++ b/etc/payment.xml @@ -0,0 +1,14 @@ + + + + + + + + + + 1 + + + \ No newline at end of file diff --git a/etc/webapi.xml b/etc/webapi.xml new file mode 100644 index 0000000..c6bb512 --- /dev/null +++ b/etc/webapi.xml @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/registration.php b/registration.php new file mode 100644 index 0000000..cb2090d --- /dev/null +++ b/registration.php @@ -0,0 +1,7 @@ + + + + + + + + + + + + + diff --git a/view/adminhtml/requirejs-config.js b/view/adminhtml/requirejs-config.js new file mode 100644 index 0000000..281fef8 --- /dev/null +++ b/view/adminhtml/requirejs-config.js @@ -0,0 +1,6 @@ +var config = { + 'paths': { + 'coin-invoice-validate': 'Coinpayments_CoinPayments/js/invoice-validate', + 'coin-webhooks-validate': 'Coinpayments_CoinPayments/js/webhooks-validate' + } +}; diff --git a/view/adminhtml/templates/js_vars.phtml b/view/adminhtml/templates/js_vars.phtml new file mode 100644 index 0000000..e29940d --- /dev/null +++ b/view/adminhtml/templates/js_vars.phtml @@ -0,0 +1,8 @@ + \ No newline at end of file diff --git a/view/adminhtml/web/images/logo.png b/view/adminhtml/web/images/logo.png new file mode 100644 index 0000000000000000000000000000000000000000..9bc9e035f6dee7e38112f825e1509d19e805a71f GIT binary patch literal 6130 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 Ef_fF>OaK4? literal 0 HcmV?d00001 diff --git a/view/adminhtml/web/js/invoice-validate.js b/view/adminhtml/web/js/invoice-validate.js new file mode 100644 index 0000000..904f287 --- /dev/null +++ b/view/adminhtml/web/js/invoice-validate.js @@ -0,0 +1,38 @@ +require([ + 'jquery', + 'jquery/ui', + 'jquery/validate', + 'mage/translate' +], function ($) { + + $.validator.addMethod( + "coin-invoice-validate", + function (client_id) { + + var web_hooks = $('[data-ui-id="select-groups-coin-payments-fields-webhooks-value"]'); + var is_success = false; + + if (web_hooks.length && web_hooks.val() === '1') { + is_success = true; + } else { + var params = { + client_id: client_id, + }; + $.ajax({ + showLoader: true, + url: coin_validate_invoice, + data: params, + async: false, + type: "POST", + dataType: 'json' + }).done(function (data) { + is_success = data.success; + }); + } + + return is_success; + }, + $.mage.__("Please enter a valid Coinpayments.NET credentials.") + ); + +}); \ No newline at end of file diff --git a/view/adminhtml/web/js/webhooks-validate.js b/view/adminhtml/web/js/webhooks-validate.js new file mode 100644 index 0000000..292d3f7 --- /dev/null +++ b/view/adminhtml/web/js/webhooks-validate.js @@ -0,0 +1,48 @@ +require([ + 'jquery', + 'jquery/ui', + 'jquery/validate', + 'mage/translate' +], function ($) { + + var validationError = "Please enter a valid Coinpayments.NET credentials."; + + $.validator.addMethod( + "coin-webhooks-validate", + function (client_secret, elem) { + + var is_success = false; + var validator = this; + var client_id_field = $('[data-ui-id="text-groups-coin-payments-fields-client-id-value"]'); + var client_secret_field = $('[data-ui-id="text-groups-coin-payments-fields-client-secret-value"]'); + var web_hooks = $('[data-ui-id="select-groups-coin-payments-fields-webhooks-value"]'); + + if (client_id_field.length && web_hooks.length && client_secret_field.length) { + + var params = { + client_id: client_id_field.val(), + client_secret: client_secret_field.val(), + }; + + $.ajax({ + showLoader: true, + url: coin_validate_webhooks, + data: params, + async: false, + type: "POST", + dataType: 'json' + }).done(function (data) { + is_success = data.success; + if (!is_success) { + var errors = {}; + errors[client_id_field.attr('name').replace(/[.*+?^${}()|[\]\\]/g, '\\$&')] = validationError; + validator.showErrors(errors); + } + }); + } + + return is_success; + }, + $.mage.__(validationError) + ); +}); \ No newline at end of file diff --git a/view/adminhtml/web/styles.css b/view/adminhtml/web/styles.css new file mode 100644 index 0000000..22a17cd --- /dev/null +++ b/view/adminhtml/web/styles.css @@ -0,0 +1,30 @@ +.complex.coin-payment-section .coin-payment-logo { + display: inline-block; + vertical-align: middle; + margin: 0 20px 0 0px; + width: 180px; + height: 60px; + background-repeat: no-repeat, no-repeat, no-repeat; + background-size: 100% auto; + background-position: center top; + background-image: url('images/logo.png'); +} + +.section-config.with-button.coin-payment-section .config-heading strong { + font-weight: normal; +} + +.complex.coin-payment-section .button-container { + float: right; +} + +.complex.coin-payment-section .coin-payment-description { + display: inline-block; + vertical-align: middle; + width: 50%; +} + +.coin-payment-section.section-config.active > .admin__collapsible-block + input + fieldset { + margin-left: 40px; +} + diff --git a/view/frontend/layout/checkout_index_index.xml b/view/frontend/layout/checkout_index_index.xml new file mode 100644 index 0000000..fe26359 --- /dev/null +++ b/view/frontend/layout/checkout_index_index.xml @@ -0,0 +1,56 @@ + + + + + + + + + + + + + uiComponent + + + + + + + + Coinpayments_CoinPayments/js/view/payment/validate-selected-currency + + + + + + + + + Coinpayments_CoinPayments/js/view/payment/coin_payments + + + + true + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/view/frontend/web/images/logo.png b/view/frontend/web/images/logo.png new file mode 100644 index 0000000000000000000000000000000000000000..4cc78a80875d05fc8e0d8f6a4d030724e502a0ef GIT binary patch literal 2876 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 X%U{10%(AcjF};_KEsZJ--D3X-tYJ+I literal 0 HcmV?d00001 diff --git a/view/frontend/web/js/action/set-payment-method.js b/view/frontend/web/js/action/set-payment-method.js new file mode 100644 index 0000000..332081c --- /dev/null +++ b/view/frontend/web/js/action/set-payment-method.js @@ -0,0 +1,56 @@ +/** + * @copyright: Copyright © 2017 Firebear Studio. All rights reserved. + * @author : Firebear Studio + */ +define( + [ + 'jquery', + 'Magento_Checkout/js/model/quote', + 'Magento_Checkout/js/model/url-builder', + 'mage/storage', + 'Magento_Checkout/js/model/error-processor', + 'Magento_Customer/js/model/customer', + 'Magento_Checkout/js/model/full-screen-loader' + ], + function ($, quote, urlBuilder, storage, errorProcessor, customer, fullScreenLoader) { + 'use strict'; + + return function (messageContainer) { + var serviceUrl, + payload, + method = 'put', + paymentData = quote.paymentMethod(); + + /** + * Checkout for guest and registered customer. + */ + if (!customer.isLoggedIn()) { + serviceUrl = urlBuilder.createUrl('/guest-carts/:cartId/set-payment-information', { + cartId: quote.getQuoteId() + }); + payload = { + cartId: quote.getQuoteId(), + email: quote.guestEmail, + paymentMethod: paymentData + }; + method = 'post'; + } else { + serviceUrl = urlBuilder.createUrl('/carts/mine/selected-payment-method', {}); + payload = { + cartId: quote.getQuoteId(), + method: paymentData + }; + } + fullScreenLoader.startLoader(); + + return storage[method]( + serviceUrl, JSON.stringify(payload) + ).fail( + function (response) { + errorProcessor.process(response, messageContainer); + fullScreenLoader.stopLoader(); + } + ); + }; + } +); \ No newline at end of file diff --git a/view/frontend/web/js/model/validate-selected-currency.js b/view/frontend/web/js/model/validate-selected-currency.js new file mode 100644 index 0000000..6c8d6b9 --- /dev/null +++ b/view/frontend/web/js/model/validate-selected-currency.js @@ -0,0 +1,28 @@ +define( + ['jquery'], + function ($) { + 'use strict'; + return { + getCode: function () { + return 'coin_payments'; + }, + /** + * @returns {boolean} + */ + validate: function () { + var valid = true; + + var selector = $("#" + this.getCode() + "_crypto_currency"); + + if (!selector.find('option:selected').val()) { + selector.addClass('mage-error'); + valid = false; + } else { + selector.removeClass('mage-error'); + } + + return valid; + } + } + } +); \ No newline at end of file diff --git a/view/frontend/web/js/view/payment/coin_payments.js b/view/frontend/web/js/view/payment/coin_payments.js new file mode 100644 index 0000000..45b950b --- /dev/null +++ b/view/frontend/web/js/view/payment/coin_payments.js @@ -0,0 +1,22 @@ +define( + [ + 'uiComponent', + 'Magento_Checkout/js/model/payment/renderer-list' + ], + function ( + Component, + rendererList + ) { + 'use strict'; + + console.log('method-renderer/coin-method'); + + rendererList.push( + { + type: 'coin_payments', + component: 'Coinpayments_CoinPayments/js/view/payment/method-renderer/coin-method' + } + ); + return Component.extend({}); + } +); \ No newline at end of file diff --git a/view/frontend/web/js/view/payment/method-renderer/coin-method.js b/view/frontend/web/js/view/payment/method-renderer/coin-method.js new file mode 100644 index 0000000..4cf9476 --- /dev/null +++ b/view/frontend/web/js/view/payment/method-renderer/coin-method.js @@ -0,0 +1,275 @@ +define( + [ + 'ko', + 'Magento_Checkout/js/view/payment/default', + 'Magento_Checkout/js/model/quote', + 'jquery', + 'Magento_Checkout/js/action/place-order', + 'Magento_Checkout/js/action/select-payment-method', + 'Magento_Customer/js/model/customer', + 'Magento_Checkout/js/checkout-data', + 'Magento_Checkout/js/model/payment/additional-validators', + 'mage/url', + 'Magento_Checkout/js/model/full-screen-loader', + 'Magento_Checkout/js/model/error-processor', + 'Magento_Checkout/js/model/totals', + ], + function (ko, + Component, + quote, + $, + placeOrderAction, + selectPaymentMethodAction, + customer, + checkoutData, + additionalValidators, + url, + fullScreenLoader, + errorProcessor, + totals + ) { + 'use strict'; + + window.fullScreenLoader = fullScreenLoader; + + return Component.extend({ + defaults: { + template: 'Coinpayments_CoinPayments/payment/coin_payment' + }, + /** + * @returns {string} + */ + getCode: function () { + return 'coin_payments'; + }, + afterPlaceOrder: function () { + this.createInvoice( + window.checkoutConfig.payment.coinpayments.currentData.currency, + window.checkoutConfig.payment.coinpayments.currentData.total, + url.build('checkout/onepage/success') + ); + }, + getCaption: function () { + var caption = 'Select Coinpayments.Net currency'; + if (window.checkoutConfig.payment.coinpayments.currencies.error) { + caption = window.checkoutConfig.payment.coinpayments.currencies.error.name; + } + return caption; + }, + getCurrencies: function () { + if (!window.checkoutConfig.payment.coinpayments.currencies.error) { + return ko.observableArray(window.checkoutConfig.payment.coinpayments.currencies); + } + return []; + }, + /** + * + * @returns {boolean} + */ + selectPaymentMethod: function () { + selectPaymentMethodAction(this.getData()); + checkoutData.setSelectedPaymentMethod(this.item.method); + return true; + }, + /** + * + * @param data + * @param event + * @returns {boolean} + */ + placeOrder: function (data, event) { + + if (event) { + event.preventDefault(); + } + var self = this, + placeOrder, + emailValidationResult = customer.isLoggedIn(), + loginFormSelector = 'form[data-role=email-with-possible-login]'; + if (!customer.isLoggedIn()) { + $(loginFormSelector).validation(); + emailValidationResult = Boolean($(loginFormSelector + ' input[name=username]').valid()); + } + + if (emailValidationResult && this.validate() && additionalValidators.validate()) { + this.isPlaceOrderActionAllowed(false); + placeOrder = placeOrderAction(this.getData(), false, this.messageContainer); + + $.when(placeOrder).fail(function () { + self.isPlaceOrderActionAllowed(true); + }).done(this.afterPlaceOrder.bind(this)); + return true; + } + return false; + }, + getBaseGrandTotal: function () { + if (totals.totals()) { + var grandTotal = parseFloat(totals.totals()['grand_total']); + return grandTotal; + } + return window.checkoutConfig.totalsData.base_grand_total; + }, + getPaymentAcceptanceMarkSrc: function () { + return window.checkoutConfig.payment.coinpayments.logo; + }, + getCurrencyCode: function () { + return window.checkoutConfig.totalsData.quote_currency_code; + }, + /** + * + * @param element + * @param event + */ + getConvertedAmount: function (element, event) { + var elemToChange = $('#converted_amount_coinpayments'); + var coinCurrencyId = $(event.target).find('option:selected').val(); + var coinCurrencyCode = false; + var coinCurrencyPrecision = false; + + window.checkoutConfig.payment.coinpayments.currencies.forEach(function (val, index) { + if (val.body.currencyId == coinCurrencyId) { + coinCurrencyCode = val.body.symbol; + coinCurrencyPrecision = val.body.decimalPlaces; + } + }) + + if (coinCurrencyId) { + var url = '/rest/V1/coinpayments/currency/set'; + var data = { + coinCurrencyId: coinCurrencyId, + coinCurrencyPrecision: coinCurrencyPrecision, + }; + $.ajax({ + type: "POST", + encoding: 'UTF-8', + url: url, + showLoader: true, + contentType: "application/json", + data: JSON.stringify(data), + dataType: 'json', + success: function (result) { + result = JSON.parse(result); + var total = result.converted_amount; + total = total.toFixed(coinCurrencyPrecision); + elemToChange.val(total + ' ' + coinCurrencyCode); + window.checkoutConfig.payment.coinpayments.currentData = { + total: total, + currency: coinCurrencyCode + }; + }, + error: function (err) { + //TODO error logic + } + }); + } + }, + /** + * @returns {boolean} + */ + getAllowPlaceOrder: function () { + return this.getCode() === this.isChecked(); + }, + /** + * + * @param currency + * @param value + * @param redirect + */ + createInvoice: function (currency, value, redirect) { + + var url = '/rest/V1/coinpayments/invoice/create'; + + $.ajax({ + type: "POST", + url: url, + contentType: "application/json", + success: function (result) { + var invoiceId = result[0]; + + try { + window.popup = undefined; + showPaymentsPopup(invoiceId, redirect); + } catch (e) { + console.error(e); + } + + }, + error: function (err) { + console.log(error); + if (redirect) { + window.location.replace(redirect); + } + } + }); + } + }) + ; + } +) +; + + +function showPaymentsPopup(invoiceId, redirect) { + + window.fullScreenLoader.startLoader(); + var apiBaseUrl = "https://orion-api-testnet.starhermit.com"; + var id = "Checkout_Magento2_" + (Math.random() * 9007199254740991).toString(16); + var checkoutAppUrl = apiBaseUrl + "/checkout"; + + var popupWidth = 480 + 20; + var popupHeight = 620 + 60; + + var popupFeatures = { + width: popupWidth, + height: popupHeight, + status: 1, + toolbar: 0, + menubar: 0, + resizable: 1, + scrollbars: 1 + }; + var features = Object.keys(popupFeatures) + .map(function (key) { + return key + "=" + popupFeatures[key]; + }) + .join(","); + + window.popup = window.open(checkoutAppUrl, id, features); + + var interval = setInterval(function () { + if (!window.popup || window.popup.closed) { + clearInterval(interval); + window.fullScreenLoader.stopLoader(true); + window.popup = undefined; + if (redirect) { + window.location.replace(redirect); + } + } + }, 1000); + + window.addEventListener("message", function (event) { + switch (event.data.action) { + case "CoinPaymentsCheckoutAppInitialized": + var msg = { + action: "CoinPaymentsCheckoutAppInitializeInvoice", + data: { + apiBaseUrl: apiBaseUrl, + invoiceId: invoiceId + } + }; + window.popup.postMessage(msg, "*"); + return false; + case "CoinPaymentsPaymentButtonModalClosePressed": + case "CoinPaymentsCheckoutAppInvoiceCancelled": + case "CoinPaymentsCheckoutAppInvoiceConfirmed": + window.fullScreenLoader.stopLoader(true); + popup.close(); + if (redirect) { + window.location.replace(redirect); + } + return false; + } + }, true); + + window.popup; +} \ No newline at end of file diff --git a/view/frontend/web/js/view/payment/validate-selected-currency.js b/view/frontend/web/js/view/payment/validate-selected-currency.js new file mode 100644 index 0000000..cdb8c8c --- /dev/null +++ b/view/frontend/web/js/view/payment/validate-selected-currency.js @@ -0,0 +1,16 @@ +define( + [ + 'uiComponent', + 'Magento_Checkout/js/model/payment/additional-validators', + 'Coinpayments_CoinPayments/js/model/validate-selected-currency' + ], + function ( + Component, + additionalValidators, + validateSelectedCurrency + ) { + 'use strict'; + additionalValidators.registerValidator(validateSelectedCurrency); + return Component.extend({}); + } +); \ No newline at end of file diff --git a/view/frontend/web/template/payment/coin_payment.html b/view/frontend/web/template/payment/coin_payment.html new file mode 100644 index 0000000..d36cac6 --- /dev/null +++ b/view/frontend/web/template/payment/coin_payment.html @@ -0,0 +1,87 @@ +
+
+ + +
+
+ + + +
+
+
+
+ +
+
+
+
+ +
+
+
+
+ +
+
+
+
+
+
+
+
+
+ + + +
+
+
+ +
+
+
+
\ No newline at end of file From 53619ee1a85d235b5199de59d78e1dc1f8ddc2b6 Mon Sep 17 00:00:00 2001 From: letscode Date: Wed, 15 Jan 2020 13:19:36 +0200 Subject: [PATCH 02/57] Deletion of redundant functionality, preparation for testing. --- Api/CurrencyInterface.php | 30 ---- Api/InvoiceInterface.php | 9 - Api/WebHookInterface.php | 15 +- .../Adminhtml/Validation/Validation.php | 28 ++- Controller/Adminhtml/Validation/WebHook.php | 38 ++-- Controller/Checkout/Failure.php | 59 ++++++ Controller/Invoice/Create.php | 153 ++++++++++++++++ Controller/WebHooks/Notification.php | 94 ++++++++++ Model/{ApiProvider.php => AbstractApi.php} | 105 +++++++---- Model/Api/Currency.php | 161 ----------------- Model/Api/Invoice.php | 107 ----------- Model/Api/WebHook.php | 81 --------- Model/CoinPaymentsConfigProvider.php | 57 +----- Model/Invoice.php | 69 +++++++ Model/Methods/Coinpayments.php | 8 - Model/WebHook.php | 143 +++++++++++++++ etc/config.xml | 2 +- etc/di.xml | 1 - etc/webapi.xml | 22 --- view/frontend/layout/checkout_index_index.xml | 9 - .../layout/coinpayments_checkout_failure.xml | 19 ++ .../js/model/validate-selected-currency.js | 28 --- .../web/js/view/payment/coin_payments.js | 2 - .../payment/method-renderer/coin-method.js | 168 ++---------------- .../payment/validate-selected-currency.js | 16 -- .../web/template/payment/coin_payment.html | 50 ------ 26 files changed, 665 insertions(+), 809 deletions(-) delete mode 100644 Api/CurrencyInterface.php create mode 100644 Controller/Checkout/Failure.php create mode 100644 Controller/Invoice/Create.php create mode 100644 Controller/WebHooks/Notification.php rename Model/{ApiProvider.php => AbstractApi.php} (65%) delete mode 100644 Model/Api/Currency.php delete mode 100644 Model/Api/Invoice.php delete mode 100644 Model/Api/WebHook.php create mode 100644 Model/Invoice.php create mode 100644 Model/WebHook.php delete mode 100644 etc/webapi.xml create mode 100644 view/frontend/layout/coinpayments_checkout_failure.xml delete mode 100644 view/frontend/web/js/model/validate-selected-currency.js delete mode 100644 view/frontend/web/js/view/payment/validate-selected-currency.js diff --git a/Api/CurrencyInterface.php b/Api/CurrencyInterface.php deleted file mode 100644 index 0d0e648..0000000 --- a/Api/CurrencyInterface.php +++ /dev/null @@ -1,30 +0,0 @@ - 'notif-url', -// "notifications" => [ -// 2, -// 4 -// ], -// ]) -// ) -// ]; -// -// $equal = sprintf('%s%s%s%s', chr(239), chr(187), chr(191), implode('', $signatureData)) == $signatureString; -// -// $imploded = implode('', $signatureData); -// $signature = $this->webHookModel->generateHmac($signatureData, 'secret'); - $params = $this->getRequest()->getParams(); $response = []; @@ -58,8 +34,8 @@ public function execute() }, $webHooksList['items']); } - if (!in_array($this->webHookModel->getWebHookCallbackUrl(), $webHooksUrlsList)) { - $webHook = $this->webHookModel->createWebHook($client_id, $client_secret); + if (!in_array($this->getWebHookCallbackUrl(), $webHooksUrlsList)) { + $webHook = $this->webHookModel->createWebHook($client_id, $client_secret, $this->getWebHookCallbackUrl()); if (!empty($webHook)) { $response = [ 'success' => $webHook, @@ -93,4 +69,14 @@ public function execute() $result->setData($response); return $result; } + + + /** + * @return string + */ + protected function getWebHookCallbackUrl() + { +// return $this->urlBuilder->getUrl('coinpayments/webhooks/notification', ['_direct' => null]); + return 'http://34.95.25.102/'; // TODO delete test data + } } \ No newline at end of file diff --git a/Controller/Checkout/Failure.php b/Controller/Checkout/Failure.php new file mode 100644 index 0000000..4583dea --- /dev/null +++ b/Controller/Checkout/Failure.php @@ -0,0 +1,59 @@ +checkoutSession = $checkoutSession; + $this->orderFactory = $orderFactory; + $this->orderRepository = $orderRepository; + $this->resultPageFactory = $resultPageFactory; + $this->logger = $logger; + $this->cacheTypeList = $cacheTypeList; + $this->cacheFrontendPool = $cacheFrontendPool; + parent::__construct($context); + } + + + public function execute() + { + $lastOrderId = $this->getRealOrderId(); + $order = $this->orderRepository->get($lastOrderId); + $order->setStatus(Order::STATE_CANCELED)->setState(Order::STATE_CANCELED); + $this->orderRepository->save($order); + $this->logger->info('ORDER INFO: ' . $order->getStatus() . $order->getState()); + + return $this->resultPageFactory->create(); + } + + public function getRealOrderId() + { + $lastorderId = $this->checkoutSession->getLastOrderId(); + + return $lastorderId; + } + +} diff --git a/Controller/Invoice/Create.php b/Controller/Invoice/Create.php new file mode 100644 index 0000000..5e2a61f --- /dev/null +++ b/Controller/Invoice/Create.php @@ -0,0 +1,153 @@ +urlBuilder = $urlBuilder; + $this->invoiceModel = $invoice; + $this->scopeConfig = $scopeConfig; + $this->checkoutSession = $checkoutSession; + $this->jsonResultFactory = $jsonResultFactory; + parent::__construct($context); + } + + public function execute() + { + + + $response = [ + 'successUrl' => $this->urlBuilder->getUrl('checkout/onepage/success'), + 'cancelUrl' => $this->urlBuilder->getUrl('coinpayments/checkout/failure'), + ]; + + $order = $this->checkoutSession->getLastRealOrder(); + + if ($order->getIncrementId()) { + + $coinInvoiceCacheId = Invoice::INVOICE_CACHE_PREFIX . $order->getIncrementId(); + $coinInvoiceId = $this->checkoutSession->{'get' . $coinInvoiceCacheId}(); + + if (empty($coinInvoiceId)) { + + $currencyCode = $order->getBaseCurrencyCode(); + $coinCurrency = $this->getCoinCurrency($currencyCode); + $amount = number_format($order->getGrandTotal(), $coinCurrency['decimalPlaces'], '', ''); + + if (!empty($coinCurrency)) { + + $clientId = $this->scopeConfig->getValue('payment/coin_payments' . DIRECTORY_SEPARATOR . 'client_id'); + $clientSecret = $this->scopeConfig->getValue('payment/coin_payments' . DIRECTORY_SEPARATOR . 'client_secret'); + $merchantWebHooks = $this->scopeConfig->getValue('payment/coin_payments' . DIRECTORY_SEPARATOR . 'webhooks'); + + if ($merchantWebHooks) { + $invoiceData = $this->invoiceModel->createMerchant($clientId, $clientSecret, $coinCurrency['id'], $order->getIncrementId(), intval($amount)); + } else { + $invoiceData = $this->invoiceModel->createSimple($clientId, $coinCurrency['id'], $order->getIncrementId(), intval($amount)); + } + + if (!empty($invoiceData['id'])) { + $this->checkoutSession->{'set' . $coinInvoiceCacheId}($invoiceData['id']); + $coinInvoiceId = $invoiceData['id']; + } + } + + } + + if (!empty($coinInvoiceId)) { + $response['coinInvoiceId'] = $coinInvoiceId; + $response['redirectUrl'] = $this->getCoinCheckoutRedirectUrl($coinInvoiceId, $response['successUrl'], $response['cancelUrl']); + } + } + + $result = $this->jsonResultFactory->create(); + $result->setData($response); + return $result; + } + + /** + * @param $coinInvoiceId + * @param $successUrl + * @param $cancelUrl + * @return string + */ + protected function getCoinCheckoutRedirectUrl($coinInvoiceId, $successUrl, $cancelUrl) + { + return sprintf('%s/checkout/?invoice-id=%s&success-url=%s&cancel-url=%s', $this->invoiceModel->getBaseConfig('api_url'), $coinInvoiceId, $successUrl, $cancelUrl); + } + + /** + * @param string $name + * @return array|mixed + */ + protected function getCoinCurrency(string $name) + { + + $params = [ + 'types' => Invoice::FIAT_TYPE, + 'q' => $name, + ]; + $items = []; + + $listData = $this->invoiceModel->getCurrencies($params); + if (!empty($listData['items'])) { + $items = $listData['items']; + } + + return array_shift($items); + } + + public function createCsrfValidationException(RequestInterface $request): ?InvalidRequestException + { + return null; + } + + public function validateForCsrf(RequestInterface $request): ?bool + { + return true; + } + +} diff --git a/Controller/WebHooks/Notification.php b/Controller/WebHooks/Notification.php new file mode 100644 index 0000000..c5f7b0e --- /dev/null +++ b/Controller/WebHooks/Notification.php @@ -0,0 +1,94 @@ +urlBuilder = $urlBuilder; + $this->webHookModel = $webHookModel; + $this->scopeConfig = $scopeConfig; + parent::__construct($context); + } + + + public function execute() + { + + $content = $this->getRequest()->getContent(); + $signature = $this->getRequest()->getHeaders()->get('X-CoinPayments-Signature')->getFieldValue(); + + if ($this->checkDataSignature($signature, $content)) { + $requestData = json_decode($content, true); + + // TODO delete test data + $requestData['invoice']['invoiceId'] = '000000019'; + $requestData['status'] = 'Completed'; + + if ($requestData['status'] == 'Completed') { + $this->webHookModel->completeOrder($requestData); + } elseif ($requestData['status'] == 'Expired') { + $this->webHookModel->cancelOrder($requestData); + } + } + + } + + /** + * @param $signature + * @param $content + * @return bool + */ + protected function checkDataSignature($signature, $content) + { + + $requestUrl = $this->urlBuilder->getCurrentUrl(); + $requestUrl = 'http://34.95.25.102/'; // TODO delete test data + + $clientSecret = $this->scopeConfig->getValue('payment/coin_payments' . DIRECTORY_SEPARATOR . 'client_secret'); + $encodedPure = $this->webHookModel->generateHmac([$requestUrl, $content], $clientSecret); + return $signature == $encodedPure; + } + + public function createCsrfValidationException(RequestInterface $request): ?InvalidRequestException + { + return null; + } + + public function validateForCsrf(RequestInterface $request): ?bool + { + return true; + } +} diff --git a/Model/ApiProvider.php b/Model/AbstractApi.php similarity index 65% rename from Model/ApiProvider.php rename to Model/AbstractApi.php index 0598db3..15d6e53 100644 --- a/Model/ApiProvider.php +++ b/Model/AbstractApi.php @@ -2,16 +2,18 @@ namespace Coinpayments\CoinPayments\Model; -use Magento\Checkout\Model\Session; -use \Magento\Checkout\Model\Cart; +use Coinpayments\CoinPayments\Model\Methods\Coinpayments; use Magento\Framework\App\Config\ScopeConfigInterface; use Magento\Framework\HTTP\Client\Curl; -use Magento\Framework\Url; +use Magento\Sales\Model\Order; -class ApiProvider +abstract class AbstractApi { - /* @var Session */ - protected $checkoutSession; + + const FIAT_TYPE = 'fiat'; + + const INVOICE_CACHE_PREFIX = 'CoinpaymentsInvoice'; + /* @var Curl */ protected $curl; @@ -20,45 +22,48 @@ class ApiProvider /* @var array */ protected $defaultHeaders = [ - 'Content-Type' => 'application/json' + 'Content-Type' => 'application/json;' ]; - /* @var Cart */ - protected $cart; - /** - * @var Url + * @var mixed */ - protected $urlBuilder; - + protected $baseConf; /** - * @var \Magento\Framework\Controller\Result\JsonFactory + * @var Order */ - protected $jsonResultFactory; - + protected $orderModel; /** - * @var mixed + * @var Coinpayments */ - protected $baseConf; + protected $coinPaymentsMethod; + /** + * @var Order\Payment\Transaction\BuilderInterface + */ + protected $transactionBuilder; public function __construct( - Session $checkoutSession, - Cart $cart, Curl $curl, ScopeConfigInterface $scopeConfig, - \Magento\Framework\Controller\Result\JsonFactory $jsonResultFactory, - Url $urlBuilder + Order $orderModel, + Coinpayments $coinPaymentsMethod, + Order\Payment\Transaction\BuilderInterface $transactionBuilder ) { - $this->cart = $cart; - $this->checkoutSession = $checkoutSession; $this->curl = $curl; $this->scopeConfig = $scopeConfig; - $this->urlBuilder = $urlBuilder; - $this->jsonResultFactory = $jsonResultFactory; + $this->orderModel = $orderModel; + $this->coinPaymentsMethod = $coinPaymentsMethod; + $this->transactionBuilder = $transactionBuilder; $this->baseConf = $this->getBaseConfig(); } + /** + * @param $requestParams + * @param array $requestData + * @return array + * @throws \Exception + */ public function getRequestHeaders($requestParams, $requestData = []) { @@ -78,7 +83,7 @@ public function getRequestHeaders($requestParams, $requestData = []) return [ 'X-CoinPayments-Client' => $requestParams['clientId'], 'X-CoinPayments-Timestamp' => $date->format('c'), - 'X-CoinPayments-Signature' => $this->generateHmac($headerData, $requestParams['clientSecret']), + 'X-CoinPayments-Signature' => $this->generateHmac($headerData, $requestParams['clientSecret'], true), ]; } @@ -100,7 +105,7 @@ public function sendPostRequest($action, $headers, $requestData) $this->curl->setOption(CURLOPT_SSL_VERIFYPEER, 0); $requestUrl = $this->getApiUrl($action); - $this->curl->post($requestUrl, $requestData); + $this->curl->post($requestUrl, json_encode($requestData)); return json_decode($this->curl->getBody(), true); } @@ -137,38 +142,60 @@ public function sendGetRequest($action, $headers, $requestData = []) */ public function getApiUrl($action) { - return sprintf('%s/v%s/%s', $this->baseConf['api_url'], $this->baseConf['api_version'], $action); + return sprintf('%s/api/v%s/%s', 'http://192.168.80.205:18003', $this->baseConf['api_version'], $action); +// return sprintf('%s/v%s/%s', $this->baseConf['api_url'], $this->baseConf['api_version'], $action); } /** * @param $requestData * @param null $secretKey + * @param bool $useAdditional * @return string */ - public function generateHmac($requestData, $secretKey = null) + public function generateHmac($requestData, $secretKey = null, $useAdditional = false) { - return base64_encode(hash_hmac('sha256', chr(239) . implode('', $requestData), $secretKey, true)); + if ($useAdditional) { + $requestData = array_merge([chr(239), chr(187), chr(191)], $requestData); + } + + return base64_encode( + hash_hmac( + 'sha256', + implode('', $requestData), + $secretKey, + true + ) + ); } /** - * @param $base - * @param $field + * @param array $params * @return mixed */ - protected function getConfig($base, $field = false) + public function getCurrencies($params = []) { - if ($field) { - return $this->scopeConfig->getValue($base . DIRECTORY_SEPARATOR . $field); - } - return $this->scopeConfig->getValue($base); + return $this->sendGetRequest('currencies', [], $params); } /** * @param null $field * @return mixed */ - protected function getBaseConfig($field = null) + public function getBaseConfig($field = null) { return $this->getConfig('coinpayment/conf', $field); } + + /** + * @param $base + * @param $field + * @return mixed + */ + protected function getConfig($base, $field = false) + { + if ($field) { + return $this->scopeConfig->getValue($base . DIRECTORY_SEPARATOR . $field); + } + return $this->scopeConfig->getValue($base); + } } diff --git a/Model/Api/Currency.php b/Model/Api/Currency.php deleted file mode 100644 index 5aadb3c..0000000 --- a/Model/Api/Currency.php +++ /dev/null @@ -1,161 +0,0 @@ -cart->getQuote(); - $currencyCode = $quote->getBaseCurrencyCode(); - $amount = $quote->getBaseGrandTotal(); - $response = []; - - if ($coinShopCurrency = $this->getFiatCurrency($currencyCode)) { - $currencyId = $coinShopCurrency['currencyId']; - $convertedAmount = $this->convertCurrencies($currencyId, $coinCurrencyId, $amount, $coinCurrencyPrecision); - } - - if (!empty($convertedAmount)) { - - $this->checkoutSession->setCoinpaymentsCurrency($coinCurrencyId); - $this->checkoutSession->setCoinpaymentsAmount($convertedAmount['value']); - - $response = [ - 'converted_amount' => $convertedAmount['displayValue'], - ]; - } - -// $result = $this->jsonResultFactory->create(); -// $result->setData($response); - return json_encode($response); - } - - - /** - * @return array|mixed - */ - public function getAllCryptoCurrencies() - { - - $currencies = []; - - $listData = $this->getCryptoCurrencies(); - - if (!empty($listData['items'])) { - $currencies = $listData['items']; - while (!empty($listData['next_page_params']) && $listData = $this->getCryptoCurrencies($listData['next_page_params'])) { - if (!empty($listData['items'])) { - $currencies = array_merge($currencies, $listData['items']); - } - } - } - return $currencies; - } - - - /** - * @param array $params - * @return array|mixed - */ - public function getCryptoCurrencies(array $params = []) - { - - $params = array_merge($params, [ - 'types' => self::CRYPTO_TYPE, - 'capabilities' => self::PAYMENT_CAPABILITY, - ]); - - $listData = $this->getCurrencies($params); - if (!empty($listData['paging']['next'])) { - $nextPage = parse_url($listData['paging']['next']); - $nextPage['query_params'] = Psr7\parse_query($nextPage['query']); - $listData['next_page_params'] = $nextPage['query_params']; - } - - return $listData; - } - - /** - * @param array $params - * @return array|mixed - */ - public function getFiatCurrency(string $name) - { - - $params = [ - 'types' => self::FIAT_TYPE, - 'q' => $name, - ]; - $items = []; - - $listData = $this->getCurrencies($params); - if (!empty($listData['items'])) { - $items = $listData['items']; - } - - return array_shift($items); - } - - - /** - * @param array $params - * @return mixed - */ - public function getCurrencies($params = []) - { - return $this->sendGetRequest('currencies', [], $params); - } - - /** - * @param int $currencyId - * @param $coinCurrencyId - * @param $amount - * @return bool - */ - public function convertCurrencies($currencyId, $coinCurrencyId, $amount, $precision) - { - $rate = $this->getCurrencyRate($currencyId, $coinCurrencyId); - - $data['displayValue'] = $amount * $rate; - $data['value'] = number_format($amount * $rate, $precision, '', ''); - - return $data; - } - - /** - * @param $currencyId - * @param $coinCurrencyId - * @return bool|mixed - */ - public function getCurrencyRate($currencyId, $coinCurrencyId) - { - - $rate = false; - - $params = [ - 'from' => $currencyId, - 'to' => $coinCurrencyId, - ]; - - $listData = $this->sendGetRequest('rates', [], $params); - - if (!empty($listData['items'])) { - $rateData = array_shift($listData['items']); - $rate = $rateData['rate']; - } - - return $rate; - } - -} \ No newline at end of file diff --git a/Model/Api/Invoice.php b/Model/Api/Invoice.php deleted file mode 100644 index 1dca75f..0000000 --- a/Model/Api/Invoice.php +++ /dev/null @@ -1,107 +0,0 @@ -checkoutSession->getCoinpaymentsCurrency(); - $amount = $this->checkoutSession->getCoinpaymentsAmount(); - $order = $this->checkoutSession->getLastRealOrder(); - - $clientId = $this->scopeConfig->getValue('payment/coin_payments' . DIRECTORY_SEPARATOR . 'client_id'); - $clientSecret = $this->scopeConfig->getValue('payment/coin_payments' . DIRECTORY_SEPARATOR . 'client_secret'); - $merchantWebHooks = $this->scopeConfig->getValue('payment/coin_payments' . DIRECTORY_SEPARATOR . 'webhooks'); - - if ($merchantWebHooks) { - $invoiceData = $this->createMerchant($clientId, $clientSecret, $currencyId, $order->getIncrementId(), intval($amount)); - } else { - $invoiceData = $this->createSimple($clientId, $currencyId, $order->getIncrementId(), intval($amount)); - } - - $response = []; - - if (!empty($invoiceData['id'])) { - $this->checkoutSession->setCoinpaymentsInvoiceId($invoiceData['id']); - $response = ['coinInvoiceId' => $invoiceData['id']]; - } - - return $response; - } - - /** - * @return boolean - */ - public function updateInvoice() - { - $response = false; - - return $response; - } - - /** - * @param $clientId - * @param $clientSecret - * @param $currencyId - * @param $invoiceId - * @param $amount - * @return mixed - * @throws \Exception - */ - public function createMerchant($clientId, $clientSecret, $currencyId, $invoiceId, $amount) - { - $requestData = [ - "invoiceId" => $invoiceId, - "amount" => [ - "currencyId" => $currencyId, - "value" => $amount - ], - ]; - - $action = sprintf('merchant/invoices', $clientId); - - $requestParams = [ - 'method' => 'POST', - 'action' => $action, - 'clientId' => $clientId, - 'clientSecret' => $clientSecret, - ]; - - $headers = $this->getRequestHeaders($requestParams, $requestData); - - return $this->sendPostRequest($action, $headers, $requestData); - } - - /** - * @param $clientId - * @param int $currencyId - * @param string $invoiceId - * @param int $amount - * @return mixed - */ - public function createSimple($clientId, $currencyId = 1, $invoiceId = 'Validate invoice', $amount = 1) - { - - $action = 'invoices'; - - $requestParams = [ - 'clientId' => $clientId, - 'invoiceId' => $invoiceId, - 'amount' => [ - 'currencyId' => $currencyId, - 'value' => $amount - ] - ]; - - return $this->sendPostRequest($action, [], $requestParams); - } -} \ No newline at end of file diff --git a/Model/Api/WebHook.php b/Model/Api/WebHook.php deleted file mode 100644 index 1970857..0000000 --- a/Model/Api/WebHook.php +++ /dev/null @@ -1,81 +0,0 @@ -urlBuilder->getUrl('rest/V1/coinpayments/invoice/notification', ['_direct' => null]); - } - - public function createWebHook($clientId, $clientSecret) - { - - return [ // TODO delete test data - "id" => "testId", - "notificationsUrl" => $this->getWebHookCallbackUrl(), - "notifications" => [ - "invoiceCreated", - ] - ]; - - $action = sprintf('merchant/clients/%s/webhooks', $clientId); - - $requestParams = [ - 'method' => 'POST', - 'action' => $action, - 'clientId' => $clientId, - 'clientSecret' => $clientSecret, - ]; - - $requestData = [ - "notificationsUrl" => $this->getWebHookCallbackUrl(), - "notifications" => [ - "invoiceCreated", - "invoicePaymentsReceived", - "invoicePaymentsConfirmed", - "invoiceCompleted", - "invoiceExpired", - ], - ]; - - $headers = $this->getRequestHeaders($requestParams, $requestData); - return $this->sendPostRequest($action, $headers, $requestData); - } - - public function getList($clientId, $clientSecret) - { - - return [ // TODO delete test data - "items" => [ - [ - "id" => "testId", - "notificationsUrl" => "https://magento2.test/rest/V1/coinpayments/invoice/notification/", - "notificationsUrl" => "https://magento2.test/rest/V1/coinpayments/", - "notifications" => [ - "invoiceCreated", - ] - ] - ] - ]; - - $action = sprintf('merchant/clients/%s/webhooks', $clientId); - $requestParams = [ - 'method' => 'GET', - 'action' => $action, - 'clientId' => $clientId, - 'clientSecret' => $clientSecret, - ]; - - $headers = $this->getRequestHeaders($requestParams); - - return $this->sendGetRequest($action, $headers); - } - - -} \ No newline at end of file diff --git a/Model/CoinPaymentsConfigProvider.php b/Model/CoinPaymentsConfigProvider.php index 2574cb9..ddcf514 100644 --- a/Model/CoinPaymentsConfigProvider.php +++ b/Model/CoinPaymentsConfigProvider.php @@ -6,27 +6,14 @@ use Magento\Framework\HTTP\Client\Curl; use Magento\Framework\App\Config\ScopeConfigInterface; use Magento\Framework\View\Asset\Repository; -use Coinpayments\CoinPayments\Model\Api\Currency as CurrencyApi; class CoinPaymentsConfigProvider implements ConfigProviderInterface { - /** - * @var Curl - */ - protected $curl; - /** - * @var ScopeConfigInterface - */ - protected $_scopeConfig; /** * @var Repository */ protected $_assetRepo; - /** - * @var CurrencyApi - */ - protected $_apiCurrency; /** * @var string */ @@ -34,17 +21,11 @@ class CoinPaymentsConfigProvider implements ConfigProviderInterface /** * CoinPaymentsConfigProvider constructor. - * @param Curl $curl - * @param ScopeConfigInterface $scopeConfig * @param Repository $assetRepo - * @param CurrencyApi $apiCurrency */ - public function __construct(Curl $curl, ScopeConfigInterface $scopeConfig, Repository $assetRepo, CurrencyApi $apiCurrency) + public function __construct(Curl $curl, ScopeConfigInterface $scopeConfig, Repository $assetRepo) { - $this->curl = $curl; - $this->_scopeConfig = $scopeConfig; $this->_assetRepo = $assetRepo; - $this->_apiCurrency = $apiCurrency; } /** @@ -52,48 +33,12 @@ public function __construct(Curl $curl, ScopeConfigInterface $scopeConfig, Repos */ public function getConfig() { - $currencies = $this->getCryptoCurrencies(); - return [ 'payment' => [ 'coinpayments' => [ - 'currencies' => $currencies, 'logo' => $this->_assetRepo->getUrl('Coinpayments_CoinPayments::images/logo.png'), ] ] ]; } - - /** - * @return array - */ - public function getCryptoCurrencies() - { - $currencies = []; - - $apiCurrencies = $this->_apiCurrency->getAllCryptoCurrencies(); - - if (!empty($apiCurrencies)) { - foreach ($apiCurrencies as $key => $item) { - $elm = [ - 'value' => $item['currencyId'], - 'name' => $item['name'], - 'body' => $item, - ]; - $currencies[] = $elm; - } - } else { - $currencies = [ - 'error' => [ - 'name' => 'Cannot load Coinpayments.Net currencies', - 'value' => 'error', - 'attr' => [ - 'disabled' => true, - ], - ], - ]; - } - - return $currencies; - } } diff --git a/Model/Invoice.php b/Model/Invoice.php new file mode 100644 index 0000000..416030b --- /dev/null +++ b/Model/Invoice.php @@ -0,0 +1,69 @@ + $invoiceId, + "amount" => [ + "currencyId" => $currencyId, + "value" => $amount + ], + ]; + + $action = 'merchant/invoices'; + + $requestParams = [ + 'method' => 'POST', + 'action' => $action, + 'clientId' => $clientId, + 'clientSecret' => $clientSecret, + ]; + + $headers = $this->getRequestHeaders($requestParams, $requestData); + + return $this->sendPostRequest($action, $headers, $requestData); + } + + /** + * @param $clientId + * @param int $currencyId + * @param string $invoiceId + * @param int $amount + * @return mixed + */ + public function createSimple($clientId, $currencyId = 1, $invoiceId = 'Validate invoice', $amount = 1) + { + + $action = 'invoices'; + + $requestParams = [ + 'clientId' => $clientId, + 'invoiceId' => $invoiceId, + 'amount' => [ + 'currencyId' => $currencyId, + 'value' => $amount + ] + ]; + + return $this->sendPostRequest($action, [], $requestParams); + } + + +} \ No newline at end of file diff --git a/Model/Methods/Coinpayments.php b/Model/Methods/Coinpayments.php index ccbfce1..6513256 100644 --- a/Model/Methods/Coinpayments.php +++ b/Model/Methods/Coinpayments.php @@ -28,14 +28,6 @@ class Coinpayments extends AbstractMethod */ protected $_code = self::CODE; - - /* Uncomment if need using blocks - - protected $_formBlockType = 'Coinpayments\CoinPayments\Block\Form\Coinpayments'; - - protected $_infoBlockType = 'Coinpayments\CoinPayments\Block\Info';*/ - - /** * @param CartInterface|null $quote * @return bool diff --git a/Model/WebHook.php b/Model/WebHook.php new file mode 100644 index 0000000..27e028f --- /dev/null +++ b/Model/WebHook.php @@ -0,0 +1,143 @@ + 'POST', + 'action' => $action, + 'clientId' => $clientId, + 'clientSecret' => $clientSecret, + ]; + + $requestData = [ + "notificationsUrl" => $webHookCallbackUrl, + "notifications" => [ + "invoiceCreated", + "invoicePaymentsReceived", + "invoicePaymentsConfirmed", + "invoiceCompleted", + "invoiceExpired", + ], + ]; + + $headers = $this->getRequestHeaders($requestParams, $requestData); + return $this->sendPostRequest($action, $headers, $requestData); + } + + /** + * @param $clientId + * @param $clientSecret + * @return mixed + * @throws \Exception + */ + public function getList($clientId, $clientSecret) + { + + $action = sprintf('merchant/clients/%s/webhooks', $clientId); + $requestParams = [ + 'method' => 'GET', + 'action' => $action, + 'clientId' => $clientId, + 'clientSecret' => $clientSecret, + ]; + + $headers = $this->getRequestHeaders($requestParams); + + return $this->sendGetRequest($action, $headers); + } + + /** + * @param $requestData + * @throws \Exception + */ + public function cancelOrder($requestData) + { + $order = $this->orderModel->loadByIncrementId($requestData['invoice']['invoiceId']); + if ($order->getId()) { + $order + ->setStatus(Order::STATE_CANCELED) + ->setState(Order::STATE_CANCELED) + ->save(); + } + } + + /** + * @param $order + * @param $requestData + * @return bool + */ + public function completeOrder($requestData) + { + $order = $this->orderModel->loadByIncrementId($requestData['invoice']['invoiceId']); + if ($order->getId()) { + $order->setTotalPaid($requestData['invoice']['amount']['displayValue']); + + $order + ->setState($this->scopeConfig->getValue('payment/coin_payments' . DIRECTORY_SEPARATOR . 'status_order_paid')) + ->setStatus($this->scopeConfig->getValue('payment/coin_payments' . DIRECTORY_SEPARATOR . 'status_order_paid')); + + $str = 'CoinPayments.net Payment Status: ' . $requestData['status'] . ' ' . $requestData['status'] . '
'; + + $str .= 'Transaction ID: ' . $requestData['invoice']['invoiceId'] . '
'; + $str .= 'Received Amount: ' . sprintf('%s %s', $requestData['invoice']['amount']['displayValue'], $requestData['invoice']['currency']['symbol']); + + $order->addStatusToHistory($order->getStatus(), $str); + + + try { + $payment = $order->getPayment(); + $payment->setMethod($this->coinPaymentsMethod->getCode()); + $payment->setLastTransId($requestData['invoice']['invoiceId']); + $payment->setTransactionId($requestData['invoice']['invoiceId']); + $payment->setAdditionalInformation([Order\Payment\Transaction::RAW_DETAILS => (array)$requestData]); + + $formatedPrice = $order->getBaseCurrency()->formatTxt($order->getGrandTotal()); + + /* @var Order\Payment\Transaction\BuilderInterface */ + $transaction = $this->transactionBuilder + ->setPayment($payment) + ->setOrder($order) + ->setTransactionId($requestData['invoice']['invoiceId']) + ->setAdditionalInformation([Order\Payment\Transaction::RAW_DETAILS => (array)$requestData]) + ->setFailSafe(true) + ->build(Order\Payment\Transaction::TYPE_CAPTURE); + + // Add transaction to payment + $payment->addTransactionCommentsToOrder($transaction, __('The authorized amount is %1.', $formatedPrice)); + $payment->setParentTransactionId(null); + + // Save payment, transaction and order + $payment->save(); + $order->save(); + $transaction->save(); + return $transaction->getTransactionId(); + + } catch (\Exception $e) { + + } + + } + + return true; + } + + +} \ No newline at end of file diff --git a/etc/config.xml b/etc/config.xml index ed6f3b1..2abb88a 100644 --- a/etc/config.xml +++ b/etc/config.xml @@ -13,7 +13,7 @@ - https://orion-api-testnet.starhermit.com/api + https://orion-api-testnet.starhermit.com 1 diff --git a/etc/di.xml b/etc/di.xml index c1e61f3..0444908 100644 --- a/etc/di.xml +++ b/etc/di.xml @@ -1,6 +1,5 @@ - \ No newline at end of file diff --git a/etc/webapi.xml b/etc/webapi.xml deleted file mode 100644 index c6bb512..0000000 --- a/etc/webapi.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/view/frontend/layout/checkout_index_index.xml b/view/frontend/layout/checkout_index_index.xml index fe26359..213bf9d 100644 --- a/view/frontend/layout/checkout_index_index.xml +++ b/view/frontend/layout/checkout_index_index.xml @@ -15,15 +15,6 @@ - - - - - Coinpayments_CoinPayments/js/view/payment/validate-selected-currency - - - - diff --git a/view/frontend/layout/coinpayments_checkout_failure.xml b/view/frontend/layout/coinpayments_checkout_failure.xml new file mode 100644 index 0000000..71e3b5b --- /dev/null +++ b/view/frontend/layout/coinpayments_checkout_failure.xml @@ -0,0 +1,19 @@ + + + + + + + We received your order! + + + + + + + diff --git a/view/frontend/web/js/model/validate-selected-currency.js b/view/frontend/web/js/model/validate-selected-currency.js deleted file mode 100644 index 6c8d6b9..0000000 --- a/view/frontend/web/js/model/validate-selected-currency.js +++ /dev/null @@ -1,28 +0,0 @@ -define( - ['jquery'], - function ($) { - 'use strict'; - return { - getCode: function () { - return 'coin_payments'; - }, - /** - * @returns {boolean} - */ - validate: function () { - var valid = true; - - var selector = $("#" + this.getCode() + "_crypto_currency"); - - if (!selector.find('option:selected').val()) { - selector.addClass('mage-error'); - valid = false; - } else { - selector.removeClass('mage-error'); - } - - return valid; - } - } - } -); \ No newline at end of file diff --git a/view/frontend/web/js/view/payment/coin_payments.js b/view/frontend/web/js/view/payment/coin_payments.js index 45b950b..0d2585d 100644 --- a/view/frontend/web/js/view/payment/coin_payments.js +++ b/view/frontend/web/js/view/payment/coin_payments.js @@ -9,8 +9,6 @@ define( ) { 'use strict'; - console.log('method-renderer/coin-method'); - rendererList.push( { type: 'coin_payments', diff --git a/view/frontend/web/js/view/payment/method-renderer/coin-method.js b/view/frontend/web/js/view/payment/method-renderer/coin-method.js index 4cf9476..2e4d0b5 100644 --- a/view/frontend/web/js/view/payment/method-renderer/coin-method.js +++ b/view/frontend/web/js/view/payment/method-renderer/coin-method.js @@ -31,8 +31,9 @@ define( 'use strict'; window.fullScreenLoader = fullScreenLoader; + window.url = url; - return Component.extend({ + var a = Component.extend({ defaults: { template: 'Coinpayments_CoinPayments/payment/coin_payment' }, @@ -43,24 +44,7 @@ define( return 'coin_payments'; }, afterPlaceOrder: function () { - this.createInvoice( - window.checkoutConfig.payment.coinpayments.currentData.currency, - window.checkoutConfig.payment.coinpayments.currentData.total, - url.build('checkout/onepage/success') - ); - }, - getCaption: function () { - var caption = 'Select Coinpayments.Net currency'; - if (window.checkoutConfig.payment.coinpayments.currencies.error) { - caption = window.checkoutConfig.payment.coinpayments.currencies.error.name; - } - return caption; - }, - getCurrencies: function () { - if (!window.checkoutConfig.payment.coinpayments.currencies.error) { - return ko.observableArray(window.checkoutConfig.payment.coinpayments.currencies); - } - return []; + this.createInvoice(); }, /** * @@ -112,57 +96,6 @@ define( getPaymentAcceptanceMarkSrc: function () { return window.checkoutConfig.payment.coinpayments.logo; }, - getCurrencyCode: function () { - return window.checkoutConfig.totalsData.quote_currency_code; - }, - /** - * - * @param element - * @param event - */ - getConvertedAmount: function (element, event) { - var elemToChange = $('#converted_amount_coinpayments'); - var coinCurrencyId = $(event.target).find('option:selected').val(); - var coinCurrencyCode = false; - var coinCurrencyPrecision = false; - - window.checkoutConfig.payment.coinpayments.currencies.forEach(function (val, index) { - if (val.body.currencyId == coinCurrencyId) { - coinCurrencyCode = val.body.symbol; - coinCurrencyPrecision = val.body.decimalPlaces; - } - }) - - if (coinCurrencyId) { - var url = '/rest/V1/coinpayments/currency/set'; - var data = { - coinCurrencyId: coinCurrencyId, - coinCurrencyPrecision: coinCurrencyPrecision, - }; - $.ajax({ - type: "POST", - encoding: 'UTF-8', - url: url, - showLoader: true, - contentType: "application/json", - data: JSON.stringify(data), - dataType: 'json', - success: function (result) { - result = JSON.parse(result); - var total = result.converted_amount; - total = total.toFixed(coinCurrencyPrecision); - elemToChange.val(total + ' ' + coinCurrencyCode); - window.checkoutConfig.payment.coinpayments.currentData = { - total: total, - currency: coinCurrencyCode - }; - }, - error: function (err) { - //TODO error logic - } - }); - } - }, /** * @returns {boolean} */ @@ -175,24 +108,20 @@ define( * @param value * @param redirect */ - createInvoice: function (currency, value, redirect) { - - var url = '/rest/V1/coinpayments/invoice/create'; - + createInvoice: function () { $.ajax({ type: "POST", - url: url, + dataType: 'json', contentType: "application/json", + url: url.build('coinpayments/invoice/create'), success: function (result) { - var invoiceId = result[0]; - - try { - window.popup = undefined; - showPaymentsPopup(invoiceId, redirect); - } catch (e) { - console.error(e); + result = JSON.parse(result); + console.log(result) + if (result.coinInvoiceId) { + window.location.href = result.redirectUrl; + } else { + window.location.href = result.cancelUrl; } - }, error: function (err) { console.log(error); @@ -202,74 +131,9 @@ define( } }); } - }) - ; + }); + window.a = a; + return a; } ) -; - - -function showPaymentsPopup(invoiceId, redirect) { - - window.fullScreenLoader.startLoader(); - var apiBaseUrl = "https://orion-api-testnet.starhermit.com"; - var id = "Checkout_Magento2_" + (Math.random() * 9007199254740991).toString(16); - var checkoutAppUrl = apiBaseUrl + "/checkout"; - - var popupWidth = 480 + 20; - var popupHeight = 620 + 60; - - var popupFeatures = { - width: popupWidth, - height: popupHeight, - status: 1, - toolbar: 0, - menubar: 0, - resizable: 1, - scrollbars: 1 - }; - var features = Object.keys(popupFeatures) - .map(function (key) { - return key + "=" + popupFeatures[key]; - }) - .join(","); - - window.popup = window.open(checkoutAppUrl, id, features); - - var interval = setInterval(function () { - if (!window.popup || window.popup.closed) { - clearInterval(interval); - window.fullScreenLoader.stopLoader(true); - window.popup = undefined; - if (redirect) { - window.location.replace(redirect); - } - } - }, 1000); - - window.addEventListener("message", function (event) { - switch (event.data.action) { - case "CoinPaymentsCheckoutAppInitialized": - var msg = { - action: "CoinPaymentsCheckoutAppInitializeInvoice", - data: { - apiBaseUrl: apiBaseUrl, - invoiceId: invoiceId - } - }; - window.popup.postMessage(msg, "*"); - return false; - case "CoinPaymentsPaymentButtonModalClosePressed": - case "CoinPaymentsCheckoutAppInvoiceCancelled": - case "CoinPaymentsCheckoutAppInvoiceConfirmed": - window.fullScreenLoader.stopLoader(true); - popup.close(); - if (redirect) { - window.location.replace(redirect); - } - return false; - } - }, true); - - window.popup; -} \ No newline at end of file +; \ No newline at end of file diff --git a/view/frontend/web/js/view/payment/validate-selected-currency.js b/view/frontend/web/js/view/payment/validate-selected-currency.js deleted file mode 100644 index cdb8c8c..0000000 --- a/view/frontend/web/js/view/payment/validate-selected-currency.js +++ /dev/null @@ -1,16 +0,0 @@ -define( - [ - 'uiComponent', - 'Magento_Checkout/js/model/payment/additional-validators', - 'Coinpayments_CoinPayments/js/model/validate-selected-currency' - ], - function ( - Component, - additionalValidators, - validateSelectedCurrency - ) { - 'use strict'; - additionalValidators.registerValidator(validateSelectedCurrency); - return Component.extend({}); - } -); \ No newline at end of file diff --git a/view/frontend/web/template/payment/coin_payment.html b/view/frontend/web/template/payment/coin_payment.html index d36cac6..295bbdc 100644 --- a/view/frontend/web/template/payment/coin_payment.html +++ b/view/frontend/web/template/payment/coin_payment.html @@ -14,56 +14,6 @@ -
-
-
-
- -
-
-
-
- -
-
-
-
- -
-
-
-
-
-
-
-
From 9ae071f773361518a7b48fb9d2c6e11e2736039c Mon Sep 17 00:00:00 2001 From: letscode Date: Wed, 15 Jan 2020 13:44:14 +0200 Subject: [PATCH 03/57] Fix test data & api_host --- Controller/Adminhtml/Validation/WebHook.php | 3 +-- Controller/Invoice/Create.php | 14 ++++++++++---- Controller/WebHooks/Notification.php | 7 +------ Model/AbstractApi.php | 3 +-- Model/WebHook.php | 4 ++-- etc/config.xml | 5 +++-- 6 files changed, 18 insertions(+), 18 deletions(-) diff --git a/Controller/Adminhtml/Validation/WebHook.php b/Controller/Adminhtml/Validation/WebHook.php index 8e618e0..e9145d1 100644 --- a/Controller/Adminhtml/Validation/WebHook.php +++ b/Controller/Adminhtml/Validation/WebHook.php @@ -76,7 +76,6 @@ public function execute() */ protected function getWebHookCallbackUrl() { -// return $this->urlBuilder->getUrl('coinpayments/webhooks/notification', ['_direct' => null]); - return 'http://34.95.25.102/'; // TODO delete test data + return $this->urlBuilder->getUrl('coinpayments/webhooks/notification', ['_direct' => null]); } } \ No newline at end of file diff --git a/Controller/Invoice/Create.php b/Controller/Invoice/Create.php index 5e2a61f..89034dd 100644 --- a/Controller/Invoice/Create.php +++ b/Controller/Invoice/Create.php @@ -79,9 +79,9 @@ public function execute() if (!empty($coinCurrency)) { - $clientId = $this->scopeConfig->getValue('payment/coin_payments' . DIRECTORY_SEPARATOR . 'client_id'); - $clientSecret = $this->scopeConfig->getValue('payment/coin_payments' . DIRECTORY_SEPARATOR . 'client_secret'); - $merchantWebHooks = $this->scopeConfig->getValue('payment/coin_payments' . DIRECTORY_SEPARATOR . 'webhooks'); + $clientId = $this->scopeConfig->getValue('payment/coin_payments/client_id'); + $clientSecret = $this->scopeConfig->getValue('payment/coin_payments/client_secret'); + $merchantWebHooks = $this->scopeConfig->getValue('payment/coin_payments/webhooks'); if ($merchantWebHooks) { $invoiceData = $this->invoiceModel->createMerchant($clientId, $clientSecret, $coinCurrency['id'], $order->getIncrementId(), intval($amount)); @@ -116,7 +116,13 @@ public function execute() */ protected function getCoinCheckoutRedirectUrl($coinInvoiceId, $successUrl, $cancelUrl) { - return sprintf('%s/checkout/?invoice-id=%s&success-url=%s&cancel-url=%s', $this->invoiceModel->getBaseConfig('api_url'), $coinInvoiceId, $successUrl, $cancelUrl); + return sprintf( + '%s/checkout/?invoice-id=%s&success-url=%s&cancel-url=%s', + $this->invoiceModel->getBaseConfig('api_host'), + $coinInvoiceId, + $successUrl, + $cancelUrl + ); } /** diff --git a/Controller/WebHooks/Notification.php b/Controller/WebHooks/Notification.php index c5f7b0e..f9bc9a0 100644 --- a/Controller/WebHooks/Notification.php +++ b/Controller/WebHooks/Notification.php @@ -53,10 +53,6 @@ public function execute() if ($this->checkDataSignature($signature, $content)) { $requestData = json_decode($content, true); - // TODO delete test data - $requestData['invoice']['invoiceId'] = '000000019'; - $requestData['status'] = 'Completed'; - if ($requestData['status'] == 'Completed') { $this->webHookModel->completeOrder($requestData); } elseif ($requestData['status'] == 'Expired') { @@ -75,9 +71,8 @@ protected function checkDataSignature($signature, $content) { $requestUrl = $this->urlBuilder->getCurrentUrl(); - $requestUrl = 'http://34.95.25.102/'; // TODO delete test data - $clientSecret = $this->scopeConfig->getValue('payment/coin_payments' . DIRECTORY_SEPARATOR . 'client_secret'); + $clientSecret = $this->scopeConfig->getValue('payment/coin_payments/client_secret'); $encodedPure = $this->webHookModel->generateHmac([$requestUrl, $content], $clientSecret); return $signature == $encodedPure; } diff --git a/Model/AbstractApi.php b/Model/AbstractApi.php index 15d6e53..111f423 100644 --- a/Model/AbstractApi.php +++ b/Model/AbstractApi.php @@ -142,8 +142,7 @@ public function sendGetRequest($action, $headers, $requestData = []) */ public function getApiUrl($action) { - return sprintf('%s/api/v%s/%s', 'http://192.168.80.205:18003', $this->baseConf['api_version'], $action); -// return sprintf('%s/v%s/%s', $this->baseConf['api_url'], $this->baseConf['api_version'], $action); + return sprintf('%s/api/v%s/%s', $this->baseConf['api_host'], $this->baseConf['api_version'], $action); } /** diff --git a/Model/WebHook.php b/Model/WebHook.php index 27e028f..e782424 100644 --- a/Model/WebHook.php +++ b/Model/WebHook.php @@ -91,8 +91,8 @@ public function completeOrder($requestData) $order->setTotalPaid($requestData['invoice']['amount']['displayValue']); $order - ->setState($this->scopeConfig->getValue('payment/coin_payments' . DIRECTORY_SEPARATOR . 'status_order_paid')) - ->setStatus($this->scopeConfig->getValue('payment/coin_payments' . DIRECTORY_SEPARATOR . 'status_order_paid')); + ->setState($this->scopeConfig->getValue('payment/coin_payments/status_order_paid')) + ->setStatus($this->scopeConfig->getValue('payment/coin_payments/status_order_paid')); $str = 'CoinPayments.net Payment Status: ' . $requestData['status'] . ' ' . $requestData['status'] . '
'; diff --git a/etc/config.xml b/etc/config.xml index 2abb88a..834a9db 100644 --- a/etc/config.xml +++ b/etc/config.xml @@ -13,9 +13,10 @@ - https://orion-api-testnet.starhermit.com + http://192.168.80.205:18003 1 - ` + + ` \ No newline at end of file From 1c067f7721c435e8ab5a6f61078ffb33a4a60da4 Mon Sep 17 00:00:00 2001 From: letscode Date: Wed, 15 Jan 2020 19:18:09 +0200 Subject: [PATCH 04/57] dev release --- Api/InvoiceInterface.php | 3 +- Controller/Adminhtml/Validation/Invoice.php | 8 +- .../Adminhtml/Validation/Validation.php | 17 +-- Controller/Adminhtml/Validation/WebHook.php | 22 ++-- Controller/Checkout/Failure.php | 46 +++---- Controller/Invoice/Create.php | 51 ++++---- Controller/WebHooks/Notification.php | 30 +++-- Helper/Data.php | 122 ++++++++++++++++++ Model/AbstractApi.php | 44 ++----- Model/CoinPaymentsConfigProvider.php | 6 +- Model/Invoice.php | 13 +- Model/WebHook.php | 19 ++- README.md | 11 ++ view/adminhtml/templates/js_vars.phtml | 4 +- view/frontend/layout/checkout_index_index.xml | 6 + view/frontend/templates/js_vars.phtml | 7 + .../payment/method-renderer/coin-method.js | 2 +- 17 files changed, 275 insertions(+), 136 deletions(-) create mode 100644 Helper/Data.php create mode 100644 view/frontend/templates/js_vars.phtml diff --git a/Api/InvoiceInterface.php b/Api/InvoiceInterface.php index c1b3821..0d81431 100644 --- a/Api/InvoiceInterface.php +++ b/Api/InvoiceInterface.php @@ -20,8 +20,9 @@ public function createSimple($clientId, $currencyId, $invoiceId, $amount); * @param $currencyId * @param $invoiceId * @param $amount + * @param $displayValue * @return mixed */ - public function createMerchant($clientId, $clientSecret, $currencyId, $invoiceId, $amount); + public function createMerchant($clientId, $clientSecret, $currencyId, $invoiceId, $amount, $displayValue); } \ No newline at end of file diff --git a/Controller/Adminhtml/Validation/Invoice.php b/Controller/Adminhtml/Validation/Invoice.php index 5bcf293..09d5e29 100644 --- a/Controller/Adminhtml/Validation/Invoice.php +++ b/Controller/Adminhtml/Validation/Invoice.php @@ -17,10 +17,11 @@ public function execute() $params = $this->getRequest()->getParams(); $response = []; - if (!empty($params['client_id'])) { + if (!empty($params['client_id']) && $this->helper->getConfig('validated') != $params['client_id']) { $clientId = $params['client_id']; $invoice = $this->invoiceModel->createSimple($clientId); if ($invoice) { + $this->helper->setConfig('validated', $params['client_id']); $response = [ 'success' => $invoice ]; @@ -30,6 +31,10 @@ public function execute() 'errorText' => sprintf('Failed to create validation invoice!'), ]; } + } elseif ($this->helper->getConfig('validated') == $params['client_id']) { + $response = [ + 'success' => $params['client_id'] + ]; } else { $response = [ 'success' => false, @@ -37,6 +42,7 @@ public function execute() ]; } + $result = $this->jsonResultFactory->create(); $result->setData($response); return $result; diff --git a/Controller/Adminhtml/Validation/Validation.php b/Controller/Adminhtml/Validation/Validation.php index 33caa64..eed92a5 100644 --- a/Controller/Adminhtml/Validation/Validation.php +++ b/Controller/Adminhtml/Validation/Validation.php @@ -2,6 +2,7 @@ namespace Coinpayments\CoinPayments\Controller\Adminhtml\Validation; +use Coinpayments\CoinPayments\Helper\Data; use Magento\Backend\App\Action; use Magento\Backend\App\Action\Context; use Magento\Framework\Url; @@ -20,11 +21,6 @@ class Validation extends Action */ protected $jsonResultFactory; - /** - * @var Url - */ - protected $urlBuilder; - /** * @var WebHook */ @@ -34,27 +30,32 @@ class Validation extends Action * @var Invoice */ protected $invoiceModel; + /** + * @var Data + */ + protected $helper; /** * Authenticate constructor. * @param Context $context * @param JsonFactory $jsonResultFactory - * @param Url $urlBuilder * @param WebHook $webHook * @param Invoice $invoice + * @param Data $helper */ public function __construct( Context $context, JsonFactory $jsonResultFactory, - Url $urlBuilder, WebHook $webHook, - Invoice $invoice + Invoice $invoice, + Data $helper ) { parent::__construct($context); $this->jsonResultFactory = $jsonResultFactory; $this->webHookModel = $webHook; $this->invoiceModel = $invoice; + $this->helper = $helper; } public function execute() diff --git a/Controller/Adminhtml/Validation/WebHook.php b/Controller/Adminhtml/Validation/WebHook.php index e9145d1..9f14a2e 100644 --- a/Controller/Adminhtml/Validation/WebHook.php +++ b/Controller/Adminhtml/Validation/WebHook.php @@ -2,6 +2,7 @@ namespace Coinpayments\CoinPayments\Controller\Adminhtml\Validation; +use Coinpayments\CoinPayments\Helper\Data; use Magento\Backend\App\Action; use Magento\Backend\App\Action\Context; @@ -18,7 +19,7 @@ public function execute() $params = $this->getRequest()->getParams(); $response = []; - if (!empty($params['client_id']) && !empty($params['client_secret'])) { + if (!empty($params['client_id']) && !empty($params['client_secret']) && $this->helper->getConfig('validated') != ($params['client_id'] . $params['client_secret'])) { $client_id = $params['client_id']; $client_secret = $params['client_secret']; @@ -34,9 +35,10 @@ public function execute() }, $webHooksList['items']); } - if (!in_array($this->getWebHookCallbackUrl(), $webHooksUrlsList)) { - $webHook = $this->webHookModel->createWebHook($client_id, $client_secret, $this->getWebHookCallbackUrl()); + if (!in_array($this->webHookModel->getWebHookCallbackUrl(), $webHooksUrlsList)) { + $webHook = $this->webHookModel->createWebHook($client_id, $client_secret, $this->webHookModel->getWebHookCallbackUrl()); if (!empty($webHook)) { + $this->helper->setConfig('validated', $params['client_id'] . $params['client_secret']); $response = [ 'success' => $webHook, ]; @@ -47,6 +49,7 @@ public function execute() ]; } } else { + $this->helper->setConfig('validated', $params['client_id'] . $params['client_secret']); $response = [ 'success' => true, ]; @@ -57,6 +60,10 @@ public function execute() 'errorText' => sprintf('Failed to get WebHooks list!'), ]; } + } elseif ($this->helper->getConfig('validated') == ($params['client_id'] . $params['client_secret'])) { + $response = [ + 'success' => true, + ]; } else { $response = [ 'success' => false, @@ -69,13 +76,4 @@ public function execute() $result->setData($response); return $result; } - - - /** - * @return string - */ - protected function getWebHookCallbackUrl() - { - return $this->urlBuilder->getUrl('coinpayments/webhooks/notification', ['_direct' => null]); - } } \ No newline at end of file diff --git a/Controller/Checkout/Failure.php b/Controller/Checkout/Failure.php index 4583dea..bcefdb5 100644 --- a/Controller/Checkout/Failure.php +++ b/Controller/Checkout/Failure.php @@ -4,36 +4,36 @@ use Magento\Sales\Model\OrderRepository; use Magento\Sales\Model\Order; -use Psr\Log\LoggerInterface; +use Magento\Checkout\Model\Session; +use Magento\Framework\App\Action\Context; +use Magento\Framework\View\Result\PageFactory; +use Magento\Framework\App\Action\Action; -class Failure extends \Magento\Framework\App\Action\Action +class Failure extends Action { - private $checkoutSession; - private $orderFactory; - private $orderRepository; - private $resultPageFactory; - private $logger; - private $cacheTypeList; - private $cacheFrontendPool; + /** + * @var Session + */ + protected $checkoutSession; + /** + * @var OrderRepository + */ + protected $orderRepository; + /** + * @var PageFactory + */ + protected $resultPageFactory; public function __construct( - \Magento\Checkout\Model\Session $checkoutSession, - \Magento\Sales\Model\OrderFactory $orderFactory, + Session $checkoutSession, OrderRepository $orderRepository, - \Magento\Framework\App\Action\Context $context, - \Magento\Framework\View\Result\PageFactory $resultPageFactory, - LoggerInterface $logger, - \Magento\Framework\App\Cache\TypeListInterface $cacheTypeList, - \Magento\Framework\App\Cache\Frontend\Pool $cacheFrontendPool + Context $context, + PageFactory $resultPageFactory ) { $this->checkoutSession = $checkoutSession; - $this->orderFactory = $orderFactory; $this->orderRepository = $orderRepository; $this->resultPageFactory = $resultPageFactory; - $this->logger = $logger; - $this->cacheTypeList = $cacheTypeList; - $this->cacheFrontendPool = $cacheFrontendPool; parent::__construct($context); } @@ -44,16 +44,12 @@ public function execute() $order = $this->orderRepository->get($lastOrderId); $order->setStatus(Order::STATE_CANCELED)->setState(Order::STATE_CANCELED); $this->orderRepository->save($order); - $this->logger->info('ORDER INFO: ' . $order->getStatus() . $order->getState()); - return $this->resultPageFactory->create(); } public function getRealOrderId() { - $lastorderId = $this->checkoutSession->getLastOrderId(); - - return $lastorderId; + return $this->checkoutSession->getLastOrderId(); } } diff --git a/Controller/Invoice/Create.php b/Controller/Invoice/Create.php index 89034dd..d5f5c4c 100644 --- a/Controller/Invoice/Create.php +++ b/Controller/Invoice/Create.php @@ -2,6 +2,7 @@ namespace Coinpayments\CoinPayments\Controller\Invoice; +use Coinpayments\CoinPayments\Helper\Data; use Coinpayments\CoinPayments\Model\Invoice; use Magento\Framework\App\Action\Context; use Magento\Framework\App\Action\Action; @@ -36,10 +37,25 @@ class Create extends Action implements CsrfAwareActionInterface * @var JsonFactory */ protected $jsonResultFactory; + /** + * @var Data + */ + private $helper; + /** + * Create constructor. + * @param Context $context + * @param Invoice $invoice + * @param Data $helper + * @param Session $checkoutSession + * @param ScopeConfigInterface $scopeConfig + * @param Url $urlBuilder + * @param JsonFactory $jsonResultFactory + */ public function __construct( Context $context, Invoice $invoice, + Data $helper, \Magento\Checkout\Model\Session $checkoutSession, ScopeConfigInterface $scopeConfig, Url $urlBuilder, @@ -49,6 +65,7 @@ public function __construct( $this->urlBuilder = $urlBuilder; $this->invoiceModel = $invoice; + $this->helper = $helper; $this->scopeConfig = $scopeConfig; $this->checkoutSession = $checkoutSession; $this->jsonResultFactory = $jsonResultFactory; @@ -58,7 +75,6 @@ public function __construct( public function execute() { - $response = [ 'successUrl' => $this->urlBuilder->getUrl('checkout/onepage/success'), 'cancelUrl' => $this->urlBuilder->getUrl('coinpayments/checkout/failure'), @@ -68,7 +84,7 @@ public function execute() if ($order->getIncrementId()) { - $coinInvoiceCacheId = Invoice::INVOICE_CACHE_PREFIX . $order->getIncrementId(); + $coinInvoiceCacheId = Data::INVOICE_CACHE_PREFIX . $order->getIncrementId(); $coinInvoiceId = $this->checkoutSession->{'get' . $coinInvoiceCacheId}(); if (empty($coinInvoiceId)) { @@ -79,14 +95,14 @@ public function execute() if (!empty($coinCurrency)) { - $clientId = $this->scopeConfig->getValue('payment/coin_payments/client_id'); - $clientSecret = $this->scopeConfig->getValue('payment/coin_payments/client_secret'); - $merchantWebHooks = $this->scopeConfig->getValue('payment/coin_payments/webhooks'); + $clientId = $this->helper->getConfig(Data::CLIENT_ID_KEY); + $clientSecret = $this->helper->getConfig(Data::CLIENT_SECRET_KEY); + $merchantWebHooks = $this->helper->getConfig(Data::CLIENT_WEBHOOKS_KEY); if ($merchantWebHooks) { - $invoiceData = $this->invoiceModel->createMerchant($clientId, $clientSecret, $coinCurrency['id'], $order->getIncrementId(), intval($amount)); + $invoiceData = $this->invoiceModel->createMerchant($clientId, $clientSecret, $coinCurrency['id'], $order->getIncrementId(), intval($amount), $order->getGrandTotal()); } else { - $invoiceData = $this->invoiceModel->createSimple($clientId, $coinCurrency['id'], $order->getIncrementId(), intval($amount)); + $invoiceData = $this->invoiceModel->createSimple($clientId, $coinCurrency['id'], $order->getIncrementId(), intval($amount), $order->getGrandTotal()); } if (!empty($invoiceData['id'])) { @@ -99,7 +115,7 @@ public function execute() if (!empty($coinInvoiceId)) { $response['coinInvoiceId'] = $coinInvoiceId; - $response['redirectUrl'] = $this->getCoinCheckoutRedirectUrl($coinInvoiceId, $response['successUrl'], $response['cancelUrl']); + $response['redirectUrl'] = $this->helper->getCoinCheckoutRedirectUrl($coinInvoiceId, $response['successUrl'], $response['cancelUrl']); } } @@ -108,23 +124,6 @@ public function execute() return $result; } - /** - * @param $coinInvoiceId - * @param $successUrl - * @param $cancelUrl - * @return string - */ - protected function getCoinCheckoutRedirectUrl($coinInvoiceId, $successUrl, $cancelUrl) - { - return sprintf( - '%s/checkout/?invoice-id=%s&success-url=%s&cancel-url=%s', - $this->invoiceModel->getBaseConfig('api_host'), - $coinInvoiceId, - $successUrl, - $cancelUrl - ); - } - /** * @param string $name * @return array|mixed @@ -133,7 +132,7 @@ protected function getCoinCurrency(string $name) { $params = [ - 'types' => Invoice::FIAT_TYPE, + 'types' => Data::FIAT_TYPE, 'q' => $name, ]; $items = []; diff --git a/Controller/WebHooks/Notification.php b/Controller/WebHooks/Notification.php index f9bc9a0..ad9d637 100644 --- a/Controller/WebHooks/Notification.php +++ b/Controller/WebHooks/Notification.php @@ -2,6 +2,7 @@ namespace Coinpayments\CoinPayments\Controller\WebHooks; +use Coinpayments\CoinPayments\Helper\Data; use Coinpayments\CoinPayments\Model\WebHook; use Magento\Framework\App\Config\ScopeConfigInterface; use Magento\Framework\App\Action\Context; @@ -26,19 +27,21 @@ class Notification extends Action implements CsrfAwareActionInterface /* @var ScopeConfigInterface */ protected $scopeConfig; /** - * @var JsonFactory + * @var Data */ - protected $jsonResultFactory; + protected $helper; public function __construct( Context $context, WebHook $webHookModel, + Data $helper, Url $urlBuilder, ScopeConfigInterface $scopeConfig ) { $this->urlBuilder = $urlBuilder; $this->webHookModel = $webHookModel; + $this->helper = $helper; $this->scopeConfig = $scopeConfig; parent::__construct($context); } @@ -47,17 +50,21 @@ public function __construct( public function execute() { - $content = $this->getRequest()->getContent(); - $signature = $this->getRequest()->getHeaders()->get('X-CoinPayments-Signature')->getFieldValue(); - if ($this->checkDataSignature($signature, $content)) { - $requestData = json_decode($content, true); + if ($this->helper->getConfig(Data::CLIENT_WEBHOOKS_KEY)) { - if ($requestData['status'] == 'Completed') { - $this->webHookModel->completeOrder($requestData); - } elseif ($requestData['status'] == 'Expired') { - $this->webHookModel->cancelOrder($requestData); + $content = $this->getRequest()->getContent(); + $signature = $this->getRequest()->getHeaders()->get('X-CoinPayments-Signature')->getFieldValue(); + + if ($this->checkDataSignature($signature, $content)) { + $requestData = json_decode($content, true); + if ($requestData['invoice']['status'] == Data::API_INVOICE_COMPLETED) { + $this->webHookModel->completeOrder($requestData); + } elseif ($requestData['invoice']['status'] == Data::API_INVOICE_EXPIRED) { + $this->webHookModel->cancelOrder($requestData); + } } + } } @@ -71,8 +78,7 @@ protected function checkDataSignature($signature, $content) { $requestUrl = $this->urlBuilder->getCurrentUrl(); - - $clientSecret = $this->scopeConfig->getValue('payment/coin_payments/client_secret'); + $clientSecret = $this->helper->getConfig(Data::CLIENT_SECRET_KEY); $encodedPure = $this->webHookModel->generateHmac([$requestUrl, $content], $clientSecret); return $signature == $encodedPure; } diff --git a/Helper/Data.php b/Helper/Data.php new file mode 100644 index 0000000..377fefd --- /dev/null +++ b/Helper/Data.php @@ -0,0 +1,122 @@ + + */ + +namespace Coinpayments\CoinPayments\Helper; + +use Magento\Framework\App\Config\ScopeConfigInterface; +use Magento\Framework\App\Helper\AbstractHelper; +use Magento\Framework\App\Helper\Context; +use Magento\Store\Model\ScopeInterface; +use Magento\Config\Model\ResourceModel\Config; + +class Data extends AbstractHelper +{ + + + const FIAT_TYPE = 'fiat'; + const INVOICE_CACHE_PREFIX = 'CoinpaymentsInvoice'; + + const XML_PATH_CONFIG_COINPAYMENTS = 'payment/coin_payments/'; + + const CLIENT_ID_KEY = 'client_id'; + const CLIENT_SECRET_KEY = 'client_secret'; + const CLIENT_WEBHOOKS_KEY = 'webhooks'; + const CLIENT_ORDER_STATUS_KEY = 'status_order_paid'; + + const API_WEBHOOK_ACTION = 'merchant/clients/%s/webhooks'; + const API_SIMPLE_INVOICE_ACTION = 'invoices'; + const API_MERCHANT_INVOICE_ACTION = 'merchant/invoices'; + + const VALIDATE_SIMPLE_URL = 'coinpayments/validation/invoice'; + const VALIDATE_MERCHANT_URL = 'coinpayments/validation/webhook'; + + const CREATE_INVOICE_URL = 'coinpayments/invoice/create'; + const WEBHOOK_NOTIFICATION_URL = 'coinpayments/webhooks/notification'; + + const API_INVOICE_COMPLETED = 'Completed'; + const API_INVOICE_EXPIRED = 'Expired'; + + /** + * @var Config + */ + protected $resourceConfig; + protected $baseConf; + + /** + * Data constructor. + * + * @param Context $context + * @param Config $resourceConfig + */ + public function __construct(Context $context, + \Magento\Framework\App\Config\ConfigResource\ConfigInterface $resourceConfig) + { + parent::__construct($context); + $this->resourceConfig = $resourceConfig; + $this->baseConf = $this->getBaseConfig(); + } + + /** + * @param $param + * @return mixed + */ + public function getConfig($param) + { + return $this->scopeConfig->getValue(self::XML_PATH_CONFIG_COINPAYMENTS . $param); + } + + /** + * @param $param + * @param $value + * @return mixed + */ + public function setConfig($param, $value) + { + return $this->resourceConfig->saveConfig(self::XML_PATH_CONFIG_COINPAYMENTS . $param, $value); + } + + /** + * @return mixed + */ + public function getBaseConfig() + { + return $this->scopeConfig->getValue('coinpayment/conf'); + } + + /** + * @param $action + * @return string + */ + public function getApiUrl($action) + { + return sprintf('%s/api/v%s/%s', $this->baseConf['api_host'], $this->baseConf['api_version'], $action); + } + + /** + * @return string + */ + public function getWebHookCallbackUrl() + { + return $this->_getUrl(Data::WEBHOOK_NOTIFICATION_URL, ['_direct' => null]); + } + + /** + * @param $coinInvoiceId + * @param $successUrl + * @param $cancelUrl + * @return string + */ + public function getCoinCheckoutRedirectUrl($coinInvoiceId, $successUrl, $cancelUrl) + { + return sprintf( + '%s/checkout/?invoice-id=%s&success-url=%s&cancel-url=%s', + $this->baseConf['api_host'], + $coinInvoiceId, + $successUrl, + $cancelUrl + ); + } +} diff --git a/Model/AbstractApi.php b/Model/AbstractApi.php index 111f423..4184c2c 100644 --- a/Model/AbstractApi.php +++ b/Model/AbstractApi.php @@ -6,29 +6,19 @@ use Magento\Framework\App\Config\ScopeConfigInterface; use Magento\Framework\HTTP\Client\Curl; use Magento\Sales\Model\Order; +use Coinpayments\CoinPayments\Helper\Data; abstract class AbstractApi { - const FIAT_TYPE = 'fiat'; - - const INVOICE_CACHE_PREFIX = 'CoinpaymentsInvoice'; - /* @var Curl */ protected $curl; - /* @var ScopeConfigInterface */ protected $scopeConfig; - /* @var array */ protected $defaultHeaders = [ 'Content-Type' => 'application/json;' ]; - - /** - * @var mixed - */ - protected $baseConf; /** * @var Order */ @@ -41,9 +31,14 @@ abstract class AbstractApi * @var Order\Payment\Transaction\BuilderInterface */ protected $transactionBuilder; + /** + * @var Data + */ + protected $helper; public function __construct( Curl $curl, + Data $helper, ScopeConfigInterface $scopeConfig, Order $orderModel, Coinpayments $coinPaymentsMethod, @@ -51,11 +46,11 @@ public function __construct( ) { $this->curl = $curl; + $this->helper = $helper; $this->scopeConfig = $scopeConfig; $this->orderModel = $orderModel; $this->coinPaymentsMethod = $coinPaymentsMethod; $this->transactionBuilder = $transactionBuilder; - $this->baseConf = $this->getBaseConfig(); } /** @@ -71,7 +66,7 @@ public function getRequestHeaders($requestParams, $requestData = []) $headerData = [ 'method' => $requestParams['method'], - 'url' => $this->getApiUrl($requestParams['action']), + 'url' => $this->helper->getApiUrl($requestParams['action']), 'clientId' => $requestParams['clientId'], 'timestamp' => $date->format('c'), ]; @@ -104,7 +99,7 @@ public function sendPostRequest($action, $headers, $requestData) $this->curl->setOption(CURLOPT_SSL_VERIFYHOST, 0); $this->curl->setOption(CURLOPT_SSL_VERIFYPEER, 0); - $requestUrl = $this->getApiUrl($action); + $requestUrl = $this->helper->getApiUrl($action); $this->curl->post($requestUrl, json_encode($requestData)); return json_decode($this->curl->getBody(), true); } @@ -126,7 +121,7 @@ public function sendGetRequest($action, $headers, $requestData = []) $this->curl->setOption(CURLOPT_SSL_VERIFYHOST, 0); $this->curl->setOption(CURLOPT_SSL_VERIFYPEER, 0); - $requestUrl = $this->getApiUrl($action); + $requestUrl = $this->helper->getApiUrl($action); if (!empty($requestData)) { $requestUrl .= '?' . http_build_query($requestData); } @@ -135,16 +130,6 @@ public function sendGetRequest($action, $headers, $requestData = []) return json_decode($this->curl->getBody(), true); } - /** - * @param $baseConf - * @param $action - * @return string - */ - public function getApiUrl($action) - { - return sprintf('%s/api/v%s/%s', $this->baseConf['api_host'], $this->baseConf['api_version'], $action); - } - /** * @param $requestData * @param null $secretKey @@ -176,15 +161,6 @@ public function getCurrencies($params = []) return $this->sendGetRequest('currencies', [], $params); } - /** - * @param null $field - * @return mixed - */ - public function getBaseConfig($field = null) - { - return $this->getConfig('coinpayment/conf', $field); - } - /** * @param $base * @param $field diff --git a/Model/CoinPaymentsConfigProvider.php b/Model/CoinPaymentsConfigProvider.php index ddcf514..7b72c68 100644 --- a/Model/CoinPaymentsConfigProvider.php +++ b/Model/CoinPaymentsConfigProvider.php @@ -14,16 +14,12 @@ class CoinPaymentsConfigProvider implements ConfigProviderInterface * @var Repository */ protected $_assetRepo; - /** - * @var string - */ - protected $_methodCode = 'coin_payments'; /** * CoinPaymentsConfigProvider constructor. * @param Repository $assetRepo */ - public function __construct(Curl $curl, ScopeConfigInterface $scopeConfig, Repository $assetRepo) + public function __construct(Repository $assetRepo) { $this->_assetRepo = $assetRepo; } diff --git a/Model/Invoice.php b/Model/Invoice.php index 416030b..6e5810b 100644 --- a/Model/Invoice.php +++ b/Model/Invoice.php @@ -4,6 +4,7 @@ use Coinpayments\CoinPayments\Api\InvoiceInterface; use Magento\Sales\Model\Order; +use Coinpayments\CoinPayments\Helper\Data; class Invoice extends AbstractApi implements InvoiceInterface { @@ -14,20 +15,22 @@ class Invoice extends AbstractApi implements InvoiceInterface * @param $currencyId * @param $invoiceId * @param $amount + * @param $dispayValue * @return mixed * @throws \Exception */ - public function createMerchant($clientId, $clientSecret, $currencyId, $invoiceId, $amount) + public function createMerchant($clientId, $clientSecret, $currencyId, $invoiceId, $amount, $dispayValue) { $requestData = [ "invoiceId" => $invoiceId, "amount" => [ "currencyId" => $currencyId, + "displayValue" => $dispayValue, "value" => $amount ], ]; - $action = 'merchant/invoices'; + $action = Data::API_MERCHANT_INVOICE_ACTION; $requestParams = [ 'method' => 'POST', @@ -46,18 +49,20 @@ public function createMerchant($clientId, $clientSecret, $currencyId, $invoiceId * @param int $currencyId * @param string $invoiceId * @param int $amount + * @param string $displayValue * @return mixed */ - public function createSimple($clientId, $currencyId = 1, $invoiceId = 'Validate invoice', $amount = 1) + public function createSimple($clientId, $currencyId = 5057, $invoiceId = 'Validate invoice', $amount = 1, $displayValue = '0.01') { - $action = 'invoices'; + $action = Data::API_SIMPLE_INVOICE_ACTION; $requestParams = [ 'clientId' => $clientId, 'invoiceId' => $invoiceId, 'amount' => [ 'currencyId' => $currencyId, + "displayValue" => $displayValue, 'value' => $amount ] ]; diff --git a/Model/WebHook.php b/Model/WebHook.php index e782424..947c6ec 100644 --- a/Model/WebHook.php +++ b/Model/WebHook.php @@ -3,6 +3,7 @@ namespace Coinpayments\CoinPayments\Model; use Coinpayments\CoinPayments\Api\WebHookInterface; +use Coinpayments\CoinPayments\Helper\Data; use Magento\Sales\Model\Order; class WebHook extends AbstractApi implements WebHookInterface @@ -18,7 +19,7 @@ class WebHook extends AbstractApi implements WebHookInterface public function createWebHook($clientId, $clientSecret, $webHookCallbackUrl) { - $action = sprintf('merchant/clients/%s/webhooks', $clientId); + $action = sprintf(Data::API_WEBHOOK_ACTION, $clientId); $requestParams = [ 'method' => 'POST', @@ -51,7 +52,7 @@ public function createWebHook($clientId, $clientSecret, $webHookCallbackUrl) public function getList($clientId, $clientSecret) { - $action = sprintf('merchant/clients/%s/webhooks', $clientId); + $action = sprintf(Data::API_WEBHOOK_ACTION, $clientId); $requestParams = [ 'method' => 'GET', 'action' => $action, @@ -91,10 +92,10 @@ public function completeOrder($requestData) $order->setTotalPaid($requestData['invoice']['amount']['displayValue']); $order - ->setState($this->scopeConfig->getValue('payment/coin_payments/status_order_paid')) - ->setStatus($this->scopeConfig->getValue('payment/coin_payments/status_order_paid')); + ->setState($this->helper->getConfig(Data::CLIENT_ORDER_STATUS_KEY)) + ->setStatus($this->helper->getConfig(Data::CLIENT_ORDER_STATUS_KEY)); - $str = 'CoinPayments.net Payment Status: ' . $requestData['status'] . ' ' . $requestData['status'] . '
'; + $str = 'CoinPayments.net Payment Status: ' . $requestData['invoice']['status'] . ' ' . $requestData['invoice']['status'] . '
'; $str .= 'Transaction ID: ' . $requestData['invoice']['invoiceId'] . '
'; $str .= 'Received Amount: ' . sprintf('%s %s', $requestData['invoice']['amount']['displayValue'], $requestData['invoice']['currency']['symbol']); @@ -139,5 +140,13 @@ public function completeOrder($requestData) return true; } + /** + * @return string + */ + public function getWebHookCallbackUrl() + { + return $this->helper->getWebHookCallbackUrl(); + } + } \ No newline at end of file diff --git a/README.md b/README.md index e69de29..deb6284 100644 --- a/README.md +++ b/README.md @@ -0,0 +1,11 @@ +#install + +Clone source to "app/code/Coinpayments/CoinPayments" directory. + +To enable module run: "bin/magento module:enable Coinpayments_CoinPayments" + +In admin backend on STORES > Configuration > SALES > Payment Methods page enter clientId to send invoices and enable webHooks and enter clientSecret to receive webHook notification. + +On your first saving of configurations you create validating invoice with $ 0.01 cost, or creating webHook notification, if enabled. + +On /checkout/#payment page after placing orders you'll gonna be redirected to coin checkout page. \ No newline at end of file diff --git a/view/adminhtml/templates/js_vars.phtml b/view/adminhtml/templates/js_vars.phtml index e29940d..d876cdc 100644 --- a/view/adminhtml/templates/js_vars.phtml +++ b/view/adminhtml/templates/js_vars.phtml @@ -2,7 +2,7 @@ require([ 'prototype' ], function ($) { - window.coin_validate_invoice = 'getUrl('coinpayments/validation/invoice');?>'; - window.coin_validate_webhooks = 'getUrl('coinpayments/validation/webhook');?>'; + window.coin_validate_invoice = 'getUrl(\Coinpayments\CoinPayments\Helper\Data::VALIDATE_SIMPLE_URL);?>'; + window.coin_validate_webhooks = 'getUrl(\Coinpayments\CoinPayments\Helper\Data::VALIDATE_MERCHANT_URL);?>'; }); \ No newline at end of file diff --git a/view/frontend/layout/checkout_index_index.xml b/view/frontend/layout/checkout_index_index.xml index 213bf9d..5a7494b 100644 --- a/view/frontend/layout/checkout_index_index.xml +++ b/view/frontend/layout/checkout_index_index.xml @@ -2,6 +2,12 @@ + + + diff --git a/view/frontend/templates/js_vars.phtml b/view/frontend/templates/js_vars.phtml new file mode 100644 index 0000000..a0ff978 --- /dev/null +++ b/view/frontend/templates/js_vars.phtml @@ -0,0 +1,7 @@ + \ No newline at end of file diff --git a/view/frontend/web/js/view/payment/method-renderer/coin-method.js b/view/frontend/web/js/view/payment/method-renderer/coin-method.js index 2e4d0b5..41f9f56 100644 --- a/view/frontend/web/js/view/payment/method-renderer/coin-method.js +++ b/view/frontend/web/js/view/payment/method-renderer/coin-method.js @@ -113,7 +113,7 @@ define( type: "POST", dataType: 'json', contentType: "application/json", - url: url.build('coinpayments/invoice/create'), + url: url.build(coin_invoice_create_url), success: function (result) { result = JSON.parse(result); console.log(result) From 3f23da57c033b1af59aafaf351268c5b68985ee3 Mon Sep 17 00:00:00 2001 From: letscode Date: Wed, 15 Jan 2020 19:34:20 +0200 Subject: [PATCH 05/57] fix api host --- etc/config.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/config.xml b/etc/config.xml index 834a9db..532e120 100644 --- a/etc/config.xml +++ b/etc/config.xml @@ -13,7 +13,7 @@ - http://192.168.80.205:18003 + https://orion-api-testnet.starhermit.com 1 From 0feb0914a5029a88eb76469d0a00bdb2e4e64499 Mon Sep 17 00:00:00 2001 From: letscode Date: Thu, 16 Jan 2020 14:44:13 +0200 Subject: [PATCH 06/57] fix js --- .../frontend/web/js/view/payment/method-renderer/coin-method.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/view/frontend/web/js/view/payment/method-renderer/coin-method.js b/view/frontend/web/js/view/payment/method-renderer/coin-method.js index 41f9f56..9104cff 100644 --- a/view/frontend/web/js/view/payment/method-renderer/coin-method.js +++ b/view/frontend/web/js/view/payment/method-renderer/coin-method.js @@ -115,8 +115,6 @@ define( contentType: "application/json", url: url.build(coin_invoice_create_url), success: function (result) { - result = JSON.parse(result); - console.log(result) if (result.coinInvoiceId) { window.location.href = result.redirectUrl; } else { From 4f8b269a4d1608ff62a81a4eef410f036ad0369d Mon Sep 17 00:00:00 2001 From: letscode Date: Fri, 31 Jan 2020 15:35:54 +0200 Subject: [PATCH 07/57] Updated invoice binding to order --- Controller/Adminhtml/Validation/WebHook.php | 4 +- Controller/Invoice/Create.php | 10 +- Controller/WebHooks/Notification.php | 11 +- Helper/Data.php | 4 - Model/AbstractApi.php | 22 ++-- Model/Invoice.php | 14 ++- Model/WebHook.php | 121 ++++++++++---------- 7 files changed, 95 insertions(+), 91 deletions(-) diff --git a/Controller/Adminhtml/Validation/WebHook.php b/Controller/Adminhtml/Validation/WebHook.php index 9f14a2e..454e885 100644 --- a/Controller/Adminhtml/Validation/WebHook.php +++ b/Controller/Adminhtml/Validation/WebHook.php @@ -35,8 +35,8 @@ public function execute() }, $webHooksList['items']); } - if (!in_array($this->webHookModel->getWebHookCallbackUrl(), $webHooksUrlsList)) { - $webHook = $this->webHookModel->createWebHook($client_id, $client_secret, $this->webHookModel->getWebHookCallbackUrl()); + if (!in_array($this->helper->getWebHookCallbackUrl(), $webHooksUrlsList)) { + $webHook = $this->webHookModel->createWebHook($client_id, $client_secret, $this->helper->getWebHookCallbackUrl()); if (!empty($webHook)) { $this->helper->setConfig('validated', $params['client_id'] . $params['client_secret']); $response = [ diff --git a/Controller/Invoice/Create.php b/Controller/Invoice/Create.php index d5f5c4c..68397ed 100644 --- a/Controller/Invoice/Create.php +++ b/Controller/Invoice/Create.php @@ -41,6 +41,10 @@ class Create extends Action implements CsrfAwareActionInterface * @var Data */ private $helper; + /** + * @var Order\Payment\Transaction\BuilderInterface + */ + protected $transactionBuilder; /** * Create constructor. @@ -98,16 +102,18 @@ public function execute() $clientId = $this->helper->getConfig(Data::CLIENT_ID_KEY); $clientSecret = $this->helper->getConfig(Data::CLIENT_SECRET_KEY); $merchantWebHooks = $this->helper->getConfig(Data::CLIENT_WEBHOOKS_KEY); + $invoiceId = sprintf('%s|%s',$order->getIncrementId(), $order->getPayment()->getId()); if ($merchantWebHooks) { - $invoiceData = $this->invoiceModel->createMerchant($clientId, $clientSecret, $coinCurrency['id'], $order->getIncrementId(), intval($amount), $order->getGrandTotal()); + $invoiceData = $this->invoiceModel->createMerchant($clientId, $clientSecret, $coinCurrency['id'], $invoiceId, intval($amount), $order->getGrandTotal()); } else { - $invoiceData = $this->invoiceModel->createSimple($clientId, $coinCurrency['id'], $order->getIncrementId(), intval($amount), $order->getGrandTotal()); + $invoiceData = $this->invoiceModel->createSimple($clientId, $coinCurrency['id'], $invoiceId, intval($amount), $order->getGrandTotal()); } if (!empty($invoiceData['id'])) { $this->checkoutSession->{'set' . $coinInvoiceCacheId}($invoiceData['id']); $coinInvoiceId = $invoiceData['id']; + $this->invoiceModel->createOrderTransaction($order, $coinInvoiceId); } } diff --git a/Controller/WebHooks/Notification.php b/Controller/WebHooks/Notification.php index ad9d637..eb5abff 100644 --- a/Controller/WebHooks/Notification.php +++ b/Controller/WebHooks/Notification.php @@ -49,22 +49,13 @@ public function __construct( public function execute() { - - if ($this->helper->getConfig(Data::CLIENT_WEBHOOKS_KEY)) { - $content = $this->getRequest()->getContent(); $signature = $this->getRequest()->getHeaders()->get('X-CoinPayments-Signature')->getFieldValue(); - if ($this->checkDataSignature($signature, $content)) { $requestData = json_decode($content, true); - if ($requestData['invoice']['status'] == Data::API_INVOICE_COMPLETED) { - $this->webHookModel->completeOrder($requestData); - } elseif ($requestData['invoice']['status'] == Data::API_INVOICE_EXPIRED) { - $this->webHookModel->cancelOrder($requestData); - } + $this->webHookModel->receiveNotification($requestData); } - } } diff --git a/Helper/Data.php b/Helper/Data.php index 377fefd..b3ae012 100644 --- a/Helper/Data.php +++ b/Helper/Data.php @@ -1,8 +1,4 @@ - */ namespace Coinpayments\CoinPayments\Helper; diff --git a/Model/AbstractApi.php b/Model/AbstractApi.php index 4184c2c..cf73a30 100644 --- a/Model/AbstractApi.php +++ b/Model/AbstractApi.php @@ -35,6 +35,10 @@ abstract class AbstractApi * @var Data */ protected $helper; + /** + * @var Order\Payment\Transaction\Repository + */ + protected $transactionRepository; public function __construct( Curl $curl, @@ -42,7 +46,8 @@ public function __construct( ScopeConfigInterface $scopeConfig, Order $orderModel, Coinpayments $coinPaymentsMethod, - Order\Payment\Transaction\BuilderInterface $transactionBuilder + Order\Payment\Transaction\BuilderInterface $transactionBuilder, + Order\Payment\Transaction\Repository $transactionRepository ) { $this->curl = $curl; @@ -51,6 +56,8 @@ public function __construct( $this->orderModel = $orderModel; $this->coinPaymentsMethod = $coinPaymentsMethod; $this->transactionBuilder = $transactionBuilder; + $this->transactionRepository = $transactionRepository; + } /** @@ -160,17 +167,4 @@ public function getCurrencies($params = []) { return $this->sendGetRequest('currencies', [], $params); } - - /** - * @param $base - * @param $field - * @return mixed - */ - protected function getConfig($base, $field = false) - { - if ($field) { - return $this->scopeConfig->getValue($base . DIRECTORY_SEPARATOR . $field); - } - return $this->scopeConfig->getValue($base); - } } diff --git a/Model/Invoice.php b/Model/Invoice.php index 6e5810b..4852605 100644 --- a/Model/Invoice.php +++ b/Model/Invoice.php @@ -70,5 +70,17 @@ public function createSimple($clientId, $currencyId = 5057, $invoiceId = 'Valida return $this->sendPostRequest($action, [], $requestParams); } - + public function createOrderTransaction($order, $coinInvoiceId) + { + $payment = $order->getPayment(); + /* @var Order\Payment\Transaction\BuilderInterface */ + $transaction = $this->transactionBuilder + ->setPayment($payment) + ->setOrder($order) + ->setTransactionId($coinInvoiceId) + ->setFailSafe(true) + ->build(\Magento\Sales\Model\Order\Payment\Transaction::TYPE_CAPTURE); + $transaction->save(); + return $transaction->getTransactionId(); + } } \ No newline at end of file diff --git a/Model/WebHook.php b/Model/WebHook.php index 947c6ec..fd068d9 100644 --- a/Model/WebHook.php +++ b/Model/WebHook.php @@ -66,87 +66,92 @@ public function getList($clientId, $clientSecret) } /** - * @param $requestData + * @param Order $order * @throws \Exception */ - public function cancelOrder($requestData) + public function cancelOrder($order) { - $order = $this->orderModel->loadByIncrementId($requestData['invoice']['invoiceId']); - if ($order->getId()) { - $order - ->setStatus(Order::STATE_CANCELED) - ->setState(Order::STATE_CANCELED) - ->save(); - } + $order + ->setStatus(Order::STATE_CANCELED) + ->setState(Order::STATE_CANCELED) + ->save(); } /** - * @param $order * @param $requestData - * @return bool + * @throws \Magento\Framework\Exception\InputException */ - public function completeOrder($requestData) + public function receiveNotification($requestData) { - $order = $this->orderModel->loadByIncrementId($requestData['invoice']['invoiceId']); - if ($order->getId()) { - $order->setTotalPaid($requestData['invoice']['amount']['displayValue']); - $order - ->setState($this->helper->getConfig(Data::CLIENT_ORDER_STATUS_KEY)) - ->setStatus($this->helper->getConfig(Data::CLIENT_ORDER_STATUS_KEY)); - - $str = 'CoinPayments.net Payment Status: ' . $requestData['invoice']['status'] . ' ' . $requestData['invoice']['status'] . '
'; + $orderData = explode('|', $requestData['invoice']['invoiceId']); + $orderId = array_shift($orderData); + $paymentId = array_shift($orderData); + + $coinInvoiceId = $requestData['invoice']['id']; + + $transaction = $this->transactionRepository->getByTransactionId( + $coinInvoiceId, + $paymentId, + $orderId + ); + + if (!empty($transaction)) { + /** @var Order $order */ + $order = $transaction->getOrder(); + if ($requestData['invoice']['status'] == Data::API_INVOICE_COMPLETED) { + $this->completeOrder($requestData['invoice'], $order, $transaction); + } elseif ($requestData['invoice']['status'] == Data::API_INVOICE_EXPIRED) { + $this->cancelOrder($order); + } + } - $str .= 'Transaction ID: ' . $requestData['invoice']['invoiceId'] . '
'; - $str .= 'Received Amount: ' . sprintf('%s %s', $requestData['invoice']['amount']['displayValue'], $requestData['invoice']['currency']['symbol']); + } - $order->addStatusToHistory($order->getStatus(), $str); + /** + * @param $rawDetails + * @param Order $order + * @param Order\Payment\Transaction $transaction + * @return bool + */ + public function completeOrder($rawDetails, $order, $transaction) + { + $rawDetails['amount'] = $rawDetails['amount']['displayValue']; + $rawDetails['currency'] = $rawDetails['currency']['symbol']; - try { - $payment = $order->getPayment(); - $payment->setMethod($this->coinPaymentsMethod->getCode()); - $payment->setLastTransId($requestData['invoice']['invoiceId']); - $payment->setTransactionId($requestData['invoice']['invoiceId']); - $payment->setAdditionalInformation([Order\Payment\Transaction::RAW_DETAILS => (array)$requestData]); - $formatedPrice = $order->getBaseCurrency()->formatTxt($order->getGrandTotal()); + $order->setTotalPaid($rawDetails['amount']); + $order + ->setState($this->helper->getConfig(Data::CLIENT_ORDER_STATUS_KEY)) + ->setStatus($this->helper->getConfig(Data::CLIENT_ORDER_STATUS_KEY)); - /* @var Order\Payment\Transaction\BuilderInterface */ - $transaction = $this->transactionBuilder - ->setPayment($payment) - ->setOrder($order) - ->setTransactionId($requestData['invoice']['invoiceId']) - ->setAdditionalInformation([Order\Payment\Transaction::RAW_DETAILS => (array)$requestData]) - ->setFailSafe(true) - ->build(Order\Payment\Transaction::TYPE_CAPTURE); + $str = 'CoinPayments.net Payment Status: ' . $rawDetails['status'] . ' ' . $rawDetails['status'] . '
'; + $str .= 'Transaction ID: ' . $rawDetails['id'] . '
'; + $str .= 'Received Amount: ' . sprintf('%s %s', $rawDetails['amount'], $rawDetails['currency']); + $order->addStatusToHistory($order->getStatus(), $str); - // Add transaction to payment - $payment->addTransactionCommentsToOrder($transaction, __('The authorized amount is %1.', $formatedPrice)); - $payment->setParentTransactionId(null); - // Save payment, transaction and order - $payment->save(); - $order->save(); - $transaction->save(); - return $transaction->getTransactionId(); + $transaction->setAdditionalInformation(Order\Payment\Transaction::RAW_DETAILS, $rawDetails); - } catch (\Exception $e) { + try { + $formatedPrice = $order->getBaseCurrency()->formatTxt($order->getGrandTotal()); - } + $payment = $order->getPayment(); + $payment->setMethod($this->coinPaymentsMethod->getCode()); + $payment->setLastTransId($transaction->getId()); + $payment->setTransactionId($transaction->getTransactionId()); + $payment->setAdditionalInformation([Order\Payment\Transaction::RAW_DETAILS => $rawDetails]); + $payment->addTransactionCommentsToOrder($transaction, __('The authorized amount is %1.', $formatedPrice)); + $payment->setParentTransactionId(null); + $payment->save(); + $order->save(); + $transaction->save(); + return $transaction->getTransactionId(); + } catch (\Exception $e) { } - return true; } - /** - * @return string - */ - public function getWebHookCallbackUrl() - { - return $this->helper->getWebHookCallbackUrl(); - } - - } \ No newline at end of file From 4aedeec5153e924c929f08b990827c5dce2de3fd Mon Sep 17 00:00:00 2001 From: letscode Date: Sat, 1 Feb 2020 19:13:18 +0200 Subject: [PATCH 08/57] Fix typo --- Model/Invoice.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Model/Invoice.php b/Model/Invoice.php index 4852605..a706539 100644 --- a/Model/Invoice.php +++ b/Model/Invoice.php @@ -15,17 +15,17 @@ class Invoice extends AbstractApi implements InvoiceInterface * @param $currencyId * @param $invoiceId * @param $amount - * @param $dispayValue + * @param $displayValue * @return mixed * @throws \Exception */ - public function createMerchant($clientId, $clientSecret, $currencyId, $invoiceId, $amount, $dispayValue) + public function createMerchant($clientId, $clientSecret, $currencyId, $invoiceId, $amount, $displayValue) { $requestData = [ "invoiceId" => $invoiceId, "amount" => [ "currencyId" => $currencyId, - "displayValue" => $dispayValue, + "displayValue" => $displayValue, "value" => $amount ], ]; From 8f980491cd6089f669b4a967c63435093246effc Mon Sep 17 00:00:00 2001 From: letscode Date: Sat, 1 Feb 2020 19:28:22 +0200 Subject: [PATCH 09/57] Fix typo --- Controller/Adminhtml/Validation/Invoice.php | 2 +- Controller/Adminhtml/Validation/WebHook.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Controller/Adminhtml/Validation/Invoice.php b/Controller/Adminhtml/Validation/Invoice.php index 09d5e29..45e47b5 100644 --- a/Controller/Adminhtml/Validation/Invoice.php +++ b/Controller/Adminhtml/Validation/Invoice.php @@ -38,7 +38,7 @@ public function execute() } else { $response = [ 'success' => false, - 'errorText' => sprintf('Enter Coinpaymnets.NET credentials!'), + 'errorText' => sprintf('Enter Coinpayments.NET credentials!'), ]; } diff --git a/Controller/Adminhtml/Validation/WebHook.php b/Controller/Adminhtml/Validation/WebHook.php index 454e885..eb6221e 100644 --- a/Controller/Adminhtml/Validation/WebHook.php +++ b/Controller/Adminhtml/Validation/WebHook.php @@ -67,7 +67,7 @@ public function execute() } else { $response = [ 'success' => false, - 'errorText' => sprintf('Enter Coinpaymnets.NET credentials!'), + 'errorText' => sprintf('Enter Coinpayments.NET credentials!'), ]; } From d91bc3b5ebfc3f234ce8225f4ea782512eb612e2 Mon Sep 17 00:00:00 2001 From: letscode Date: Sun, 2 Feb 2020 02:40:40 +0200 Subject: [PATCH 10/57] Fix docs --- Controller/Adminhtml/Validation/Invoice.php | 3 -- .../Adminhtml/Validation/Validation.php | 3 +- Controller/Checkout/Failure.php | 7 ++++ Controller/Invoice/Create.php | 10 ++---- Controller/WebHooks/Notification.php | 2 +- Helper/Data.php | 9 +++-- Model/AbstractApi.php | 26 +++++++++++--- Model/CoinPaymentsConfigProvider.php | 7 ++-- Model/Invoice.php | 29 ++++++++++------ Model/Methods/Coinpayments.php | 15 ++++---- Model/WebHook.php | 34 +++++++++++-------- 11 files changed, 89 insertions(+), 56 deletions(-) diff --git a/Controller/Adminhtml/Validation/Invoice.php b/Controller/Adminhtml/Validation/Invoice.php index 45e47b5..aa2d7d2 100644 --- a/Controller/Adminhtml/Validation/Invoice.php +++ b/Controller/Adminhtml/Validation/Invoice.php @@ -2,9 +2,6 @@ namespace Coinpayments\CoinPayments\Controller\Adminhtml\Validation; -use Magento\Backend\App\Action; -use Magento\Backend\App\Action\Context; - /** * Class Invoice * @package Coinpayments\CoinPayments\Controller\Adminhtml\Validation diff --git a/Controller/Adminhtml/Validation/Validation.php b/Controller/Adminhtml/Validation/Validation.php index eed92a5..367c09d 100644 --- a/Controller/Adminhtml/Validation/Validation.php +++ b/Controller/Adminhtml/Validation/Validation.php @@ -5,7 +5,6 @@ use Coinpayments\CoinPayments\Helper\Data; use Magento\Backend\App\Action; use Magento\Backend\App\Action\Context; -use Magento\Framework\Url; use Magento\Framework\Controller\Result\JsonFactory; use Coinpayments\CoinPayments\Model\WebHook; use Coinpayments\CoinPayments\Model\Invoice; @@ -36,7 +35,7 @@ class Validation extends Action protected $helper; /** - * Authenticate constructor. + * Validation constructor. * @param Context $context * @param JsonFactory $jsonResultFactory * @param WebHook $webHook diff --git a/Controller/Checkout/Failure.php b/Controller/Checkout/Failure.php index bcefdb5..83197be 100644 --- a/Controller/Checkout/Failure.php +++ b/Controller/Checkout/Failure.php @@ -24,6 +24,13 @@ class Failure extends Action */ protected $resultPageFactory; + /** + * Failure constructor. + * @param Session $checkoutSession + * @param OrderRepository $orderRepository + * @param Context $context + * @param PageFactory $resultPageFactory + */ public function __construct( Session $checkoutSession, OrderRepository $orderRepository, diff --git a/Controller/Invoice/Create.php b/Controller/Invoice/Create.php index 68397ed..60a2d0d 100644 --- a/Controller/Invoice/Create.php +++ b/Controller/Invoice/Create.php @@ -40,11 +40,7 @@ class Create extends Action implements CsrfAwareActionInterface /** * @var Data */ - private $helper; - /** - * @var Order\Payment\Transaction\BuilderInterface - */ - protected $transactionBuilder; + protected $helper; /** * Create constructor. @@ -60,7 +56,7 @@ public function __construct( Context $context, Invoice $invoice, Data $helper, - \Magento\Checkout\Model\Session $checkoutSession, + Session $checkoutSession, ScopeConfigInterface $scopeConfig, Url $urlBuilder, JsonFactory $jsonResultFactory @@ -102,7 +98,7 @@ public function execute() $clientId = $this->helper->getConfig(Data::CLIENT_ID_KEY); $clientSecret = $this->helper->getConfig(Data::CLIENT_SECRET_KEY); $merchantWebHooks = $this->helper->getConfig(Data::CLIENT_WEBHOOKS_KEY); - $invoiceId = sprintf('%s|%s',$order->getIncrementId(), $order->getPayment()->getId()); + $invoiceId = sprintf('%s|%s', $order->getId(), $order->getPayment()->getId()); if ($merchantWebHooks) { $invoiceData = $this->invoiceModel->createMerchant($clientId, $clientSecret, $coinCurrency['id'], $invoiceId, intval($amount), $order->getGrandTotal()); diff --git a/Controller/WebHooks/Notification.php b/Controller/WebHooks/Notification.php index eb5abff..c84fa29 100644 --- a/Controller/WebHooks/Notification.php +++ b/Controller/WebHooks/Notification.php @@ -49,7 +49,7 @@ public function __construct( public function execute() { - if ($this->helper->getConfig(Data::CLIENT_WEBHOOKS_KEY)) { + if (!empty($this->helper->getConfig(Data::CLIENT_WEBHOOKS_KEY)) && !empty($this->getRequest()->getHeaders()->get('X-CoinPayments-Signature'))) { $content = $this->getRequest()->getContent(); $signature = $this->getRequest()->getHeaders()->get('X-CoinPayments-Signature')->getFieldValue(); if ($this->checkDataSignature($signature, $content)) { diff --git a/Helper/Data.php b/Helper/Data.php index b3ae012..638927b 100644 --- a/Helper/Data.php +++ b/Helper/Data.php @@ -2,12 +2,15 @@ namespace Coinpayments\CoinPayments\Helper; -use Magento\Framework\App\Config\ScopeConfigInterface; use Magento\Framework\App\Helper\AbstractHelper; use Magento\Framework\App\Helper\Context; -use Magento\Store\Model\ScopeInterface; use Magento\Config\Model\ResourceModel\Config; +use Magento\Framework\App\Config\ConfigResource\ConfigInterface; +/** + * Class Data + * @package Coinpayments\CoinPayments\Helper + */ class Data extends AbstractHelper { @@ -48,7 +51,7 @@ class Data extends AbstractHelper * @param Config $resourceConfig */ public function __construct(Context $context, - \Magento\Framework\App\Config\ConfigResource\ConfigInterface $resourceConfig) + ConfigInterface $resourceConfig) { parent::__construct($context); $this->resourceConfig = $resourceConfig; diff --git a/Model/AbstractApi.php b/Model/AbstractApi.php index cf73a30..3005fb2 100644 --- a/Model/AbstractApi.php +++ b/Model/AbstractApi.php @@ -3,11 +3,17 @@ namespace Coinpayments\CoinPayments\Model; use Coinpayments\CoinPayments\Model\Methods\Coinpayments; +use Coinpayments\CoinPayments\Helper\Data; use Magento\Framework\App\Config\ScopeConfigInterface; use Magento\Framework\HTTP\Client\Curl; use Magento\Sales\Model\Order; -use Coinpayments\CoinPayments\Helper\Data; +use Magento\Sales\Model\Order\Payment\Transaction\BuilderInterface; +use Magento\Sales\Model\Order\Payment\Transaction\Repository; +/** + * Class AbstractApi + * @package Coinpayments\CoinPayments\Model + */ abstract class AbstractApi { @@ -28,7 +34,7 @@ abstract class AbstractApi */ protected $coinPaymentsMethod; /** - * @var Order\Payment\Transaction\BuilderInterface + * @var BuilderInterface */ protected $transactionBuilder; /** @@ -36,18 +42,28 @@ abstract class AbstractApi */ protected $helper; /** - * @var Order\Payment\Transaction\Repository + * @var Repository */ protected $transactionRepository; + /** + * AbstractApi constructor. + * @param Curl $curl + * @param Data $helper + * @param ScopeConfigInterface $scopeConfig + * @param Order $orderModel + * @param Coinpayments $coinPaymentsMethod + * @param BuilderInterface $transactionBuilder + * @param Repository $transactionRepository + */ public function __construct( Curl $curl, Data $helper, ScopeConfigInterface $scopeConfig, Order $orderModel, Coinpayments $coinPaymentsMethod, - Order\Payment\Transaction\BuilderInterface $transactionBuilder, - Order\Payment\Transaction\Repository $transactionRepository + BuilderInterface $transactionBuilder, + Repository $transactionRepository ) { $this->curl = $curl; diff --git a/Model/CoinPaymentsConfigProvider.php b/Model/CoinPaymentsConfigProvider.php index 7b72c68..e3481c6 100644 --- a/Model/CoinPaymentsConfigProvider.php +++ b/Model/CoinPaymentsConfigProvider.php @@ -3,11 +3,12 @@ namespace Coinpayments\CoinPayments\Model; use Magento\Checkout\Model\ConfigProviderInterface; -use Magento\Framework\HTTP\Client\Curl; -use Magento\Framework\App\Config\ScopeConfigInterface; use Magento\Framework\View\Asset\Repository; - +/** + * Class CoinPaymentsConfigProvider + * @package Coinpayments\CoinPayments\Model + */ class CoinPaymentsConfigProvider implements ConfigProviderInterface { /** diff --git a/Model/Invoice.php b/Model/Invoice.php index a706539..eef17d1 100644 --- a/Model/Invoice.php +++ b/Model/Invoice.php @@ -3,9 +3,13 @@ namespace Coinpayments\CoinPayments\Model; use Coinpayments\CoinPayments\Api\InvoiceInterface; -use Magento\Sales\Model\Order; use Coinpayments\CoinPayments\Helper\Data; +use Magento\Sales\Model\Order; +/** + * Class Invoice + * @package Coinpayments\CoinPayments\Model + */ class Invoice extends AbstractApi implements InvoiceInterface { @@ -21,14 +25,6 @@ class Invoice extends AbstractApi implements InvoiceInterface */ public function createMerchant($clientId, $clientSecret, $currencyId, $invoiceId, $amount, $displayValue) { - $requestData = [ - "invoiceId" => $invoiceId, - "amount" => [ - "currencyId" => $currencyId, - "displayValue" => $displayValue, - "value" => $amount - ], - ]; $action = Data::API_MERCHANT_INVOICE_ACTION; @@ -39,8 +35,16 @@ public function createMerchant($clientId, $clientSecret, $currencyId, $invoiceId 'clientSecret' => $clientSecret, ]; - $headers = $this->getRequestHeaders($requestParams, $requestData); + $requestData = [ + "invoiceId" => $invoiceId, + "amount" => [ + "currencyId" => $currencyId, + "displayValue" => $displayValue, + "value" => $amount + ], + ]; + $headers = $this->getRequestHeaders($requestParams, $requestData); return $this->sendPostRequest($action, $headers, $requestData); } @@ -70,6 +74,11 @@ public function createSimple($clientId, $currencyId = 5057, $invoiceId = 'Valida return $this->sendPostRequest($action, [], $requestParams); } + /** + * @param $order + * @param $coinInvoiceId + * @return int + */ public function createOrderTransaction($order, $coinInvoiceId) { $payment = $order->getPayment(); diff --git a/Model/Methods/Coinpayments.php b/Model/Methods/Coinpayments.php index 6513256..8a131d5 100644 --- a/Model/Methods/Coinpayments.php +++ b/Model/Methods/Coinpayments.php @@ -6,15 +6,13 @@ namespace Coinpayments\CoinPayments\Model\Methods; -use Magento\Framework\Pricing\PriceCurrencyInterface; -use Magento\Framework\HTTP\ZendClientFactory; -use Magento\Payment\Model\Method\ConfigInterface; -use Magento\Payment\Model\Method\TransparentInterface; -use Magento\Sales\Model\Order\Email\Sender\OrderSender; use Magento\Quote\Api\Data\CartInterface; use Magento\Payment\Model\Method\AbstractMethod; -use Magento\Sales\Model\Order; +/** + * Class Coinpayments + * @package Coinpayments\CoinPayments\Model\Methods + */ class Coinpayments extends AbstractMethod { @@ -32,7 +30,7 @@ class Coinpayments extends AbstractMethod * @param CartInterface|null $quote * @return bool */ - public function isAvailable(\Magento\Quote\Api\Data\CartInterface $quote = null) + public function isAvailable(CartInterface $quote = null) { return parent::isAvailable($quote); } @@ -46,6 +44,9 @@ public function isActive($storeId = null) return (bool)(int)$this->getConfigData('active', $storeId); } + /** + * @return string + */ public function getCode() { return $this->_code; diff --git a/Model/WebHook.php b/Model/WebHook.php index fd068d9..23219dd 100644 --- a/Model/WebHook.php +++ b/Model/WebHook.php @@ -6,6 +6,10 @@ use Coinpayments\CoinPayments\Helper\Data; use Magento\Sales\Model\Order; +/** + * Class WebHook + * @package Coinpayments\CoinPayments\Model + */ class WebHook extends AbstractApi implements WebHookInterface { @@ -53,6 +57,7 @@ public function getList($clientId, $clientSecret) { $action = sprintf(Data::API_WEBHOOK_ACTION, $clientId); + $requestParams = [ 'method' => 'GET', 'action' => $action, @@ -61,22 +66,9 @@ public function getList($clientId, $clientSecret) ]; $headers = $this->getRequestHeaders($requestParams); - return $this->sendGetRequest($action, $headers); } - /** - * @param Order $order - * @throws \Exception - */ - public function cancelOrder($order) - { - $order - ->setStatus(Order::STATE_CANCELED) - ->setState(Order::STATE_CANCELED) - ->save(); - } - /** * @param $requestData * @throws \Magento\Framework\Exception\InputException @@ -110,8 +102,8 @@ public function receiveNotification($requestData) /** * @param $rawDetails - * @param Order $order - * @param Order\Payment\Transaction $transaction + * @param $order + * @param $transaction * @return bool */ public function completeOrder($rawDetails, $order, $transaction) @@ -154,4 +146,16 @@ public function completeOrder($rawDetails, $order, $transaction) return true; } + /** + * @param Order $order + * @throws \Exception + */ + public function cancelOrder($order) + { + $order + ->setStatus(Order::STATE_CANCELED) + ->setState(Order::STATE_CANCELED) + ->save(); + } + } \ No newline at end of file From 5a586261e13535dcc6b85c1ef9056985f0da5d26 Mon Sep 17 00:00:00 2001 From: letscode Date: Sun, 2 Feb 2020 03:26:38 +0200 Subject: [PATCH 11/57] Fix var names --- Controller/Adminhtml/Validation/WebHook.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Controller/Adminhtml/Validation/WebHook.php b/Controller/Adminhtml/Validation/WebHook.php index eb6221e..13825a6 100644 --- a/Controller/Adminhtml/Validation/WebHook.php +++ b/Controller/Adminhtml/Validation/WebHook.php @@ -21,10 +21,10 @@ public function execute() if (!empty($params['client_id']) && !empty($params['client_secret']) && $this->helper->getConfig('validated') != ($params['client_id'] . $params['client_secret'])) { - $client_id = $params['client_id']; - $client_secret = $params['client_secret']; + $clientId = $params['client_id']; + $clientSecret = $params['client_secret']; - $webHooksList = $this->webHookModel->getList($client_id, $client_secret); + $webHooksList = $this->webHookModel->getList($clientId, $clientSecret); if (!empty($webHooksList)) { @@ -36,7 +36,7 @@ public function execute() } if (!in_array($this->helper->getWebHookCallbackUrl(), $webHooksUrlsList)) { - $webHook = $this->webHookModel->createWebHook($client_id, $client_secret, $this->helper->getWebHookCallbackUrl()); + $webHook = $this->webHookModel->createWebHook($clientId, $clientSecret, $this->helper->getWebHookCallbackUrl()); if (!empty($webHook)) { $this->helper->setConfig('validated', $params['client_id'] . $params['client_secret']); $response = [ From 9e145c96c88a60b7aeeada60da98b52cab82dc66 Mon Sep 17 00:00:00 2001 From: letscode Date: Sun, 2 Feb 2020 16:35:09 +0200 Subject: [PATCH 12/57] Fix API host --- etc/config.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/config.xml b/etc/config.xml index 532e120..a853d22 100644 --- a/etc/config.xml +++ b/etc/config.xml @@ -13,7 +13,7 @@ - https://orion-api-testnet.starhermit.com + https://orion-api.starhermit.com 1 From c5a954aa61339f63c7d1a46388ae73e6b7ab1aed Mon Sep 17 00:00:00 2001 From: letscode Date: Tue, 4 Feb 2020 11:02:26 +0200 Subject: [PATCH 13/57] Fix abstract access --- Controller/Adminhtml/Validation/Validation.php | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/Controller/Adminhtml/Validation/Validation.php b/Controller/Adminhtml/Validation/Validation.php index 367c09d..c12ed22 100644 --- a/Controller/Adminhtml/Validation/Validation.php +++ b/Controller/Adminhtml/Validation/Validation.php @@ -13,7 +13,7 @@ * Class Validation * @package Coinpayments\CoinPayments\Controller\Adminhtml\Validation */ -class Validation extends Action +abstract class Validation extends Action { /** * @var JsonFactory @@ -57,8 +57,5 @@ public function __construct( $this->helper = $helper; } - public function execute() - { - - } + abstract public function execute(); } \ No newline at end of file From 8e23f87ecbd7d36afc9a47a1eeb4aa9279a2a605 Mon Sep 17 00:00:00 2001 From: letscode Date: Tue, 4 Feb 2020 11:04:11 +0200 Subject: [PATCH 14/57] Fix webhook validation conditions --- Controller/Adminhtml/Validation/WebHook.php | 60 +++++++++++---------- 1 file changed, 31 insertions(+), 29 deletions(-) diff --git a/Controller/Adminhtml/Validation/WebHook.php b/Controller/Adminhtml/Validation/WebHook.php index 13825a6..7813985 100644 --- a/Controller/Adminhtml/Validation/WebHook.php +++ b/Controller/Adminhtml/Validation/WebHook.php @@ -19,52 +19,54 @@ public function execute() $params = $this->getRequest()->getParams(); $response = []; - if (!empty($params['client_id']) && !empty($params['client_secret']) && $this->helper->getConfig('validated') != ($params['client_id'] . $params['client_secret'])) { + if (!empty($params['client_id']) && !empty($params['client_secret'])) { + if ($this->helper->getConfig('validated') != ($params['client_id'] . $params['client_secret'])) { - $clientId = $params['client_id']; - $clientSecret = $params['client_secret']; + $clientId = $params['client_id']; + $clientSecret = $params['client_secret']; - $webHooksList = $this->webHookModel->getList($clientId, $clientSecret); + $webHooksList = $this->webHookModel->getList($clientId, $clientSecret); - if (!empty($webHooksList)) { + if (!empty($webHooksList)) { - $webHooksUrlsList = []; - if (!empty($webHooksList['items'])) { - $webHooksUrlsList = array_map(function ($webHook) { - return $webHook['notificationsUrl']; - }, $webHooksList['items']); - } + $webHooksUrlsList = []; + if (!empty($webHooksList['items'])) { + $webHooksUrlsList = array_map(function ($webHook) { + return $webHook['notificationsUrl']; + }, $webHooksList['items']); + } - if (!in_array($this->helper->getWebHookCallbackUrl(), $webHooksUrlsList)) { - $webHook = $this->webHookModel->createWebHook($clientId, $clientSecret, $this->helper->getWebHookCallbackUrl()); - if (!empty($webHook)) { - $this->helper->setConfig('validated', $params['client_id'] . $params['client_secret']); - $response = [ - 'success' => $webHook, - ]; + if (!in_array($this->helper->getWebHookCallbackUrl(), $webHooksUrlsList)) { + $webHook = $this->webHookModel->createWebHook($clientId, $clientSecret, $this->helper->getWebHookCallbackUrl()); + if (!empty($webHook)) { + $this->helper->setConfig('validated', $params['client_id'] . $params['client_secret']); + $response = [ + 'success' => $webHook, + ]; + } else { + $response = [ + 'success' => false, + 'errorText' => sprintf('Failed to create WebHook!'), + ]; + } } else { + $this->helper->setConfig('validated', $params['client_id'] . $params['client_secret']); $response = [ - 'success' => false, - 'errorText' => sprintf('Failed to create WebHook!'), + 'success' => true, ]; } } else { - $this->helper->setConfig('validated', $params['client_id'] . $params['client_secret']); $response = [ - 'success' => true, + 'success' => false, + 'errorText' => sprintf('Failed to get WebHooks list!'), ]; } } else { $response = [ - 'success' => false, - 'errorText' => sprintf('Failed to get WebHooks list!'), + 'success' => true, ]; } - } elseif ($this->helper->getConfig('validated') == ($params['client_id'] . $params['client_secret'])) { - $response = [ - 'success' => true, - ]; - } else { + }else { $response = [ 'success' => false, 'errorText' => sprintf('Enter Coinpayments.NET credentials!'), From 4ea9b25b190316164b3d4fdfcb90ef261599c992 Mon Sep 17 00:00:00 2001 From: letscode Date: Tue, 4 Feb 2020 11:39:26 +0200 Subject: [PATCH 15/57] Update readme --- README.md | 21 +++++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index deb6284..2b68b42 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,20 @@ -#install +# Coinpayments_CoinPayments Module -Clone source to "app/code/Coinpayments/CoinPayments" directory. +The Coinpayments_CoinPayments module provides the "Coinpayments.NET" payment method. -To enable module run: "bin/magento module:enable Coinpayments_CoinPayments" +## About CoinPayments Module -In admin backend on STORES > Configuration > SALES > Payment Methods page enter clientId to send invoices and enable webHooks and enter clientSecret to receive webHook notification. +CoinPayments module provides integration of your Magento 2 store with Coinpaymnets.NET services. This helps your customers shop quickly, safely and securely. +Your customers can pay on your website without re-entering their payment and address details. +All CoinPayments module transactions are protected. -On your first saving of configurations you create validating invoice with $ 0.01 cost, or creating webHook notification, if enabled. +## Dependencies -On /checkout/#payment page after placing orders you'll gonna be redirected to coin checkout page. \ No newline at end of file +You can find a list of modules in the require section of the `composer.json` file located in the +same directory as this `README.md` file. + +## Extension Points + +There are no extension points or service contracts for this module. + +## Additional Information \ No newline at end of file From ec60076c267b93a7fc9500dcdef9b3b8f562e345 Mon Sep 17 00:00:00 2001 From: letscode Date: Tue, 11 Feb 2020 11:31:23 +0200 Subject: [PATCH 16/57] Update transaction status --- Helper/Data.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Helper/Data.php b/Helper/Data.php index 638927b..796cc05 100644 --- a/Helper/Data.php +++ b/Helper/Data.php @@ -36,7 +36,7 @@ class Data extends AbstractHelper const WEBHOOK_NOTIFICATION_URL = 'coinpayments/webhooks/notification'; const API_INVOICE_COMPLETED = 'Completed'; - const API_INVOICE_EXPIRED = 'Expired'; + const API_INVOICE_EXPIRED = 'Cancelled'; /** * @var Config From 097ad4a13cd67064f65e5765aef78086730e135a Mon Sep 17 00:00:00 2001 From: letscode Date: Thu, 13 Feb 2020 11:33:51 +0200 Subject: [PATCH 17/57] Fix invoices statuses --- Helper/Data.php | 2 +- Model/WebHook.php | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Helper/Data.php b/Helper/Data.php index 796cc05..5463e03 100644 --- a/Helper/Data.php +++ b/Helper/Data.php @@ -36,7 +36,7 @@ class Data extends AbstractHelper const WEBHOOK_NOTIFICATION_URL = 'coinpayments/webhooks/notification'; const API_INVOICE_COMPLETED = 'Completed'; - const API_INVOICE_EXPIRED = 'Cancelled'; + const API_INVOICE_CANCELLED = 'Cancelled'; /** * @var Config diff --git a/Model/WebHook.php b/Model/WebHook.php index 23219dd..f7a0413 100644 --- a/Model/WebHook.php +++ b/Model/WebHook.php @@ -36,10 +36,10 @@ public function createWebHook($clientId, $clientSecret, $webHookCallbackUrl) "notificationsUrl" => $webHookCallbackUrl, "notifications" => [ "invoiceCreated", - "invoicePaymentsReceived", - "invoicePaymentsConfirmed", + "invoicePending", + "invoicePaid", "invoiceCompleted", - "invoiceExpired", + "invoiceCancelled", ], ]; @@ -93,7 +93,7 @@ public function receiveNotification($requestData) $order = $transaction->getOrder(); if ($requestData['invoice']['status'] == Data::API_INVOICE_COMPLETED) { $this->completeOrder($requestData['invoice'], $order, $transaction); - } elseif ($requestData['invoice']['status'] == Data::API_INVOICE_EXPIRED) { + } elseif ($requestData['invoice']['status'] == Data::API_INVOICE_CANCELLED) { $this->cancelOrder($order); } } From e7c06a188552ab68eaef26dabafb28cc698b85c4 Mon Sep 17 00:00:00 2001 From: letscode Date: Thu, 13 Feb 2020 11:35:40 +0200 Subject: [PATCH 18/57] Add invoice metadata --- Controller/Adminhtml/Validation/WebHook.php | 4 ++-- Helper/Data.php | 19 +++++++++++++++++-- Model/Invoice.php | 19 ++++++++++++++++--- etc/config.xml | 1 + 4 files changed, 36 insertions(+), 7 deletions(-) diff --git a/Controller/Adminhtml/Validation/WebHook.php b/Controller/Adminhtml/Validation/WebHook.php index 7813985..9b9bac9 100644 --- a/Controller/Adminhtml/Validation/WebHook.php +++ b/Controller/Adminhtml/Validation/WebHook.php @@ -36,8 +36,8 @@ public function execute() }, $webHooksList['items']); } - if (!in_array($this->helper->getWebHookCallbackUrl(), $webHooksUrlsList)) { - $webHook = $this->webHookModel->createWebHook($clientId, $clientSecret, $this->helper->getWebHookCallbackUrl()); + if (!in_array($this->helper->getHostUrl(DATA::WEBHOOK_NOTIFICATION_URL), $webHooksUrlsList)) { + $webHook = $this->webHookModel->createWebHook($clientId, $clientSecret, $this->helper->getHostUrl(DATA::WEBHOOK_NOTIFICATION_URL)); if (!empty($webHook)) { $this->helper->setConfig('validated', $params['client_id'] . $params['client_secret']); $response = [ diff --git a/Helper/Data.php b/Helper/Data.php index 5463e03..eaae446 100644 --- a/Helper/Data.php +++ b/Helper/Data.php @@ -24,6 +24,7 @@ class Data extends AbstractHelper const CLIENT_SECRET_KEY = 'client_secret'; const CLIENT_WEBHOOKS_KEY = 'webhooks'; const CLIENT_ORDER_STATUS_KEY = 'status_order_paid'; + const PACKAGE_VERSION = 'package_version'; const API_WEBHOOK_ACTION = 'merchant/clients/%s/webhooks'; const API_SIMPLE_INVOICE_ACTION = 'invoices'; @@ -95,11 +96,25 @@ public function getApiUrl($action) } /** + * @param $param + * @return mixed + */ + public function getBaseConfigParam($param) + { + $value = null; + if (isset($this->baseConf[$param])) { + $value = $this->baseConf[$param]; + } + return $value; + } + + /** + * @param string $route * @return string */ - public function getWebHookCallbackUrl() + public function getHostUrl($route = '') { - return $this->_getUrl(Data::WEBHOOK_NOTIFICATION_URL, ['_direct' => null]); + return $this->_getUrl($route, ['_direct' => null]); } /** diff --git a/Model/Invoice.php b/Model/Invoice.php index eef17d1..b2a06b6 100644 --- a/Model/Invoice.php +++ b/Model/Invoice.php @@ -44,6 +44,7 @@ public function createMerchant($clientId, $clientSecret, $currencyId, $invoiceId ], ]; + $requestData = $this->appendInvoiceMetadata($requestData); $headers = $this->getRequestHeaders($requestParams, $requestData); return $this->sendPostRequest($action, $headers, $requestData); } @@ -61,17 +62,18 @@ public function createSimple($clientId, $currencyId = 5057, $invoiceId = 'Valida $action = Data::API_SIMPLE_INVOICE_ACTION; - $requestParams = [ + $requestData = [ 'clientId' => $clientId, 'invoiceId' => $invoiceId, 'amount' => [ 'currencyId' => $currencyId, "displayValue" => $displayValue, 'value' => $amount - ] + ], ]; - return $this->sendPostRequest($action, [], $requestParams); + $requestData = $this->appendInvoiceMetadata($requestData); + return $this->sendPostRequest($action, [], $requestData); } /** @@ -92,4 +94,15 @@ public function createOrderTransaction($order, $coinInvoiceId) $transaction->save(); return $transaction->getTransactionId(); } + + protected function appendInvoiceMetadata($requestData) + { + + $requestData['metadata'] = [ + "integration" => sprintf("Magento_v%s", $this->helper->getBaseConfigParam(Data::PACKAGE_VERSION)), + "hostname" => $this->helper->getHostUrl(), + ]; + + return $requestData; + } } \ No newline at end of file diff --git a/etc/config.xml b/etc/config.xml index a853d22..4908558 100644 --- a/etc/config.xml +++ b/etc/config.xml @@ -15,6 +15,7 @@ https://orion-api.starhermit.com 1 + 2.0.0 From e3516baf27ae3bc0835bb563dd7a3614965041c9 Mon Sep 17 00:00:00 2001 From: letscode Date: Thu, 13 Feb 2020 11:36:29 +0200 Subject: [PATCH 19/57] Format module code --- Controller/Adminhtml/Validation/WebHook.php | 2 +- etc/adminhtml/routes.xml | 3 ++- etc/di.xml | 7 ++++--- etc/frontend/routes.xml | 5 +++-- etc/module.xml | 17 +++++++++-------- .../layout/adminhtml_system_config_edit.xml | 3 ++- .../layout/coinpayments_checkout_failure.xml | 6 ++++-- 7 files changed, 25 insertions(+), 18 deletions(-) diff --git a/Controller/Adminhtml/Validation/WebHook.php b/Controller/Adminhtml/Validation/WebHook.php index 9b9bac9..5a179fd 100644 --- a/Controller/Adminhtml/Validation/WebHook.php +++ b/Controller/Adminhtml/Validation/WebHook.php @@ -66,7 +66,7 @@ public function execute() 'success' => true, ]; } - }else { + } else { $response = [ 'success' => false, 'errorText' => sprintf('Enter Coinpayments.NET credentials!'), diff --git a/etc/adminhtml/routes.xml b/etc/adminhtml/routes.xml index 32b7201..bff2f1a 100644 --- a/etc/adminhtml/routes.xml +++ b/etc/adminhtml/routes.xml @@ -1,5 +1,6 @@ - + diff --git a/etc/di.xml b/etc/di.xml index 0444908..2b0a1b9 100644 --- a/etc/di.xml +++ b/etc/di.xml @@ -1,5 +1,6 @@ - - + + \ No newline at end of file diff --git a/etc/frontend/routes.xml b/etc/frontend/routes.xml index b040362..e4e6805 100644 --- a/etc/frontend/routes.xml +++ b/etc/frontend/routes.xml @@ -1,8 +1,9 @@ - + - + \ No newline at end of file diff --git a/etc/module.xml b/etc/module.xml index 75bebe6..70b380d 100644 --- a/etc/module.xml +++ b/etc/module.xml @@ -1,12 +1,13 @@ - - + + - - - - - - + + + + + + \ No newline at end of file diff --git a/view/adminhtml/layout/adminhtml_system_config_edit.xml b/view/adminhtml/layout/adminhtml_system_config_edit.xml index 0741871..af483a5 100644 --- a/view/adminhtml/layout/adminhtml_system_config_edit.xml +++ b/view/adminhtml/layout/adminhtml_system_config_edit.xml @@ -8,7 +8,8 @@ - +
diff --git a/view/frontend/layout/coinpayments_checkout_failure.xml b/view/frontend/layout/coinpayments_checkout_failure.xml index 71e3b5b..7831f24 100644 --- a/view/frontend/layout/coinpayments_checkout_failure.xml +++ b/view/frontend/layout/coinpayments_checkout_failure.xml @@ -5,7 +5,8 @@ * See COPYING.txt for license details. */ --> - + @@ -13,7 +14,8 @@ - + From eda27217f740de85274f0ea6c9c96f1f6cfd3c08 Mon Sep 17 00:00:00 2001 From: Albert Meyburgh Date: Fri, 24 Apr 2020 14:47:05 +0300 Subject: [PATCH 20/57] Update README.md --- README.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 2b68b42..a01c083 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,13 @@ +IMPORTANT NOTE: + +This is only for use with: https://alpha.coinpayments.net/ + +NOT for use with https://coinpayments.net + +Demonstration Website Disclaimer: The information presented on alpha.coinpayments.net (the "Demo Site") is for demonstration purposes only. All content on the Demo Site is considered “in development” and should be used at your own risk. CoinPayments Inc. assumes no responsibility or liability for any errors or omissions in the content of the Demo Site. The information contained in the Demo Site is provided on an "as is" basis with no guarantees of completeness, accuracy, usefulness or timeliness and without any warranties of any kind whatsoever, express or implied. CoinPayments Inc. does not warrant that the Demo Site and any information or material downloaded from the Demo Site, will be uninterrupted, error-free, omission-free or free of viruses or other harmful items. + +In no event will CoinPayments Inc. or its directors, officers, employees, shareholders, service providers or agents, be liable to you, or anyone else, for any decision(s) made or action(s) taken in reliance upon the information contained in the Demo Site, nor for any direct, indirect, incidental, special, exemplary, punitive, consequential, or other damages whatsoever (including, but not limited to, liability for loss of use, funds, data or profits) whether in an action of contract, statute, tort or otherwise, relating to the use of the Demo Site." + # Coinpayments_CoinPayments Module The Coinpayments_CoinPayments module provides the "Coinpayments.NET" payment method. @@ -17,4 +27,4 @@ same directory as this `README.md` file. There are no extension points or service contracts for this module. -## Additional Information \ No newline at end of file +## Additional Information From 6efd31a226891e38970ee3e4187cef8e7f8d6d4f Mon Sep 17 00:00:00 2001 From: letscode Date: Tue, 14 Jul 2020 04:25:25 +0300 Subject: [PATCH 21/57] Fix merchant invoice response --- Controller/Invoice/Create.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Controller/Invoice/Create.php b/Controller/Invoice/Create.php index 60a2d0d..68fdff2 100644 --- a/Controller/Invoice/Create.php +++ b/Controller/Invoice/Create.php @@ -101,7 +101,8 @@ public function execute() $invoiceId = sprintf('%s|%s', $order->getId(), $order->getPayment()->getId()); if ($merchantWebHooks) { - $invoiceData = $this->invoiceModel->createMerchant($clientId, $clientSecret, $coinCurrency['id'], $invoiceId, intval($amount), $order->getGrandTotal()); + $invoicesData = $this->invoiceModel->createMerchant($clientId, $clientSecret, $coinCurrency['id'], $invoiceId, intval($amount), $order->getGrandTotal()); + $invoiceData = array_shift($invoicesData); } else { $invoiceData = $this->invoiceModel->createSimple($clientId, $coinCurrency['id'], $invoiceId, intval($amount), $order->getGrandTotal()); } From 2bc2b71da501afd3ca1db9fbe622a6fd44111eb4 Mon Sep 17 00:00:00 2001 From: letscode Date: Sun, 9 Aug 2020 00:35:38 +0300 Subject: [PATCH 22/57] fix api host --- etc/config.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/config.xml b/etc/config.xml index 4908558..789364f 100644 --- a/etc/config.xml +++ b/etc/config.xml @@ -13,7 +13,7 @@ - https://orion-api.starhermit.com + https://alpha-api.coinpayments.net 1 2.0.0 From d9989ad8b06fced6cc496a7016779908728b512b Mon Sep 17 00:00:00 2001 From: letscode Date: Fri, 25 Sep 2020 10:30:05 +0300 Subject: [PATCH 23/57] update api domain --- etc/config.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/config.xml b/etc/config.xml index 789364f..bfc8a83 100644 --- a/etc/config.xml +++ b/etc/config.xml @@ -13,7 +13,7 @@ - https://alpha-api.coinpayments.net + https://api.coinpayments.net 1 2.0.0 From 883e0a2c924cf6628d1fa5cbc7b2802ff892fa27 Mon Sep 17 00:00:00 2001 From: letscode Date: Mon, 28 Sep 2020 22:43:03 +0300 Subject: [PATCH 24/57] Unify the naming of configuration fields --- etc/adminhtml/system.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/etc/adminhtml/system.xml b/etc/adminhtml/system.xml index e59e408..58f0925 100644 --- a/etc/adminhtml/system.xml +++ b/etc/adminhtml/system.xml @@ -25,7 +25,7 @@ - + required-entry validate-length minimum-length-22 maximum-length-32 coin-invoice-validate @@ -45,7 +45,7 @@ - + required-entry validate-length minimum-length-22 maximum-length-44 coin-webhooks-validate From 4a6611668865376bbececc8de9aba1d558c91c40 Mon Sep 17 00:00:00 2001 From: USS-Worker Date: Fri, 23 Oct 2020 00:27:18 -0700 Subject: [PATCH 25/57] Changing api-url on checkout - url --- etc/config.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/config.xml b/etc/config.xml index bfc8a83..aef307e 100644 --- a/etc/config.xml +++ b/etc/config.xml @@ -13,7 +13,7 @@ - https://api.coinpayments.net + https://checkout.coinpayments.net 1 2.0.0 From 7ff3dde276373dd24b40577d6a8c1f5cadbebafd Mon Sep 17 00:00:00 2001 From: letscode Date: Mon, 9 Nov 2020 21:26:12 +0200 Subject: [PATCH 26/57] Add hostname check to webhooks notifications --- Controller/Invoice/Create.php | 2 +- Model/WebHook.php | 39 ++++++++++++++++++----------------- 2 files changed, 21 insertions(+), 20 deletions(-) diff --git a/Controller/Invoice/Create.php b/Controller/Invoice/Create.php index 68fdff2..a372b06 100644 --- a/Controller/Invoice/Create.php +++ b/Controller/Invoice/Create.php @@ -98,7 +98,7 @@ public function execute() $clientId = $this->helper->getConfig(Data::CLIENT_ID_KEY); $clientSecret = $this->helper->getConfig(Data::CLIENT_SECRET_KEY); $merchantWebHooks = $this->helper->getConfig(Data::CLIENT_WEBHOOKS_KEY); - $invoiceId = sprintf('%s|%s', $order->getId(), $order->getPayment()->getId()); + $invoiceId = sprintf('%s|%s|%s', md5($this->helper->getHostUrl()), $order->getId(), $order->getPayment()->getId()); if ($merchantWebHooks) { $invoicesData = $this->invoiceModel->createMerchant($clientId, $clientSecret, $coinCurrency['id'], $invoiceId, intval($amount), $order->getGrandTotal()); diff --git a/Model/WebHook.php b/Model/WebHook.php index f7a0413..a12640e 100644 --- a/Model/WebHook.php +++ b/Model/WebHook.php @@ -77,24 +77,25 @@ public function receiveNotification($requestData) { $orderData = explode('|', $requestData['invoice']['invoiceId']); - $orderId = array_shift($orderData); - $paymentId = array_shift($orderData); - - $coinInvoiceId = $requestData['invoice']['id']; - - $transaction = $this->transactionRepository->getByTransactionId( - $coinInvoiceId, - $paymentId, - $orderId - ); - - if (!empty($transaction)) { - /** @var Order $order */ - $order = $transaction->getOrder(); - if ($requestData['invoice']['status'] == Data::API_INVOICE_COMPLETED) { - $this->completeOrder($requestData['invoice'], $order, $transaction); - } elseif ($requestData['invoice']['status'] == Data::API_INVOICE_CANCELLED) { - $this->cancelOrder($order); + $host = array_shift($orderData); + if ($host == md5($this->helper->getHostUrl())) { + $orderId = array_shift($orderData); + $paymentId = array_shift($orderData); + $coinInvoiceId = $requestData['invoice']['id']; + $transaction = $this->transactionRepository->getByTransactionId( + $coinInvoiceId, + $paymentId, + $orderId + ); + + if (!empty($transaction)) { + /** @var Order $order */ + $order = $transaction->getOrder(); + if ($requestData['invoice']['status'] == Data::API_INVOICE_COMPLETED) { + $this->completeOrder($requestData['invoice'], $order, $transaction); + } elseif ($requestData['invoice']['status'] == Data::API_INVOICE_CANCELLED) { + $this->cancelOrder($order); + } } } @@ -158,4 +159,4 @@ public function cancelOrder($order) ->save(); } -} \ No newline at end of file +} From ca6d621b904902664817c9d9f7288dbfd55a391c Mon Sep 17 00:00:00 2001 From: letscode Date: Mon, 9 Nov 2020 21:27:38 +0200 Subject: [PATCH 27/57] Fix merchant invoice response --- Controller/Invoice/Create.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Controller/Invoice/Create.php b/Controller/Invoice/Create.php index a372b06..1b42d52 100644 --- a/Controller/Invoice/Create.php +++ b/Controller/Invoice/Create.php @@ -102,7 +102,7 @@ public function execute() if ($merchantWebHooks) { $invoicesData = $this->invoiceModel->createMerchant($clientId, $clientSecret, $coinCurrency['id'], $invoiceId, intval($amount), $order->getGrandTotal()); - $invoiceData = array_shift($invoicesData); + $invoiceData = array_shift($invoicesData['invoices']); } else { $invoiceData = $this->invoiceModel->createSimple($clientId, $coinCurrency['id'], $invoiceId, intval($amount), $order->getGrandTotal()); } From 9646b3fc7287ffe42e458665b59a43b2b9201aff Mon Sep 17 00:00:00 2001 From: letscode Date: Mon, 9 Nov 2020 21:39:35 +0200 Subject: [PATCH 28/57] Update redirect host --- Helper/Data.php | 2 +- etc/config.xml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Helper/Data.php b/Helper/Data.php index eaae446..8a14983 100644 --- a/Helper/Data.php +++ b/Helper/Data.php @@ -127,7 +127,7 @@ public function getCoinCheckoutRedirectUrl($coinInvoiceId, $successUrl, $cancelU { return sprintf( '%s/checkout/?invoice-id=%s&success-url=%s&cancel-url=%s', - $this->baseConf['api_host'], + $this->baseConf['checkout_host'], $coinInvoiceId, $successUrl, $cancelUrl diff --git a/etc/config.xml b/etc/config.xml index bfc8a83..8fa1ab7 100644 --- a/etc/config.xml +++ b/etc/config.xml @@ -14,6 +14,7 @@ https://api.coinpayments.net + https://checkout.coinpayments.net 1 2.0.0 From 0a3dd0c1aadb16de76aec75a63d0748fc8ae8273 Mon Sep 17 00:00:00 2001 From: USS-Worker Date: Tue, 8 Dec 2020 01:49:37 -0800 Subject: [PATCH 29/57] Changing logo --- etc/config.xml | 1 - view/adminhtml/web/images/logo.png | Bin 6130 -> 50003 bytes view/frontend/web/images/logo.png | Bin 2876 -> 1475 bytes 3 files changed, 1 deletion(-) diff --git a/etc/config.xml b/etc/config.xml index aef307e..565d631 100644 --- a/etc/config.xml +++ b/etc/config.xml @@ -19,5 +19,4 @@ - ` \ No newline at end of file diff --git a/view/adminhtml/web/images/logo.png b/view/adminhtml/web/images/logo.png index 9bc9e035f6dee7e38112f825e1509d19e805a71f..eefad06b81254f836b05b5eabe257879f4733cc2 100644 GIT binary patch literal 50003 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 literal 6130 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 Ef_fF>OaK4? diff --git a/view/frontend/web/images/logo.png b/view/frontend/web/images/logo.png index 4cc78a80875d05fc8e0d8f6a4d030724e502a0ef..3467c9da139249e45da9958f21b564601bac1a01 100644 GIT binary patch literal 1475 zcmV;!1w8tRP)Px#1ZP1_K>z@;j|==^1pojAZAnByR9Hu~R%>h&RTMsVX13eiZowku(H3gEYYS?L z4G@T;z#kDqC=rXM5{eZ?i}4Xn^pB9n#Q2CY22{Y<1{z`niNqL{VnPVgV!#I$Td*yZ zy6v{m7P{?rAG0&p@6OHww!3t@z?baKz31Gy=R1#k?l8I?DCKfadfRN$c#iun_s>+d zG;C@{K{B7W6xojR^O(j;ILVpRw1k`Dn7CyGa?8)BW>%hdh%qOgiJzS$&gmXZ4e*%J zz9j^**0;>iNMCL7rMbkM=`bvw#I=0Sx%BLHt;=UVePNoAjl@k6nEU)m%Z&AH4@sOo z1^)^a(quyc%bb{s?Yqp?N+suayD93}?bkyGBXigCV->w1@G zXO>?S1e98sONhv5Bt&4#UY_#ej;{H?w8+mjGzVAx+7g^@sstDehGBmYqcV73frv~d z1(denM_kzW$HJ9Mk>&r#m;^R$?=Et8_iSox3$OmYEs%NfvZlfvBh<`dRNECUN#8Mz zABQ9pVu`_P6rxU5u+I4jg-JCRcI5@cJ0lUFz}%CTicdThzM%d}ee>{?wjMPQ)=4wo zfXh?YdeWp&%2K%K?X1Z^#bpXcUW@=?FUVeh{t524*1>qYDISHm1QtIsxg`5e<=Ofs zzh}Uw2d-Pl8E1KlH2fyh^>SFUnQ{Qd$;gL)89TqrNPkjJ(~@gMy@UK=hgEVeoMp=h zYohQ)>GKqfvJm%0@O&2smy1$c3ksJzcDa6o-st_%=_%czwU^sM+axzH#24a>#HZtp65(O&u8h#j1$XBu(|;2BTYzv^M0I!&q>#| ziHbF)F%h4D3AllCMbzq1>5IAn>!Ck}or~w#7j9fW;r_xb%Or6Qbzz+0>R}WT@7Th6 zwR_n4wtIJBr?JTmAR-zQ+2yTU(b--yrv?NW4Sre`M#WAmJuoXZJQU#m!;QoKmab4U z&gonIdkWAG5=Z<9ppwkdRS0ioyrJS`HJl01XFm)mr!NH4OBSSM)V?;orMK4AV=he? zW2PV$MA!t8P?*!P<^XN`e!#Nh;J}7&kNbWM2K6h+^#i*u@RR5TK^&Z`pxMm zh$x64FzhhDz(yZFGntBJ!uWWs191s-=DChw^EYrBJ4{hb;C>(#o!?1@6vj&NsdEsa zzk0a{qvyI+dheS)YQGqY6z4cGCINvXRV>_IonL2TYAKWWMpVF`rphS9eaD7q!`4gG z&j8 zjcB~a1(G5Vg}d5y+U?7)#C`lYrUy_2!x2s5xG4e#_A#w<_uYp>s(mfK3o2#CPvN%g dHML`a=s%k$MVNK`qdWir002ovPDHLkV1j0_z%l>; literal 2876 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 X%U{10%(AcjF};_KEsZJ--D3X-tYJ+I From cf13153d402735f1c4cbe0b0fc32b1722674cab8 Mon Sep 17 00:00:00 2001 From: letscode Date: Tue, 8 Dec 2020 18:22:06 +0200 Subject: [PATCH 30/57] Ignore .idea --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 5b9bd87..779cf88 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,2 @@ - +.idea *.bak From ef60a5233de3bea871771b58870fa69362e16f06 Mon Sep 17 00:00:00 2001 From: letscode Date: Thu, 28 Jan 2021 18:06:42 +0200 Subject: [PATCH 31/57] webhook notification url unique for each user & event --- Controller/Adminhtml/Validation/WebHook.php | 16 ++++++++++++---- Controller/WebHooks/Notification.php | 2 +- Helper/Data.php | 19 +++++++++++++++++-- Model/WebHook.php | 19 +++++++++---------- 4 files changed, 39 insertions(+), 17 deletions(-) diff --git a/Controller/Adminhtml/Validation/WebHook.php b/Controller/Adminhtml/Validation/WebHook.php index 5a179fd..6239b5c 100644 --- a/Controller/Adminhtml/Validation/WebHook.php +++ b/Controller/Adminhtml/Validation/WebHook.php @@ -36,12 +36,20 @@ public function execute() }, $webHooksList['items']); } - if (!in_array($this->helper->getHostUrl(DATA::WEBHOOK_NOTIFICATION_URL), $webHooksUrlsList)) { - $webHook = $this->webHookModel->createWebHook($clientId, $clientSecret, $this->helper->getHostUrl(DATA::WEBHOOK_NOTIFICATION_URL)); - if (!empty($webHook)) { + if ( + !in_array($this->helper->getNotificationUrl($clientId, DATA::PAID_EVENT), $webHooksUrlsList) || + !in_array($this->helper->getNotificationUrl($clientId, DATA::PENDING_EVENT), $webHooksUrlsList) || + !in_array($this->helper->getNotificationUrl($clientId, DATA::CANCELLED_EVENT), $webHooksUrlsList) + ) { + if ( + !empty($this->webHookModel->createWebHook($clientId, $clientSecret, DATA::PAID_EVENT)) && + !empty($this->webHookModel->createWebHook($clientId, $clientSecret, DATA::PENDING_EVENT)) && + !empty($this->webHookModel->createWebHook($clientId, $clientSecret, DATA::CANCELLED_EVENT)) + + ) { $this->helper->setConfig('validated', $params['client_id'] . $params['client_secret']); $response = [ - 'success' => $webHook, + 'success' => true, ]; } else { $response = [ diff --git a/Controller/WebHooks/Notification.php b/Controller/WebHooks/Notification.php index c84fa29..2d9c951 100644 --- a/Controller/WebHooks/Notification.php +++ b/Controller/WebHooks/Notification.php @@ -52,8 +52,8 @@ public function execute() if (!empty($this->helper->getConfig(Data::CLIENT_WEBHOOKS_KEY)) && !empty($this->getRequest()->getHeaders()->get('X-CoinPayments-Signature'))) { $content = $this->getRequest()->getContent(); $signature = $this->getRequest()->getHeaders()->get('X-CoinPayments-Signature')->getFieldValue(); + $requestData = json_decode($content, true); if ($this->checkDataSignature($signature, $content)) { - $requestData = json_decode($content, true); $this->webHookModel->receiveNotification($requestData); } } diff --git a/Helper/Data.php b/Helper/Data.php index 8a14983..610b0cc 100644 --- a/Helper/Data.php +++ b/Helper/Data.php @@ -36,8 +36,9 @@ class Data extends AbstractHelper const CREATE_INVOICE_URL = 'coinpayments/invoice/create'; const WEBHOOK_NOTIFICATION_URL = 'coinpayments/webhooks/notification'; - const API_INVOICE_COMPLETED = 'Completed'; - const API_INVOICE_CANCELLED = 'Cancelled'; + const PENDING_EVENT = 'Pending'; + const PAID_EVENT = 'Paid'; + const CANCELLED_EVENT = 'Cancelled'; /** * @var Config @@ -117,6 +118,20 @@ public function getHostUrl($route = '') return $this->_getUrl($route, ['_direct' => null]); } + /** + * @param $clientId + * @param $event + * @return string + */ + public function getNotificationUrl($clientId, $event) + { + $query = http_build_query(array( + 'event' => $event, + 'clientId' => $clientId, + )); + return $this->getHostUrl(DATA::WEBHOOK_NOTIFICATION_URL) . '?' . $query; + } + /** * @param $coinInvoiceId * @param $successUrl diff --git a/Model/WebHook.php b/Model/WebHook.php index a12640e..48111b6 100644 --- a/Model/WebHook.php +++ b/Model/WebHook.php @@ -16,11 +16,11 @@ class WebHook extends AbstractApi implements WebHookInterface /** * @param $clientId * @param $clientSecret - * @param $webHookCallbackUrl + * @param $event * @return mixed * @throws \Exception */ - public function createWebHook($clientId, $clientSecret, $webHookCallbackUrl) + public function createWebHook($clientId, $clientSecret, $event) { $action = sprintf(Data::API_WEBHOOK_ACTION, $clientId); @@ -33,13 +33,9 @@ public function createWebHook($clientId, $clientSecret, $webHookCallbackUrl) ]; $requestData = [ - "notificationsUrl" => $webHookCallbackUrl, + "notificationsUrl" => $this->helper->getNotificationUrl($clientId, $event), "notifications" => [ - "invoiceCreated", - "invoicePending", - "invoicePaid", - "invoiceCompleted", - "invoiceCancelled", + sprintf("invoice%s", $event), ], ]; @@ -91,9 +87,12 @@ public function receiveNotification($requestData) if (!empty($transaction)) { /** @var Order $order */ $order = $transaction->getOrder(); - if ($requestData['invoice']['status'] == Data::API_INVOICE_COMPLETED) { + + + $completed_statuses = array(Data::PAID_EVENT, Data::PENDING_EVENT); + if (in_array($requestData['invoice']['status'], $completed_statuses)) { $this->completeOrder($requestData['invoice'], $order, $transaction); - } elseif ($requestData['invoice']['status'] == Data::API_INVOICE_CANCELLED) { + } elseif ($requestData['invoice']['status'] == Data::CANCELLED_EVENT) { $this->cancelOrder($order); } } From 90d2ed5c969d4e319236e63a31f3756cdb24b860 Mon Sep 17 00:00:00 2001 From: letscode Date: Wed, 10 Feb 2021 20:19:05 +0200 Subject: [PATCH 32/57] Use order link as notesToRecipient --- Api/InvoiceInterface.php | 15 ++--- Controller/Adminhtml/Validation/Invoice.php | 14 +++- Controller/Invoice/Create.php | 30 +++++++-- Model/Invoice.php | 71 +++++++++++++++------ 4 files changed, 93 insertions(+), 37 deletions(-) diff --git a/Api/InvoiceInterface.php b/Api/InvoiceInterface.php index 0d81431..71b68a1 100644 --- a/Api/InvoiceInterface.php +++ b/Api/InvoiceInterface.php @@ -7,22 +7,17 @@ interface InvoiceInterface /** * @param $clientId - * @param $currencyId - * @param $invoiceId - * @param $amount + * @param $invoiceParams * @return mixed */ - public function createSimple($clientId, $currencyId, $invoiceId, $amount); + public function createSimple($clientId, $invoiceParams); /** * @param $clientId * @param $clientSecret - * @param $currencyId - * @param $invoiceId - * @param $amount - * @param $displayValue + * @param $invoiceParams * @return mixed */ - public function createMerchant($clientId, $clientSecret, $currencyId, $invoiceId, $amount, $displayValue); + public function createMerchant($clientId, $clientSecret, $invoiceParams); -} \ No newline at end of file +} diff --git a/Controller/Adminhtml/Validation/Invoice.php b/Controller/Adminhtml/Validation/Invoice.php index aa2d7d2..27705b1 100644 --- a/Controller/Adminhtml/Validation/Invoice.php +++ b/Controller/Adminhtml/Validation/Invoice.php @@ -16,7 +16,17 @@ public function execute() $response = []; if (!empty($params['client_id']) && $this->helper->getConfig('validated') != $params['client_id']) { $clientId = $params['client_id']; - $invoice = $this->invoiceModel->createSimple($clientId); + + $invoiceParams = array( + 'currencyId' => 5057, + 'invoiceId' => 'Validate invoice', + 'amount' => 1, + 'displayValue' => '0.01', + 'notesLink' => '', + ); + + $invoice = $this->invoiceModel->createSimple($clientId, $invoiceParams); + if ($invoice) { $this->helper->setConfig('validated', $params['client_id']); $response = [ @@ -44,4 +54,4 @@ public function execute() $result->setData($response); return $result; } -} \ No newline at end of file +} diff --git a/Controller/Invoice/Create.php b/Controller/Invoice/Create.php index 1b42d52..4d96183 100644 --- a/Controller/Invoice/Create.php +++ b/Controller/Invoice/Create.php @@ -41,6 +41,10 @@ class Create extends Action implements CsrfAwareActionInterface * @var Data */ protected $helper; + /** + * @var \Magento\Backend\Model\Url + */ + protected $backendUrl; /** * Create constructor. @@ -51,6 +55,7 @@ class Create extends Action implements CsrfAwareActionInterface * @param ScopeConfigInterface $scopeConfig * @param Url $urlBuilder * @param JsonFactory $jsonResultFactory + * @param \Magento\Backend\Model\Url $backendUrl */ public function __construct( Context $context, @@ -59,7 +64,8 @@ public function __construct( Session $checkoutSession, ScopeConfigInterface $scopeConfig, Url $urlBuilder, - JsonFactory $jsonResultFactory + JsonFactory $jsonResultFactory, + \Magento\Backend\Model\Url $backendUrl ) { @@ -69,6 +75,7 @@ public function __construct( $this->scopeConfig = $scopeConfig; $this->checkoutSession = $checkoutSession; $this->jsonResultFactory = $jsonResultFactory; + $this->backendUrl = $backendUrl; parent::__construct($context); } @@ -100,11 +107,22 @@ public function execute() $merchantWebHooks = $this->helper->getConfig(Data::CLIENT_WEBHOOKS_KEY); $invoiceId = sprintf('%s|%s|%s', md5($this->helper->getHostUrl()), $order->getId(), $order->getPayment()->getId()); - if ($merchantWebHooks) { - $invoicesData = $this->invoiceModel->createMerchant($clientId, $clientSecret, $coinCurrency['id'], $invoiceId, intval($amount), $order->getGrandTotal()); - $invoiceData = array_shift($invoicesData['invoices']); - } else { - $invoiceData = $this->invoiceModel->createSimple($clientId, $coinCurrency['id'], $invoiceId, intval($amount), $order->getGrandTotal()); + $invoiceParams = array( + 'invoiceId' => $invoiceId, + 'currencyId' => $coinCurrency['id'], + 'displayValue' => $order->getGrandTotal(), + 'amount' => intval($amount), + 'billingData' => $order->getBillingAddress(), + 'notesLink' => $this->backendUrl->getUrl('sales/order/view', ['order_id' => $order->getId()]), + ); + try { + if ($merchantWebHooks) { + $invoicesData = $this->invoiceModel->createMerchant($clientId, $clientSecret, $invoiceParams); + $invoiceData = array_shift($invoicesData['invoices']); + } else { + $invoiceData = $this->invoiceModel->createSimple($clientId, $invoiceParams); + } + } catch (\Exception $e) { } if (!empty($invoiceData['id'])) { diff --git a/Model/Invoice.php b/Model/Invoice.php index b2a06b6..26fe35f 100644 --- a/Model/Invoice.php +++ b/Model/Invoice.php @@ -16,14 +16,11 @@ class Invoice extends AbstractApi implements InvoiceInterface /** * @param $clientId * @param $clientSecret - * @param $currencyId - * @param $invoiceId - * @param $amount - * @param $displayValue + * @param $invoiceParams * @return mixed * @throws \Exception */ - public function createMerchant($clientId, $clientSecret, $currencyId, $invoiceId, $amount, $displayValue) + public function createMerchant($clientId, $clientSecret, $invoiceParams) { $action = Data::API_MERCHANT_INVOICE_ACTION; @@ -36,14 +33,19 @@ public function createMerchant($clientId, $clientSecret, $currencyId, $invoiceId ]; $requestData = [ - "invoiceId" => $invoiceId, + "invoiceId" => $invoiceParams['invoiceId'], "amount" => [ - "currencyId" => $currencyId, - "displayValue" => $displayValue, - "value" => $amount + "currencyId" => $invoiceParams['currencyId'], + "displayValue" => $invoiceParams['displayValue'], + "value" => $invoiceParams['amount'] ], + 'noteToRecipient' => $invoiceParams['notesLink'], ]; + if (isset($invoiceParams['billingData'])) { + $requestData['buyer'] = $this->appendBillingData($invoiceParams['billingData']); + } + $requestData = $this->appendInvoiceMetadata($requestData); $headers = $this->getRequestHeaders($requestParams, $requestData); return $this->sendPostRequest($action, $headers, $requestData); @@ -51,27 +53,29 @@ public function createMerchant($clientId, $clientSecret, $currencyId, $invoiceId /** * @param $clientId - * @param int $currencyId - * @param string $invoiceId - * @param int $amount - * @param string $displayValue + * @param $invoiceParams * @return mixed */ - public function createSimple($clientId, $currencyId = 5057, $invoiceId = 'Validate invoice', $amount = 1, $displayValue = '0.01') + public function createSimple($clientId, $invoiceParams) { $action = Data::API_SIMPLE_INVOICE_ACTION; $requestData = [ 'clientId' => $clientId, - 'invoiceId' => $invoiceId, + 'invoiceId' => $invoiceParams['invoiceId'], 'amount' => [ - 'currencyId' => $currencyId, - "displayValue" => $displayValue, - 'value' => $amount + 'currencyId' => $invoiceParams['currencyId'], + "displayValue" => $invoiceParams['displayValue'], + 'value' => $invoiceParams['amount'], ], + 'noteToRecipient' => $invoiceParams['notesLink'], ]; + if (isset($invoiceParams['billingData'])) { + $requestData['buyer'] = $this->appendBillingData($invoiceParams['billingData']); + } + $requestData = $this->appendInvoiceMetadata($requestData); return $this->sendPostRequest($action, [], $requestData); } @@ -95,6 +99,10 @@ public function createOrderTransaction($order, $coinInvoiceId) return $transaction->getTransactionId(); } + /** + * @param $requestData + * @return mixed + */ protected function appendInvoiceMetadata($requestData) { @@ -105,4 +113,29 @@ protected function appendInvoiceMetadata($requestData) return $requestData; } -} \ No newline at end of file + + /** + * @param $billingData + * @return array + */ + function appendBillingData($billingData) + { + return array( + "companyName" => $billingData->getCompany(), + "name" => array( + "firstName" => $billingData->getFirstname(), + "lastName" => $billingData->getLastname(), + ), + "emailAddress" => $billingData->getEmail(), + "phoneNumber" => $billingData->getTelephone(), + "address" => array( + "address1" => $billingData->getStreetLine(1), + "address2" => $billingData->getStreetLine(2), + "provinceOrState" => $billingData->getRegionCode(), + "city" => $billingData->getCity(), + "countryCode" => $billingData->getCountryId(), + "postalCode" => $billingData->getPostcode() + ) + ); + } +} From 534207e1213f3f69eef7a3de627451aaffc9e32f Mon Sep 17 00:00:00 2001 From: letscode Date: Thu, 11 Feb 2021 00:14:00 +0200 Subject: [PATCH 33/57] add invoice info to order --- Model/WebHook.php | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/Model/WebHook.php b/Model/WebHook.php index 48111b6..513235f 100644 --- a/Model/WebHook.php +++ b/Model/WebHook.php @@ -87,8 +87,6 @@ public function receiveNotification($requestData) if (!empty($transaction)) { /** @var Order $order */ $order = $transaction->getOrder(); - - $completed_statuses = array(Data::PAID_EVENT, Data::PENDING_EVENT); if (in_array($requestData['invoice']['status'], $completed_statuses)) { $this->completeOrder($requestData['invoice'], $order, $transaction); @@ -137,6 +135,14 @@ public function completeOrder($rawDetails, $order, $transaction) $payment->addTransactionCommentsToOrder($transaction, __('The authorized amount is %1.', $formatedPrice)); $payment->setParentTransactionId(null); + $invoice = $order->prepareInvoice()->register(); + $invoice->setOrder($order); + $invoice->setOrder($order); + $invoice->pay(); + + $order->addRelatedObject($invoice); + $payment->setCreatedInvoice($invoice); + $payment->save(); $order->save(); $transaction->save(); From 059bde0808a456e83f41454cea7944473856bbd7 Mon Sep 17 00:00:00 2001 From: letscode Date: Tue, 16 Feb 2021 23:05:30 +0200 Subject: [PATCH 34/57] Fix invoice buyer info --- Model/Invoice.php | 54 +++++++++++++++++++++++++++-------------------- 1 file changed, 31 insertions(+), 23 deletions(-) diff --git a/Model/Invoice.php b/Model/Invoice.php index 26fe35f..4f76a91 100644 --- a/Model/Invoice.php +++ b/Model/Invoice.php @@ -33,11 +33,11 @@ public function createMerchant($clientId, $clientSecret, $invoiceParams) ]; $requestData = [ - "invoiceId" => $invoiceParams['invoiceId'], - "amount" => [ - "currencyId" => $invoiceParams['currencyId'], - "displayValue" => $invoiceParams['displayValue'], - "value" => $invoiceParams['amount'] + 'invoiceId' => $invoiceParams['invoiceId'], + 'amount' => [ + 'currencyId' => $invoiceParams['currencyId'], + 'displayValue' => $invoiceParams['displayValue'], + 'value' => $invoiceParams['amount'] ], 'noteToRecipient' => $invoiceParams['notesLink'], ]; @@ -66,7 +66,7 @@ public function createSimple($clientId, $invoiceParams) 'invoiceId' => $invoiceParams['invoiceId'], 'amount' => [ 'currencyId' => $invoiceParams['currencyId'], - "displayValue" => $invoiceParams['displayValue'], + 'displayValue' => $invoiceParams['displayValue'], 'value' => $invoiceParams['amount'], ], 'noteToRecipient' => $invoiceParams['notesLink'], @@ -107,8 +107,8 @@ protected function appendInvoiceMetadata($requestData) { $requestData['metadata'] = [ - "integration" => sprintf("Magento_v%s", $this->helper->getBaseConfigParam(Data::PACKAGE_VERSION)), - "hostname" => $this->helper->getHostUrl(), + 'integration' => sprintf('Magento_v%s', $this->helper->getBaseConfigParam(Data::PACKAGE_VERSION)), + 'hostname' => $this->helper->getHostUrl(), ]; return $requestData; @@ -120,22 +120,30 @@ protected function appendInvoiceMetadata($requestData) */ function appendBillingData($billingData) { - return array( - "companyName" => $billingData->getCompany(), - "name" => array( - "firstName" => $billingData->getFirstname(), - "lastName" => $billingData->getLastname(), + $params = array( + 'companyName' => $billingData->getCompany(), + 'name' => array( + 'firstName' => $billingData->getFirstname(), + 'lastName' => $billingData->getLastname(), ), - "emailAddress" => $billingData->getEmail(), - "phoneNumber" => $billingData->getTelephone(), - "address" => array( - "address1" => $billingData->getStreetLine(1), - "address2" => $billingData->getStreetLine(2), - "provinceOrState" => $billingData->getRegionCode(), - "city" => $billingData->getCity(), - "countryCode" => $billingData->getCountryId(), - "postalCode" => $billingData->getPostcode() - ) + 'emailAddress' => $billingData->getEmail(), + 'phoneNumber' => $billingData->getTelephone(), + ); + + + if (!empty($billingData->getStreetLine(1)) && + !empty($billingData->getCity()) && + preg_match('/^([A-Z]{2})$/', $billingData->getCountryId()) + ) { + $params['address'] = array( + 'address1' => $billingData->getStreetLine(1), + 'address2' => $billingData->getStreetLine(2), + 'provinceOrState' => $billingData->getRegionCode(), + 'city' => $billingData->getCity(), + 'countryCode' => $billingData->getCountryId(), + 'postalCode' => $billingData->getPostcode() + ); + } } } From 18fd99f006ca3c5401838eb199f51d761c38d69a Mon Sep 17 00:00:00 2001 From: letscode Date: Tue, 16 Feb 2021 23:06:10 +0200 Subject: [PATCH 35/57] Use Paid status to confirm payment --- Controller/Adminhtml/Validation/WebHook.php | 2 -- Helper/Data.php | 1 - Model/WebHook.php | 3 +-- 3 files changed, 1 insertion(+), 5 deletions(-) diff --git a/Controller/Adminhtml/Validation/WebHook.php b/Controller/Adminhtml/Validation/WebHook.php index 6239b5c..65758ca 100644 --- a/Controller/Adminhtml/Validation/WebHook.php +++ b/Controller/Adminhtml/Validation/WebHook.php @@ -38,12 +38,10 @@ public function execute() if ( !in_array($this->helper->getNotificationUrl($clientId, DATA::PAID_EVENT), $webHooksUrlsList) || - !in_array($this->helper->getNotificationUrl($clientId, DATA::PENDING_EVENT), $webHooksUrlsList) || !in_array($this->helper->getNotificationUrl($clientId, DATA::CANCELLED_EVENT), $webHooksUrlsList) ) { if ( !empty($this->webHookModel->createWebHook($clientId, $clientSecret, DATA::PAID_EVENT)) && - !empty($this->webHookModel->createWebHook($clientId, $clientSecret, DATA::PENDING_EVENT)) && !empty($this->webHookModel->createWebHook($clientId, $clientSecret, DATA::CANCELLED_EVENT)) ) { diff --git a/Helper/Data.php b/Helper/Data.php index 610b0cc..9056466 100644 --- a/Helper/Data.php +++ b/Helper/Data.php @@ -36,7 +36,6 @@ class Data extends AbstractHelper const CREATE_INVOICE_URL = 'coinpayments/invoice/create'; const WEBHOOK_NOTIFICATION_URL = 'coinpayments/webhooks/notification'; - const PENDING_EVENT = 'Pending'; const PAID_EVENT = 'Paid'; const CANCELLED_EVENT = 'Cancelled'; diff --git a/Model/WebHook.php b/Model/WebHook.php index 513235f..5d3a0be 100644 --- a/Model/WebHook.php +++ b/Model/WebHook.php @@ -87,8 +87,7 @@ public function receiveNotification($requestData) if (!empty($transaction)) { /** @var Order $order */ $order = $transaction->getOrder(); - $completed_statuses = array(Data::PAID_EVENT, Data::PENDING_EVENT); - if (in_array($requestData['invoice']['status'], $completed_statuses)) { + if ($requestData['invoice']['status'] == Data::PAID_EVENT) { $this->completeOrder($requestData['invoice'], $order, $transaction); } elseif ($requestData['invoice']['status'] == Data::CANCELLED_EVENT) { $this->cancelOrder($order); From fef67fe32bfa7dc5e3dcb0d29402dc288e57c52f Mon Sep 17 00:00:00 2001 From: letscode Date: Wed, 17 Feb 2021 01:02:03 +0200 Subject: [PATCH 36/57] Add SEO description --- view/frontend/web/template/payment/coin_payment.html | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/view/frontend/web/template/payment/coin_payment.html b/view/frontend/web/template/payment/coin_payment.html index 295bbdc..91c7081 100644 --- a/view/frontend/web/template/payment/coin_payment.html +++ b/view/frontend/web/template/payment/coin_payment.html @@ -14,6 +14,10 @@ +
From 30735c5aa1a6d8c2e13670d9d13a3f2748d92621 Mon Sep 17 00:00:00 2001 From: letscode Date: Mon, 22 Mar 2021 16:15:44 +0200 Subject: [PATCH 37/57] Fix php version compatibility --- Controller/Invoice/Create.php | 4 ++-- Controller/WebHooks/Notification.php | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Controller/Invoice/Create.php b/Controller/Invoice/Create.php index 4d96183..fcaa316 100644 --- a/Controller/Invoice/Create.php +++ b/Controller/Invoice/Create.php @@ -166,12 +166,12 @@ protected function getCoinCurrency(string $name) return array_shift($items); } - public function createCsrfValidationException(RequestInterface $request): ?InvalidRequestException + public function createCsrfValidationException(RequestInterface $request) { return null; } - public function validateForCsrf(RequestInterface $request): ?bool + public function validateForCsrf(RequestInterface $request) { return true; } diff --git a/Controller/WebHooks/Notification.php b/Controller/WebHooks/Notification.php index 2d9c951..bfacb48 100644 --- a/Controller/WebHooks/Notification.php +++ b/Controller/WebHooks/Notification.php @@ -74,12 +74,12 @@ protected function checkDataSignature($signature, $content) return $signature == $encodedPure; } - public function createCsrfValidationException(RequestInterface $request): ?InvalidRequestException + public function createCsrfValidationException(RequestInterface $request) { return null; } - public function validateForCsrf(RequestInterface $request): ?bool + public function validateForCsrf(RequestInterface $request) { return true; } From e60fd09d56303c04f063e5fca7a6d91fb37090f5 Mon Sep 17 00:00:00 2001 From: letscode Date: Mon, 22 Mar 2021 16:17:08 +0200 Subject: [PATCH 38/57] Fix invoice buyer data --- Model/Invoice.php | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Model/Invoice.php b/Model/Invoice.php index 4f76a91..d043921 100644 --- a/Model/Invoice.php +++ b/Model/Invoice.php @@ -126,11 +126,12 @@ function appendBillingData($billingData) 'firstName' => $billingData->getFirstname(), 'lastName' => $billingData->getLastname(), ), - 'emailAddress' => $billingData->getEmail(), 'phoneNumber' => $billingData->getTelephone(), - ); + if (preg_match('/^.*@.*$/', $billingData->getEmail())) { + $params['emailAddress'] = $billingData->getEmail(); + } if (!empty($billingData->getStreetLine(1)) && !empty($billingData->getCity()) && @@ -145,5 +146,7 @@ function appendBillingData($billingData) 'postalCode' => $billingData->getPostcode() ); } + + return $params; } } From 76806cd4553d538618a678ab4285b7d78d760599 Mon Sep 17 00:00:00 2001 From: letscode Date: Thu, 25 Mar 2021 16:20:18 +0200 Subject: [PATCH 39/57] Revert "Fix php version compatibility" This reverts commit 30735c5a --- Controller/Invoice/Create.php | 4 ++-- Controller/WebHooks/Notification.php | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Controller/Invoice/Create.php b/Controller/Invoice/Create.php index fcaa316..4d96183 100644 --- a/Controller/Invoice/Create.php +++ b/Controller/Invoice/Create.php @@ -166,12 +166,12 @@ protected function getCoinCurrency(string $name) return array_shift($items); } - public function createCsrfValidationException(RequestInterface $request) + public function createCsrfValidationException(RequestInterface $request): ?InvalidRequestException { return null; } - public function validateForCsrf(RequestInterface $request) + public function validateForCsrf(RequestInterface $request): ?bool { return true; } diff --git a/Controller/WebHooks/Notification.php b/Controller/WebHooks/Notification.php index bfacb48..2d9c951 100644 --- a/Controller/WebHooks/Notification.php +++ b/Controller/WebHooks/Notification.php @@ -74,12 +74,12 @@ protected function checkDataSignature($signature, $content) return $signature == $encodedPure; } - public function createCsrfValidationException(RequestInterface $request) + public function createCsrfValidationException(RequestInterface $request): ?InvalidRequestException { return null; } - public function validateForCsrf(RequestInterface $request) + public function validateForCsrf(RequestInterface $request): ?bool { return true; } From 96e6205b45c87ece85e9625c71ab5981fe3b5893 Mon Sep 17 00:00:00 2001 From: letscode Date: Thu, 25 Mar 2021 16:22:18 +0200 Subject: [PATCH 40/57] Fix composer php requirements --- composer.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/composer.json b/composer.json index 266a15a..e339362 100644 --- a/composer.json +++ b/composer.json @@ -2,8 +2,7 @@ "name": "coinpaymentsnet/magento2", "description": "Add new payment method for CoinPayments.net", "require": { - "php": "~5.5.0|~5.6.0|~7.0.0|~7.1", - "lusitanian/oauth": "~0.8.10" + "php": "~7.3.0||~7.4.0" }, "type": "magento2-module", "version": "2.0.0", From aa454721588861c69d3c2f956900059326a0958a Mon Sep 17 00:00:00 2001 From: letscode Date: Thu, 25 Mar 2021 16:23:41 +0200 Subject: [PATCH 41/57] Add notesToRecipient description --- Controller/Invoice/Create.php | 24 ++++++++++++++++-------- Helper/Data.php | 10 ++++++++++ Model/Invoice.php | 4 ++-- 3 files changed, 28 insertions(+), 10 deletions(-) diff --git a/Controller/Invoice/Create.php b/Controller/Invoice/Create.php index 4d96183..94a28a7 100644 --- a/Controller/Invoice/Create.php +++ b/Controller/Invoice/Create.php @@ -107,15 +107,23 @@ public function execute() $merchantWebHooks = $this->helper->getConfig(Data::CLIENT_WEBHOOKS_KEY); $invoiceId = sprintf('%s|%s|%s', md5($this->helper->getHostUrl()), $order->getId(), $order->getPayment()->getId()); - $invoiceParams = array( - 'invoiceId' => $invoiceId, - 'currencyId' => $coinCurrency['id'], - 'displayValue' => $order->getGrandTotal(), - 'amount' => intval($amount), - 'billingData' => $order->getBillingAddress(), - 'notesLink' => $this->backendUrl->getUrl('sales/order/view', ['order_id' => $order->getId()]), - ); try { + $notesLink = sprintf( + "%s|Store name: %s|Order #%s", + $this->backendUrl->getUrl('sales/order/view', ['order_id' => $order->getId(), '_nosecret' => true]), + $this->helper->getGeneralConfig('store_information/name'), + $order->getId() + ); + + $invoiceParams = array( + 'invoiceId' => $invoiceId, + 'currencyId' => $coinCurrency['id'], + 'displayValue' => $order->getGrandTotal(), + 'amount' => intval($amount), + 'billingData' => $order->getBillingAddress(), + 'notesLink' => $notesLink, + ); + if ($merchantWebHooks) { $invoicesData = $this->invoiceModel->createMerchant($clientId, $clientSecret, $invoiceParams); $invoiceData = array_shift($invoicesData['invoices']); diff --git a/Helper/Data.php b/Helper/Data.php index 9056466..9cb1d53 100644 --- a/Helper/Data.php +++ b/Helper/Data.php @@ -19,6 +19,7 @@ class Data extends AbstractHelper const INVOICE_CACHE_PREFIX = 'CoinpaymentsInvoice'; const XML_PATH_CONFIG_COINPAYMENTS = 'payment/coin_payments/'; + const XML_PATH_CONFIG_GENERAL = 'general/'; const CLIENT_ID_KEY = 'client_id'; const CLIENT_SECRET_KEY = 'client_secret'; @@ -68,6 +69,15 @@ public function getConfig($param) return $this->scopeConfig->getValue(self::XML_PATH_CONFIG_COINPAYMENTS . $param); } + /** + * @param $param + * @return mixed + */ + public function getGeneralConfig($param) + { + return $this->scopeConfig->getValue(self::XML_PATH_CONFIG_GENERAL . $param); + } + /** * @param $param * @param $value diff --git a/Model/Invoice.php b/Model/Invoice.php index d043921..bac1a09 100644 --- a/Model/Invoice.php +++ b/Model/Invoice.php @@ -39,7 +39,7 @@ public function createMerchant($clientId, $clientSecret, $invoiceParams) 'displayValue' => $invoiceParams['displayValue'], 'value' => $invoiceParams['amount'] ], - 'noteToRecipient' => $invoiceParams['notesLink'], + 'notesToRecipient' => $invoiceParams['notesLink'], ]; if (isset($invoiceParams['billingData'])) { @@ -69,7 +69,7 @@ public function createSimple($clientId, $invoiceParams) 'displayValue' => $invoiceParams['displayValue'], 'value' => $invoiceParams['amount'], ], - 'noteToRecipient' => $invoiceParams['notesLink'], + 'notesToRecipient' => $invoiceParams['notesLink'], ]; if (isset($invoiceParams['billingData'])) { From e9512731c684e4efe9099f1d6045108fb64bf11c Mon Sep 17 00:00:00 2001 From: letscode Date: Thu, 25 Mar 2021 16:34:25 +0200 Subject: [PATCH 42/57] Update webhook url formation --- Helper/Data.php | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/Helper/Data.php b/Helper/Data.php index 9cb1d53..f38862f 100644 --- a/Helper/Data.php +++ b/Helper/Data.php @@ -122,9 +122,9 @@ public function getBaseConfigParam($param) * @param string $route * @return string */ - public function getHostUrl($route = '') + public function getHostUrl($route = '', $params = ['_direct' => null]) { - return $this->_getUrl($route, ['_direct' => null]); + return $this->_getUrl($route, $params); } /** @@ -138,7 +138,10 @@ public function getNotificationUrl($clientId, $event) 'event' => $event, 'clientId' => $clientId, )); - return $this->getHostUrl(DATA::WEBHOOK_NOTIFICATION_URL) . '?' . $query; + return $this->getHostUrl(DATA::WEBHOOK_NOTIFICATION_URL, [ + '_nosid' => true, + '_query' => $query, + ]); } /** From f197fe5c9b380e2031471cac7c58103875e8b20a Mon Sep 17 00:00:00 2001 From: letscode-u <52743085+letscode-u@users.noreply.github.com> Date: Mon, 19 Apr 2021 11:39:41 +0300 Subject: [PATCH 43/57] Revert "Alpha" --- .gitignore | 2 +- Api/CurrencyManagementInterface.php | 13 + Api/InvoiceInterface.php | 23 -- Api/TransactionInterface.php | 13 + Api/WebHookInterface.php | 22 -- Block/Form/Coinpayments.php | 37 +++ Block/Iframe.php | 122 ++++++++ Block/Info.php | 26 ++ Block/Redirect.php | 60 ++++ Block/Status.php | 62 +++++ Controller/Adminhtml/Validation/Invoice.php | 57 ---- .../Adminhtml/Validation/Validation.php | 61 ---- Controller/Adminhtml/Validation/WebHook.php | 87 ------ Controller/Checkout/Failure.php | 72 ++--- Controller/Iframe/Index.php | 62 +++++ Controller/Invoice/Create.php | 187 ------------- Controller/Invoice/Index.php | 105 +++++++ Controller/Ipn/Handle.php | 71 +++++ Controller/Ipn/Index.php | 237 ++++++++++++++++ Controller/Transaction/Status.php | 40 +++ Controller/WebHooks/Notification.php | 86 ------ Helper/Data.php | 152 ++-------- Logger/Handler.php | 24 ++ Logger/Logger.php | 12 + Model/AbstractApi.php | 186 ------------- Model/AbstractIpn.php | 261 ++++++++++++++++++ Model/Api/Base.php | 119 ++++++++ Model/Api/Rate.php | 59 ++++ Model/Api/Transaction.php | 73 +++++ Model/CoinPaymentsConfigProvider.php | 75 ++++- Model/Config/Source/Currency.php | 48 ++++ Model/Currency.php | 37 +++ Model/Info.php | 33 +++ Model/Invoice.php | 152 ---------- Model/Ipn.php | 68 +++++ Model/IpnInterface.php | 13 + Model/Methods/Coinpayments.php | 23 +- Model/Transaction.php | 56 ++++ Model/WebHook.php | 166 ----------- README.md | 62 +++-- composer.json | 6 +- etc/acl.xml | 1 + etc/adminhtml/routes.xml | 9 - etc/adminhtml/system.xml | 116 ++++---- etc/config.xml | 16 +- etc/di.xml | 27 +- etc/frontend/routes.xml | 11 +- etc/module.xml | 23 +- etc/payment.xml | 6 + etc/webapi.xml | 15 + registration.php | 4 + .../layout/adminhtml_system_config_edit.xml | 15 - view/adminhtml/requirejs-config.js | 6 - .../templates/coinpayments/info/default.phtml | 11 + view/adminhtml/templates/js_vars.phtml | 8 - view/adminhtml/web/images/logo.png | Bin 50003 -> 0 bytes view/adminhtml/web/js/invoice-validate.js | 38 --- view/adminhtml/web/js/webhooks-validate.js | 48 ---- view/adminhtml/web/styles.css | 30 -- view/frontend/layout/checkout_index_index.xml | 106 +++---- .../layout/coinpayments_checkout_failure.xml | 6 +- .../layout/coinpayments_invoice_index.xml | 14 + .../coinpayments_transaction_status.xml | 14 + .../coinpayments/form/coinpayments.phtml | 13 + .../templates/coinpayments/iframe.phtml | 53 ++++ .../templates/coinpayments/redirect.phtml | 11 + .../templates/coinpayments/status.phtml | 35 +++ view/frontend/templates/js_vars.phtml | 7 - view/frontend/web/images/logo.png | Bin 1475 -> 2876 bytes view/frontend/web/images/logo.svg | 75 +++++ .../web/js/action/set-payment-method.js | 110 ++++---- .../web/js/model/validate-direct-form.js | 41 +++ .../web/js/view/payment/coin_payments.js | 2 +- .../payment/method-renderer/coin-method.js | 171 ++++++++++-- .../js/view/payment/validate-direct-form.js | 16 ++ .../web/template/payment/coin_payment.html | 97 ++++--- .../template/payment/coin_payment_form.html | 38 +++ .../payment/coin_payment_message.html | 2 + 78 files changed, 2611 insertions(+), 1654 deletions(-) create mode 100644 Api/CurrencyManagementInterface.php delete mode 100644 Api/InvoiceInterface.php create mode 100644 Api/TransactionInterface.php delete mode 100644 Api/WebHookInterface.php create mode 100644 Block/Form/Coinpayments.php create mode 100644 Block/Iframe.php create mode 100644 Block/Info.php create mode 100644 Block/Redirect.php create mode 100644 Block/Status.php delete mode 100644 Controller/Adminhtml/Validation/Invoice.php delete mode 100644 Controller/Adminhtml/Validation/Validation.php delete mode 100644 Controller/Adminhtml/Validation/WebHook.php create mode 100644 Controller/Iframe/Index.php delete mode 100644 Controller/Invoice/Create.php create mode 100644 Controller/Invoice/Index.php create mode 100644 Controller/Ipn/Handle.php create mode 100644 Controller/Ipn/Index.php create mode 100644 Controller/Transaction/Status.php delete mode 100644 Controller/WebHooks/Notification.php create mode 100644 Logger/Handler.php create mode 100644 Logger/Logger.php delete mode 100644 Model/AbstractApi.php create mode 100644 Model/AbstractIpn.php create mode 100644 Model/Api/Base.php create mode 100644 Model/Api/Rate.php create mode 100644 Model/Api/Transaction.php create mode 100644 Model/Config/Source/Currency.php create mode 100644 Model/Currency.php create mode 100644 Model/Info.php delete mode 100644 Model/Invoice.php create mode 100644 Model/Ipn.php create mode 100644 Model/IpnInterface.php create mode 100644 Model/Transaction.php delete mode 100644 Model/WebHook.php delete mode 100644 etc/adminhtml/routes.xml create mode 100644 etc/webapi.xml delete mode 100644 view/adminhtml/layout/adminhtml_system_config_edit.xml delete mode 100644 view/adminhtml/requirejs-config.js create mode 100644 view/adminhtml/templates/coinpayments/info/default.phtml delete mode 100644 view/adminhtml/templates/js_vars.phtml delete mode 100644 view/adminhtml/web/images/logo.png delete mode 100644 view/adminhtml/web/js/invoice-validate.js delete mode 100644 view/adminhtml/web/js/webhooks-validate.js delete mode 100644 view/adminhtml/web/styles.css create mode 100644 view/frontend/layout/coinpayments_invoice_index.xml create mode 100644 view/frontend/layout/coinpayments_transaction_status.xml create mode 100644 view/frontend/templates/coinpayments/form/coinpayments.phtml create mode 100644 view/frontend/templates/coinpayments/iframe.phtml create mode 100644 view/frontend/templates/coinpayments/redirect.phtml create mode 100644 view/frontend/templates/coinpayments/status.phtml delete mode 100644 view/frontend/templates/js_vars.phtml create mode 100644 view/frontend/web/images/logo.svg create mode 100644 view/frontend/web/js/model/validate-direct-form.js create mode 100644 view/frontend/web/js/view/payment/validate-direct-form.js create mode 100644 view/frontend/web/template/payment/coin_payment_form.html create mode 100644 view/frontend/web/template/payment/coin_payment_message.html diff --git a/.gitignore b/.gitignore index 779cf88..5b9bd87 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,2 @@ -.idea + *.bak diff --git a/Api/CurrencyManagementInterface.php b/Api/CurrencyManagementInterface.php new file mode 100644 index 0000000..67ebb9d --- /dev/null +++ b/Api/CurrencyManagementInterface.php @@ -0,0 +1,13 @@ + + */ + +namespace Coinpayments\CoinPayments\Block\Form; + +use Magento\Customer\Helper\Session\CurrentCustomer; + +class Coinpayments extends \Magento\Payment\Block\Form +{ + /** + * Payment method code + * + * @var string + */ + protected $_methodCode = 'coin_payments'; + + /** + * @var null + */ + protected $_config; + + /** + * @var CurrentCustomer + */ + protected $currentCustomer; + + protected function _construct() + { + $template = 'Coinpayments_CoinPayments::coinpayments/form/coinpayments.phtml'; + $this->setTemplate($template); + + parent::__construct(); + } +} diff --git a/Block/Iframe.php b/Block/Iframe.php new file mode 100644 index 0000000..e68611c --- /dev/null +++ b/Block/Iframe.php @@ -0,0 +1,122 @@ + + */ + +namespace Coinpayments\CoinPayments\Block; + +class Iframe extends \Magento\Framework\View\Element\Template +{ + const PATH_TO_PAYMENT_CONFIG = 'payment/coin_payments/'; + + /** + * @var \Magento\Framework\Registry + */ + protected $_coreRegistry; + + + /** + * @var \Magento\Quote\Model\QuoteRepository + */ + protected $quoteRepository; + /** + * Iframe constructor. + * @param \Magento\Framework\View\Element\Template\Context $context + * @param \Magento\Framework\Registry $coreRegistry + * @param \Magento\Quote\Model\QuoteRepository $quoteRepository + * @param array $data + */ + public function __construct( + \Magento\Framework\View\Element\Template\Context $context, + \Magento\Framework\Registry $coreRegistry, + \Magento\Quote\Model\QuoteRepository $quoteRepository, + array $data = [] + ) { + $this->quoteRepository = $quoteRepository; + $this->_coreRegistry = $coreRegistry; + parent::__construct($context, $data); + } + + /** + * @return mixed + */ + public function getLastOrderId() + { + $lastSuccessOrderId = $this->_coreRegistry->registry('last_success_order_id'); + return $lastSuccessOrderId; + } + + /** + * create an invoice and return the url so that iframe.phtml can display it + * + * @return string + */ + public function getFrameActionUrl() + { + return $this->getUrl('coinpayments/form/index', ['_secure' => true]); + } + + /** + * @return string + */ + public function getIpnUrl() + { + return $this->getUrl('coinpayments/ipn/handle'); + } + + /** + * @return array + */ + public function getPaymentData() + { + $storeScope = \Magento\Store\Model\ScopeInterface::SCOPE_STORE; + $data = [ + 'merchant_id' => $this->_scopeConfig->getValue(self::PATH_TO_PAYMENT_CONFIG . "merchant_id", $storeScope), + 'ipn_secret' => $this->_scopeConfig->getValue(self::PATH_TO_PAYMENT_CONFIG . "ipn_secret", $storeScope), + 'item_name' => $this->_scopeConfig->getValue('general/store_information/name', $storeScope), + 'store_id' => $this->_storeManager->getStore()->getId(), + 'currency_code' => $this->_storeManager->getStore()->getCurrentCurrencyCode(), + ]; + return $data; + } + + /** + * @return \Magento\Quote\Api\Data\CartInterface|\Magento\Quote\Model\Quote + */ + public function getQuote() + { + $quoteModel = $this->quoteRepository->get($this->_coreRegistry->registry('last_success_quote_id')); + return $quoteModel; + } + + /** + * @return int + */ + public function getShippingAmount() + { + $quoteModel = $this->quoteRepository->get($this->_coreRegistry->registry('last_success_quote_id')); + $shippingAmount = $quoteModel->getShippingAddress()->getShippingAmount(); + if ($quoteModel->getShippingAddress()->getShippingDiscountAmount()) { + $shippingAmount = $shippingAmount - $quoteModel->getShippingAddress()->getShippingDiscountAmount(); + } + + return $shippingAmount; + } + + /** + * @return string + */ + public function getSuccessUrl() + { + return $this->getUrl('checkout/onepage/success'); + } + + /** + * @return string + */ + public function getFailUrl() + { + return $this->getUrl('coinpayments/checkout/failure'); + } +} diff --git a/Block/Info.php b/Block/Info.php new file mode 100644 index 0000000..a5af79c --- /dev/null +++ b/Block/Info.php @@ -0,0 +1,26 @@ + + */ + +namespace Coinpayments\CoinPayments\Block; + +/** + * Base payment iformation block + */ +class Info extends \Magento\Framework\View\Element\Template +{ + /** + * @var string + */ + protected $_template = 'Coinpayments_CoinPayments::coinpayments/info/default.phtml'; + + /** + * @return mixed + */ + public function getCoinPaymentsInvoiceUrl() + { + return true; + } +} diff --git a/Block/Redirect.php b/Block/Redirect.php new file mode 100644 index 0000000..474e837 --- /dev/null +++ b/Block/Redirect.php @@ -0,0 +1,60 @@ + + */ + +namespace Coinpayments\CoinPayments\Block; + +class Redirect extends \Magento\Framework\View\Element\Template +{ + /** + * @var \Magento\Checkout\Model\Session + */ + protected $checkoutSession; + + /** + * @var \Magento\Sales\Model\OrderFactory + */ + protected $orderFactory; + + /** + * Redirect constructor. + * @param \Magento\Framework\View\Element\Template\Context $context + * @param \Magento\Checkout\Model\Session $checkoutSession + * @param \Magento\Sales\Model\OrderFactory $orderFactory + */ + public function __construct( + \Magento\Framework\View\Element\Template\Context $context, + \Magento\Checkout\Model\Session $checkoutSession, + \Magento\Sales\Model\OrderFactory $orderFactory + ) { + $this->checkoutSession = $checkoutSession; + $this->orderFactory = $orderFactory; + parent::__construct($context); + } + + /** + * @return mixed + */ + public function getRealOrderId() + { + $lastorderId = $this->checkoutSession->getLastOrderId(); + + return $lastorderId; + } + + /** + * @return bool + */ + public function getOrder() + { + if ($this->checkoutSession->getLastRealOrderId()) { + $order = $this->orderFactory->create()->loadByIncrementId($this->checkoutSession->getLastRealOrderId()); + + return $order; + } + + return false; + } +} diff --git a/Block/Status.php b/Block/Status.php new file mode 100644 index 0000000..02e9c63 --- /dev/null +++ b/Block/Status.php @@ -0,0 +1,62 @@ + + */ + +namespace Coinpayments\CoinPayments\Block; + +use Magento\Framework\View\Element\Template; +use Magento\Checkout\Model\Session; + +class Status extends \Magento\Framework\View\Element\Template +{ + /* @var \Magento\Checkout\Model\Session */ + protected $_checkoutSession; + + /** + * Status constructor. + * @param Session $checkoutSession + * @param Template\Context $context + * @param array $data + */ + public function __construct( + Session $checkoutSession, + Template\Context $context, + array $data = []) + { + parent::__construct($context, $data); + $this->_checkoutSession = $checkoutSession; + } + + /** + * @var string + */ + protected $_template = 'Coinpayments_CoinPayments::coinpayments/status.phtml'; + + public function getTransactionData() + { + if ($this->_checkoutSession->getCoinpaymentsTransactionData()) { + return json_decode($this->_checkoutSession->getCoinpaymentsTransactionData()); + } + return (object) [ + 'error' => __('Transaction is not found') + ]; + } + + /** + * @return mixed + */ + public function getTransactionCurrency() + { + return $this->_checkoutSession->getCoinpaymentsCurrency(); + } + + /** + * @return string + */ + public function getLastOrderIncrementId() + { + return $this->_checkoutSession->getLastRealOrder()->getIncrementId(); + } +} diff --git a/Controller/Adminhtml/Validation/Invoice.php b/Controller/Adminhtml/Validation/Invoice.php deleted file mode 100644 index 27705b1..0000000 --- a/Controller/Adminhtml/Validation/Invoice.php +++ /dev/null @@ -1,57 +0,0 @@ -getRequest()->getParams(); - - $response = []; - if (!empty($params['client_id']) && $this->helper->getConfig('validated') != $params['client_id']) { - $clientId = $params['client_id']; - - $invoiceParams = array( - 'currencyId' => 5057, - 'invoiceId' => 'Validate invoice', - 'amount' => 1, - 'displayValue' => '0.01', - 'notesLink' => '', - ); - - $invoice = $this->invoiceModel->createSimple($clientId, $invoiceParams); - - if ($invoice) { - $this->helper->setConfig('validated', $params['client_id']); - $response = [ - 'success' => $invoice - ]; - } else { - $response = [ - 'success' => false, - 'errorText' => sprintf('Failed to create validation invoice!'), - ]; - } - } elseif ($this->helper->getConfig('validated') == $params['client_id']) { - $response = [ - 'success' => $params['client_id'] - ]; - } else { - $response = [ - 'success' => false, - 'errorText' => sprintf('Enter Coinpayments.NET credentials!'), - ]; - } - - - $result = $this->jsonResultFactory->create(); - $result->setData($response); - return $result; - } -} diff --git a/Controller/Adminhtml/Validation/Validation.php b/Controller/Adminhtml/Validation/Validation.php deleted file mode 100644 index c12ed22..0000000 --- a/Controller/Adminhtml/Validation/Validation.php +++ /dev/null @@ -1,61 +0,0 @@ -jsonResultFactory = $jsonResultFactory; - $this->webHookModel = $webHook; - $this->invoiceModel = $invoice; - $this->helper = $helper; - } - - abstract public function execute(); -} \ No newline at end of file diff --git a/Controller/Adminhtml/Validation/WebHook.php b/Controller/Adminhtml/Validation/WebHook.php deleted file mode 100644 index 65758ca..0000000 --- a/Controller/Adminhtml/Validation/WebHook.php +++ /dev/null @@ -1,87 +0,0 @@ -getRequest()->getParams(); - $response = []; - - if (!empty($params['client_id']) && !empty($params['client_secret'])) { - if ($this->helper->getConfig('validated') != ($params['client_id'] . $params['client_secret'])) { - - $clientId = $params['client_id']; - $clientSecret = $params['client_secret']; - - $webHooksList = $this->webHookModel->getList($clientId, $clientSecret); - - if (!empty($webHooksList)) { - - $webHooksUrlsList = []; - if (!empty($webHooksList['items'])) { - $webHooksUrlsList = array_map(function ($webHook) { - return $webHook['notificationsUrl']; - }, $webHooksList['items']); - } - - if ( - !in_array($this->helper->getNotificationUrl($clientId, DATA::PAID_EVENT), $webHooksUrlsList) || - !in_array($this->helper->getNotificationUrl($clientId, DATA::CANCELLED_EVENT), $webHooksUrlsList) - ) { - if ( - !empty($this->webHookModel->createWebHook($clientId, $clientSecret, DATA::PAID_EVENT)) && - !empty($this->webHookModel->createWebHook($clientId, $clientSecret, DATA::CANCELLED_EVENT)) - - ) { - $this->helper->setConfig('validated', $params['client_id'] . $params['client_secret']); - $response = [ - 'success' => true, - ]; - } else { - $response = [ - 'success' => false, - 'errorText' => sprintf('Failed to create WebHook!'), - ]; - } - } else { - $this->helper->setConfig('validated', $params['client_id'] . $params['client_secret']); - $response = [ - 'success' => true, - ]; - } - } else { - $response = [ - 'success' => false, - 'errorText' => sprintf('Failed to get WebHooks list!'), - ]; - } - } else { - $response = [ - 'success' => true, - ]; - } - } else { - $response = [ - 'success' => false, - 'errorText' => sprintf('Enter Coinpayments.NET credentials!'), - ]; - } - - - $result = $this->jsonResultFactory->create(); - $result->setData($response); - return $result; - } -} \ No newline at end of file diff --git a/Controller/Checkout/Failure.php b/Controller/Checkout/Failure.php index 83197be..6f42ce2 100644 --- a/Controller/Checkout/Failure.php +++ b/Controller/Checkout/Failure.php @@ -4,43 +4,35 @@ use Magento\Sales\Model\OrderRepository; use Magento\Sales\Model\Order; -use Magento\Checkout\Model\Session; -use Magento\Framework\App\Action\Context; -use Magento\Framework\View\Result\PageFactory; -use Magento\Framework\App\Action\Action; +use Psr\Log\LoggerInterface; -class Failure extends Action +class Failure extends \Magento\Framework\App\Action\Action { - /** - * @var Session - */ - protected $checkoutSession; - /** - * @var OrderRepository - */ - protected $orderRepository; - /** - * @var PageFactory - */ - protected $resultPageFactory; - - /** - * Failure constructor. - * @param Session $checkoutSession - * @param OrderRepository $orderRepository - * @param Context $context - * @param PageFactory $resultPageFactory - */ + private $checkoutSession; + private $orderFactory; + private $orderRepository; + private $resultPageFactory; + private $logger; + private $cacheTypeList; + private $cacheFrontendPool; + public function __construct( - Session $checkoutSession, + \Magento\Checkout\Model\Session $checkoutSession, + \Magento\Sales\Model\OrderFactory $orderFactory, OrderRepository $orderRepository, - Context $context, - PageFactory $resultPageFactory - ) - { + \Magento\Framework\App\Action\Context $context, + \Magento\Framework\View\Result\PageFactory $resultPageFactory, + LoggerInterface $logger, + \Magento\Framework\App\Cache\TypeListInterface $cacheTypeList, + \Magento\Framework\App\Cache\Frontend\Pool $cacheFrontendPool + ) { $this->checkoutSession = $checkoutSession; + $this->orderFactory = $orderFactory; $this->orderRepository = $orderRepository; $this->resultPageFactory = $resultPageFactory; + $this->logger = $logger; + $this->cacheTypeList = $cacheTypeList; + $this->cacheFrontendPool = $cacheFrontendPool; parent::__construct($context); } @@ -48,15 +40,31 @@ public function __construct( public function execute() { $lastOrderId = $this->getRealOrderId(); - $order = $this->orderRepository->get($lastOrderId); + $order = $this->orderRepository->get($lastOrderId); $order->setStatus(Order::STATE_CANCELED)->setState(Order::STATE_CANCELED); $this->orderRepository->save($order); + $this->logger->info('ORDER INFO: ' . $order->getStatus() . $order->getState()); + return $this->resultPageFactory->create(); } + + // Use this method to get ID public function getRealOrderId() { - return $this->checkoutSession->getLastOrderId(); + $lastorderId = $this->checkoutSession->getLastOrderId(); + + return $lastorderId; } + public function getOrder() + { + if ($this->checkoutSession->getLastOrderId()) { + $order = $this->orderFactory->create()->loadByIncrementId($this->checkoutSession->getLastRealOrderId()); + + return $order; + } + + return false; + } } diff --git a/Controller/Iframe/Index.php b/Controller/Iframe/Index.php new file mode 100644 index 0000000..186e954 --- /dev/null +++ b/Controller/Iframe/Index.php @@ -0,0 +1,62 @@ + + */ + +namespace Coinpayments\CoinPayments\Controller\Iframe; + +class Index extends \Magento\Framework\App\Action\Action +{ + private $configResource; + + /** + * @var \Magento\Quote\Model\QuoteFactory + */ + private $quoteFactory; + + /** + * @var \Magento\Checkout\Model\Session + */ + private $cart; + + /** + * @var \Magento\Framework\App\Config\ScopeConfigInterface + */ + private $scopeConfig; + + /** + * Index constructor. + * + * @param \Magento\Framework\App\Action\Context $context + * @param \Magento\Framework\App\Config\MutableScopeConfigInterface $config + * @param \Magento\Checkout\Model\Cart $cart + * @param \Magento\Quote\Model\QuoteFactory $quoteFactory + */ + public function __construct( + \Magento\Framework\App\Action\Context $context, + \Magento\Framework\App\Config\MutableScopeConfigInterface $config, + \Magento\Checkout\Model\Cart $cart, + \Magento\Quote\Model\QuoteFactory $quoteFactory, + \Magento\Framework\App\Config\ScopeConfigInterface $scopeConfig + ) { + $this->config = $config; + $this->cart = $cart; + $this->quoteFactory = $quoteFactory; + $this->scopeConfig = $scopeConfig; + parent::__construct($context); + } + + /** + * @route coinpayments/iframe/index + */ + public function execute() + { + $coinpaymentUrl = $this->scopeConfig->getValue( + 'coinpayment/conf/url_payment', + \Magento\Store\Model\ScopeInterface::SCOPE_STORE + ); + $html = 'You will be transfered to CoinPayments.net to complete your purchase when using this payment method.'; + $this->getResponse()->setBody(json_encode(['html' => $html])); + } +} diff --git a/Controller/Invoice/Create.php b/Controller/Invoice/Create.php deleted file mode 100644 index 94a28a7..0000000 --- a/Controller/Invoice/Create.php +++ /dev/null @@ -1,187 +0,0 @@ -urlBuilder = $urlBuilder; - $this->invoiceModel = $invoice; - $this->helper = $helper; - $this->scopeConfig = $scopeConfig; - $this->checkoutSession = $checkoutSession; - $this->jsonResultFactory = $jsonResultFactory; - $this->backendUrl = $backendUrl; - parent::__construct($context); - } - - public function execute() - { - - $response = [ - 'successUrl' => $this->urlBuilder->getUrl('checkout/onepage/success'), - 'cancelUrl' => $this->urlBuilder->getUrl('coinpayments/checkout/failure'), - ]; - - $order = $this->checkoutSession->getLastRealOrder(); - - if ($order->getIncrementId()) { - - $coinInvoiceCacheId = Data::INVOICE_CACHE_PREFIX . $order->getIncrementId(); - $coinInvoiceId = $this->checkoutSession->{'get' . $coinInvoiceCacheId}(); - - if (empty($coinInvoiceId)) { - - $currencyCode = $order->getBaseCurrencyCode(); - $coinCurrency = $this->getCoinCurrency($currencyCode); - $amount = number_format($order->getGrandTotal(), $coinCurrency['decimalPlaces'], '', ''); - - if (!empty($coinCurrency)) { - - $clientId = $this->helper->getConfig(Data::CLIENT_ID_KEY); - $clientSecret = $this->helper->getConfig(Data::CLIENT_SECRET_KEY); - $merchantWebHooks = $this->helper->getConfig(Data::CLIENT_WEBHOOKS_KEY); - $invoiceId = sprintf('%s|%s|%s', md5($this->helper->getHostUrl()), $order->getId(), $order->getPayment()->getId()); - - try { - $notesLink = sprintf( - "%s|Store name: %s|Order #%s", - $this->backendUrl->getUrl('sales/order/view', ['order_id' => $order->getId(), '_nosecret' => true]), - $this->helper->getGeneralConfig('store_information/name'), - $order->getId() - ); - - $invoiceParams = array( - 'invoiceId' => $invoiceId, - 'currencyId' => $coinCurrency['id'], - 'displayValue' => $order->getGrandTotal(), - 'amount' => intval($amount), - 'billingData' => $order->getBillingAddress(), - 'notesLink' => $notesLink, - ); - - if ($merchantWebHooks) { - $invoicesData = $this->invoiceModel->createMerchant($clientId, $clientSecret, $invoiceParams); - $invoiceData = array_shift($invoicesData['invoices']); - } else { - $invoiceData = $this->invoiceModel->createSimple($clientId, $invoiceParams); - } - } catch (\Exception $e) { - } - - if (!empty($invoiceData['id'])) { - $this->checkoutSession->{'set' . $coinInvoiceCacheId}($invoiceData['id']); - $coinInvoiceId = $invoiceData['id']; - $this->invoiceModel->createOrderTransaction($order, $coinInvoiceId); - } - } - - } - - if (!empty($coinInvoiceId)) { - $response['coinInvoiceId'] = $coinInvoiceId; - $response['redirectUrl'] = $this->helper->getCoinCheckoutRedirectUrl($coinInvoiceId, $response['successUrl'], $response['cancelUrl']); - } - } - - $result = $this->jsonResultFactory->create(); - $result->setData($response); - return $result; - } - - /** - * @param string $name - * @return array|mixed - */ - protected function getCoinCurrency(string $name) - { - - $params = [ - 'types' => Data::FIAT_TYPE, - 'q' => $name, - ]; - $items = []; - - $listData = $this->invoiceModel->getCurrencies($params); - if (!empty($listData['items'])) { - $items = $listData['items']; - } - - return array_shift($items); - } - - public function createCsrfValidationException(RequestInterface $request): ?InvalidRequestException - { - return null; - } - - public function validateForCsrf(RequestInterface $request): ?bool - { - return true; - } - -} diff --git a/Controller/Invoice/Index.php b/Controller/Invoice/Index.php new file mode 100644 index 0000000..cb4514f --- /dev/null +++ b/Controller/Invoice/Index.php @@ -0,0 +1,105 @@ + + */ + +namespace Coinpayments\CoinPayments\Controller\Invoice; + +use Magento\Framework\App\Action\Context; +use Magento\Framework\Controller\ResultFactory; +use Magento\Sales\Model\Order; + +class Index extends \Magento\Framework\App\Action\Action +{ + /** + * Core registry + * + * @var \Magento\Framework\Registry + */ + private $_coreRegistry; + + private $configResource; + + /** + * @var \Magento\Framework\View\Result\PageFactory + */ + private $resultPageFactory; + + /** + * @var \Magento\Framework\App\Config\MutableScopeConfigInterface + */ + private $config; + + /** + * @var \Magento\Checkout\Model\Session + */ + private $checkoutSession; + + /** + * @var \Psr\Log\LoggerInterface + */ + private $log; + + /** + * @var \Magento\Sales\Model\OrderRepository + */ + private $orderRepository; + + /** + * @var \Coinpayments\CoinPayments\Helper\Data + */ + private $coinPayemtnsHelper; + + /** + * Index constructor. + * @param Context $context + * @param \Magento\Framework\Registry $coreRegistry + * @param \Magento\Framework\App\Config\MutableScopeConfigInterface $config + * @param \Magento\Framework\View\Result\PageFactory $resultPageFactory + * @param \Magento\Checkout\Model\Session $checkoutSession + * @param \Psr\Log\LoggerInterface $logger + * @param \Magento\Sales\Model\OrderRepository $orderRepository + * @param \Coinpayments\CoinPayments\Helper\Data $coinPayemtnsHelper + */ + public function __construct( + \Magento\Framework\App\Action\Context $context, + \Magento\Framework\Registry $coreRegistry, + \Magento\Framework\App\Config\MutableScopeConfigInterface $config, + \Magento\Framework\View\Result\PageFactory $resultPageFactory, + \Magento\Checkout\Model\Session $checkoutSession, + \Psr\Log\LoggerInterface $logger, + \Magento\Sales\Model\OrderRepository $orderRepository, + \Coinpayments\CoinPayments\Helper\Data $coinPayemtnsHelper + ) { + $this->_coreRegistry = $coreRegistry; + $this->config = $config; + $this->resultPageFactory = $resultPageFactory; + $this->checkoutSession = $checkoutSession; + $this->log = $logger; + $this->orderRepository = $orderRepository; + $this->coinPayemtnsHelper = $coinPayemtnsHelper; + parent::__construct($context); + } + + /** + * @return \Magento\Framework\App\ResponseInterface|\Magento\Framework\View\Result\Page + */ + public function execute() + { + if (empty($this->checkoutSession->getData('last_success_quote_id'))) { + return $this->_redirect('checkout/cart'); + } + + $this->log->info('ORDER_ID: ' . $this->checkoutSession->getLastRealOrder()->getId()); + $this->_coreRegistry->register('last_success_quote_id', $this->checkoutSession->getData('last_success_quote_id')); + $this->_coreRegistry->register('last_success_order_id', $this->checkoutSession->getLastRealOrder()->getId()); + $orderModel = $this->orderRepository->get($this->checkoutSession->getLastRealOrder()->getId()); + $orderModel->setState(Order::STATE_NEW) + ->setStatus($this->coinPayemtnsHelper->getGeneralConfig('status_order_placed')); + $resultPage = $this->resultPageFactory->create(); + $resultPage->getConfig()->getTitle()->set(__('Pay with CoinPayments')); + + return $resultPage; + } +} diff --git a/Controller/Ipn/Handle.php b/Controller/Ipn/Handle.php new file mode 100644 index 0000000..1ad7870 --- /dev/null +++ b/Controller/Ipn/Handle.php @@ -0,0 +1,71 @@ +_orderModel = $orderModel; + $this->_ipnModel = $ipnModel; + $this->_jsonResultFactory = $jsonResultFactory; + + } + + public function execute() + { + $requestData = (object)$this->getRequest()->getParams(); + $hmac = $this->getRequest()->getHeaders()->get('HMAC')->getFieldValue(); + + $result = $this->_jsonResultFactory->create(); + + if (!$requestData || !$hmac) { + $result->setData([ + 'error' => __('Invalid Data Sent') + ]); + return $result; + } + + $errors = $this->_ipnModel->processIpnRequest($requestData, $hmac); + + if (!empty($errors)) { + $result->setData($errors); + return $result; + } + + return $result->setData(['error' => 'OK']); + } + + public function createCsrfValidationException(RequestInterface $request): ?InvalidRequestException + { + return null; + } + + public function validateForCsrf(RequestInterface $request): ?bool + { + return true; + } + +} diff --git a/Controller/Ipn/Index.php b/Controller/Ipn/Index.php new file mode 100644 index 0000000..44787a6 --- /dev/null +++ b/Controller/Ipn/Index.php @@ -0,0 +1,237 @@ + + */ + +namespace Coinpayments\CoinPayments\Controller\Ipn; + +use Magento\Sales\Model\Order; +use Magento\Framework\App\Action\Context; +use Coinpayments\CoinPayments\Logger\Logger; +use Coinpayments\CoinPayments\Helper\Data as CoinPaymentHelper; +use Magento\Framework\App\Request\Http as HttpRequest; + + +/** + * Class Index + * + * @package Firebear\CoinPayments\Controller\Ipn + */ +class Index extends \Magento\Framework\App\Action\Action +{ + /** + * @var \Magento\Sales\Model\OrderRepository + */ + private $orderRepository; + + /** + * @var Logger + */ + private $log; + + /** + * @var CoinPaymentHelper + */ + private $helper; + + /** + * Index constructor. + * + * @param Context $context + * @param \Magento\Sales\Model\OrderRepository $orderRepository + * @param Logger $logger + * @param CoinPaymentHelper $helper + */ + public function __construct( + Context $context, + \Magento\Sales\Model\OrderRepository $orderRepository, + Logger $logger, + CoinPaymentHelper $helper + ) { + parent::__construct($context); + + $this->orderRepository = $orderRepository; + $this->log = $logger; + $this->helper = $helper; + // Fix for Magento2.3 adding isAjax to the request params + if(interface_exists("\Magento\Framework\App\CsrfAwareActionInterface")) { + $request = $this->getRequest(); + if ($request instanceof HttpRequest && $request->isPost()) { + $request->setParam('isAjax', true); + } + } + + + } + + + public function execute() + { + if ($this->getRequest()->getParams()) { + if ($this->is_ipn_valid()) { + // Payment was successful, so update the order's state, send order email and move to the success page + $order_id = (int)$this->getRequest()->getParam('invoice'); + if ($order = $this->orderRepository->get($order_id)) { + if ($order->getState() == Order::STATE_NEW) { + if ($this->getRequest()->getParam('ipn_type') == 'button' || $this->getRequest()->getParam('ipn_type') == 'simple') { + if ($this->getRequest()->getParam('currency1') == $order->getBaseCurrencyCode()) { + if ($this->getRequest()->getParam('amount1') >= $order->getBaseGrandTotal()) { + $status = (int)$this->getRequest()->getParam('status'); + $this->log->info("STATUS: " . $status); + $this->checkStatus($status, $order); + $order->save(); + + return 'IPN OK'; + } else { + $this->logAndDie('Amount paid is less than order total!', $order); + } + } else { + $this->logAndDie('Original currency does not match!', $order); + } + } else { + $this->logAndDie('Invalid IPN type!', $order); + } + } else { + $this->logAndDie('Order is no longer new. (most likely IPN has already been processed)'); + } + } else { + $this->logAndDie('Could not load order with ID: ' . $order_id); + } + } + } else { + $this->logAndDie('Request is EMPTY'); + } + } + + /** + * @param $status + * @param $order + */ + private function checkStatus($status, $order) + { + if ($status < 0) { + //canceled or timed out + $order->cancel(); + $order->setState( + ORDER::STATE_CANCELED, + true, + 'CoinPayments.net Payment Status: ' . $this->getRequest()->getParam( + 'status_text' + ) + )->setStatus(ORDER::STATE_CANCELED); + } else { + if ($status >= 100 || $status == 2) { + //order complete or queued for nightly payout + $str = 'CoinPayments.net Payment Status: ' . $this->getRequest()->geпtParam('status_text') + . '
'; + $str .= 'Transaction ID: ' . $this->getRequest()->getParam('txn_id') + . '
'; + $str .= 'Original Amount: ' . sprintf('%.08f', $this->getRequest()->getParam('amount1')) + . ' ' . $this->getRequest()->getParam('currency1') . '
'; + $str .= 'Received Amount: ' . sprintf('%.08f', $this->getRequest()->getParam('amount2')) + . ' ' . $this->getRequest()->getParam('currency2'); + $order->addStatusToHistory($this->helper->getGeneralConfig('status_order_paid'), $str, true); + $order->setState( + $this->helper->getGeneralConfig('status_order_paid'), + true, + $str + )->setStatus($this->helper->getGeneralConfig('status_order_paid')); + $this->_objectManager->create('\Magento\Sales\Model\OrderNotifier')->notify($order); + } else { + //order pending + $str = 'CoinPayments.net Payment Status: ' . $this->getRequest()->getParam('status_text'); + $order->addStatusToHistory(Order::STATE_NEW, $str, true); + $order->setState( + Order::STATE_NEW, + true, + $str + )->setStatus(Order::STATE_PROCESSING); + } + $order->save(); + } + } + + /** + * @param $msg + * @param null $order + */ + private function logAndDie($msg, $order = null) + { + if ($this->helper->getGeneralConfig('debug')) { + $messsageString = ''; + if ($order !== null) { + $messsageString = 'Order ID: ' . $order->getId() . '
'; + } + $messsageString .= $msg; + $this->log->info($messsageString); + } + + return; + } + + /** + * @return bool + */ + private function is_ipn_valid() + { + $ipn = $this->getRequest()->getParams(); + if (!isset($ipn['ipn_mode'])) { + $this->logAndDie('IPN received with no ipn_mode.'); + } + if ($ipn['ipn_mode'] == 'hmac') { + if ($this->checkHmacIpn($ipn)) { + return true; + } + } else { + $this->logAndDie('Unknown ipn_mode.'); + } + + return false; + } + + /** + * @return bool + */ + private function checkHmacIpn($ipn) + { + if (!isset($_SERVER['HTTP_HMAC']) || empty($_SERVER['HTTP_HMAC'])) { + $this->logAndDie('No HMAC signature sent.'); + + return false; + } + + $request = file_get_contents('php://input'); + if ($request === false || empty($request)) { + $this->logAndDie( + 'Error reading POST data: ' . print_r($_SERVER, true) . '/' . print_r( + $this->getRequest()->getParams(), + true + ) + ); + + return false; + } + + $merchant = isset($ipn['merchant']) ? $ipn['merchant'] : ''; + if (empty($merchant)) { + $this->logAndDie('No Merchant ID passed'); + + return false; + } + if ($merchant != trim($this->helper->getGeneralConfig('merchant_id'))) { + $this->logAndDie('Invalid Merchant ID'); + + return false; + } + + $hmac = hash_hmac("sha512", $request, trim($this->helper->getGeneralConfig('ipn_secret'))); + if ($hmac != $_SERVER['HTTP_HMAC']) { + $this->logAndDie('HMAC signature does not match'); + + return false; + } + + return true; + } +} diff --git a/Controller/Transaction/Status.php b/Controller/Transaction/Status.php new file mode 100644 index 0000000..bef4853 --- /dev/null +++ b/Controller/Transaction/Status.php @@ -0,0 +1,40 @@ + + */ + +namespace Coinpayments\CoinPayments\Controller\Transaction; + +use Magento\Framework\App\Action\Context; +use Magento\Framework\View\Result\PageFactory; + + +class Status extends \Magento\Framework\App\Action\Action +{ + /** + * @var \Magento\Framework\View\Result\PageFactory + */ + protected $_resultPageFactory; + + /** + * Status constructor. + * @param \Magento\Framework\App\Action\Context $context + * @param \Magento\Framework\View\Result\PageFactory $resultPageFactory + */ + public function __construct(Context $context, PageFactory $resultPageFactory) + { + parent::__construct($context); + $this->_resultPageFactory = $resultPageFactory; + } + + /** + * @return \Magento\Framework\App\ResponseInterface|\Magento\Framework\Controller\ResultInterface|\Magento\Framework\View\Result\Page + */ + public function execute() + { + $page = $this->_resultPageFactory->create(); + $page->getConfig()->getTitle()->set(__('Transaction Status')); + return $page; + } +} diff --git a/Controller/WebHooks/Notification.php b/Controller/WebHooks/Notification.php deleted file mode 100644 index 2d9c951..0000000 --- a/Controller/WebHooks/Notification.php +++ /dev/null @@ -1,86 +0,0 @@ -urlBuilder = $urlBuilder; - $this->webHookModel = $webHookModel; - $this->helper = $helper; - $this->scopeConfig = $scopeConfig; - parent::__construct($context); - } - - - public function execute() - { - if (!empty($this->helper->getConfig(Data::CLIENT_WEBHOOKS_KEY)) && !empty($this->getRequest()->getHeaders()->get('X-CoinPayments-Signature'))) { - $content = $this->getRequest()->getContent(); - $signature = $this->getRequest()->getHeaders()->get('X-CoinPayments-Signature')->getFieldValue(); - $requestData = json_decode($content, true); - if ($this->checkDataSignature($signature, $content)) { - $this->webHookModel->receiveNotification($requestData); - } - } - - } - - /** - * @param $signature - * @param $content - * @return bool - */ - protected function checkDataSignature($signature, $content) - { - - $requestUrl = $this->urlBuilder->getCurrentUrl(); - $clientSecret = $this->helper->getConfig(Data::CLIENT_SECRET_KEY); - $encodedPure = $this->webHookModel->generateHmac([$requestUrl, $content], $clientSecret); - return $signature == $encodedPure; - } - - public function createCsrfValidationException(RequestInterface $request): ?InvalidRequestException - { - return null; - } - - public function validateForCsrf(RequestInterface $request): ?bool - { - return true; - } -} diff --git a/Helper/Data.php b/Helper/Data.php index f38862f..637908b 100644 --- a/Helper/Data.php +++ b/Helper/Data.php @@ -1,163 +1,63 @@ + */ namespace Coinpayments\CoinPayments\Helper; use Magento\Framework\App\Helper\AbstractHelper; use Magento\Framework\App\Helper\Context; -use Magento\Config\Model\ResourceModel\Config; -use Magento\Framework\App\Config\ConfigResource\ConfigInterface; +use Magento\Store\Model\ScopeInterface; -/** - * Class Data - * @package Coinpayments\CoinPayments\Helper - */ class Data extends AbstractHelper { - - - const FIAT_TYPE = 'fiat'; - const INVOICE_CACHE_PREFIX = 'CoinpaymentsInvoice'; - const XML_PATH_CONFIG_COINPAYMENTS = 'payment/coin_payments/'; - const XML_PATH_CONFIG_GENERAL = 'general/'; - - const CLIENT_ID_KEY = 'client_id'; - const CLIENT_SECRET_KEY = 'client_secret'; - const CLIENT_WEBHOOKS_KEY = 'webhooks'; - const CLIENT_ORDER_STATUS_KEY = 'status_order_paid'; - const PACKAGE_VERSION = 'package_version'; - - const API_WEBHOOK_ACTION = 'merchant/clients/%s/webhooks'; - const API_SIMPLE_INVOICE_ACTION = 'invoices'; - const API_MERCHANT_INVOICE_ACTION = 'merchant/invoices'; - - const VALIDATE_SIMPLE_URL = 'coinpayments/validation/invoice'; - const VALIDATE_MERCHANT_URL = 'coinpayments/validation/webhook'; - - const CREATE_INVOICE_URL = 'coinpayments/invoice/create'; - const WEBHOOK_NOTIFICATION_URL = 'coinpayments/webhooks/notification'; - - const PAID_EVENT = 'Paid'; - const CANCELLED_EVENT = 'Cancelled'; - - /** - * @var Config - */ - protected $resourceConfig; - protected $baseConf; /** * Data constructor. * * @param Context $context - * @param Config $resourceConfig */ - public function __construct(Context $context, - ConfigInterface $resourceConfig) + public function __construct(Context $context) { parent::__construct($context); - $this->resourceConfig = $resourceConfig; - $this->baseConf = $this->getBaseConfig(); - } - - /** - * @param $param - * @return mixed - */ - public function getConfig($param) - { - return $this->scopeConfig->getValue(self::XML_PATH_CONFIG_COINPAYMENTS . $param); - } - - /** - * @param $param - * @return mixed - */ - public function getGeneralConfig($param) - { - return $this->scopeConfig->getValue(self::XML_PATH_CONFIG_GENERAL . $param); } /** - * @param $param - * @param $value + * @param $field + * @param null $storeId + * * @return mixed */ - public function setConfig($param, $value) + private function getConfigValue($field, $storeId = null) { - return $this->resourceConfig->saveConfig(self::XML_PATH_CONFIG_COINPAYMENTS . $param, $value); + return $this->scopeConfig->getValue( + $field, + ScopeInterface::SCOPE_STORE, + $storeId + ); } /** + * @param $code + * @param null $storeId + * * @return mixed */ - public function getBaseConfig() + public function getGeneralConfig($code, $storeId = null) { - return $this->scopeConfig->getValue('coinpayment/conf'); + return $this->getConfigValue(self::XML_PATH_CONFIG_COINPAYMENTS . $code, $storeId); } - /** - * @param $action - * @return string - */ - public function getApiUrl($action) + public function getInvoiceTemplate() { - return sprintf('%s/api/v%s/%s', $this->baseConf['api_host'], $this->baseConf['api_version'], $action); - } - - /** - * @param $param - * @return mixed - */ - public function getBaseConfigParam($param) - { - $value = null; - if (isset($this->baseConf[$param])) { - $value = $this->baseConf[$param]; + if ($this->getConfigValue('payment/coin_payments/is_direct')) { + $template = 'Coinpayments_CoinPayments::coinpayments/iframe.phtml'; + } else { + $template = 'Coinpayments_CoinPayments::coinpayments/status.phtml'; } - return $value; - } - - /** - * @param string $route - * @return string - */ - public function getHostUrl($route = '', $params = ['_direct' => null]) - { - return $this->_getUrl($route, $params); - } - /** - * @param $clientId - * @param $event - * @return string - */ - public function getNotificationUrl($clientId, $event) - { - $query = http_build_query(array( - 'event' => $event, - 'clientId' => $clientId, - )); - return $this->getHostUrl(DATA::WEBHOOK_NOTIFICATION_URL, [ - '_nosid' => true, - '_query' => $query, - ]); - } - - /** - * @param $coinInvoiceId - * @param $successUrl - * @param $cancelUrl - * @return string - */ - public function getCoinCheckoutRedirectUrl($coinInvoiceId, $successUrl, $cancelUrl) - { - return sprintf( - '%s/checkout/?invoice-id=%s&success-url=%s&cancel-url=%s', - $this->baseConf['checkout_host'], - $coinInvoiceId, - $successUrl, - $cancelUrl - ); + return $template; } } diff --git a/Logger/Handler.php b/Logger/Handler.php new file mode 100644 index 0000000..7b2a043 --- /dev/null +++ b/Logger/Handler.php @@ -0,0 +1,24 @@ + + */ + +namespace Coinpayments\CoinPayments\Logger; + +use \Monolog\Logger as MonologLogger; + +class Handler extends \Magento\Framework\Logger\Handler\Base +{ + /** + * Logging level + * @var int + */ + protected $loggerType = MonologLogger::INFO; + + /** + * File name + * @var string + */ + protected $fileName = '/var/log/CoinPaymentDebug.log'; +} diff --git a/Logger/Logger.php b/Logger/Logger.php new file mode 100644 index 0000000..80f3dc3 --- /dev/null +++ b/Logger/Logger.php @@ -0,0 +1,12 @@ + + */ + +namespace Coinpayments\CoinPayments\Logger; + +class Logger extends \Monolog\Logger +{ + +} diff --git a/Model/AbstractApi.php b/Model/AbstractApi.php deleted file mode 100644 index 3005fb2..0000000 --- a/Model/AbstractApi.php +++ /dev/null @@ -1,186 +0,0 @@ - 'application/json;' - ]; - /** - * @var Order - */ - protected $orderModel; - /** - * @var Coinpayments - */ - protected $coinPaymentsMethod; - /** - * @var BuilderInterface - */ - protected $transactionBuilder; - /** - * @var Data - */ - protected $helper; - /** - * @var Repository - */ - protected $transactionRepository; - - /** - * AbstractApi constructor. - * @param Curl $curl - * @param Data $helper - * @param ScopeConfigInterface $scopeConfig - * @param Order $orderModel - * @param Coinpayments $coinPaymentsMethod - * @param BuilderInterface $transactionBuilder - * @param Repository $transactionRepository - */ - public function __construct( - Curl $curl, - Data $helper, - ScopeConfigInterface $scopeConfig, - Order $orderModel, - Coinpayments $coinPaymentsMethod, - BuilderInterface $transactionBuilder, - Repository $transactionRepository - ) - { - $this->curl = $curl; - $this->helper = $helper; - $this->scopeConfig = $scopeConfig; - $this->orderModel = $orderModel; - $this->coinPaymentsMethod = $coinPaymentsMethod; - $this->transactionBuilder = $transactionBuilder; - $this->transactionRepository = $transactionRepository; - - } - - /** - * @param $requestParams - * @param array $requestData - * @return array - * @throws \Exception - */ - public function getRequestHeaders($requestParams, $requestData = []) - { - - $date = new \Datetime(); - - $headerData = [ - 'method' => $requestParams['method'], - 'url' => $this->helper->getApiUrl($requestParams['action']), - 'clientId' => $requestParams['clientId'], - 'timestamp' => $date->format('c'), - ]; - - if (!empty($requestData)) { - $headerData['params'] = json_encode($requestData); - } - - return [ - 'X-CoinPayments-Client' => $requestParams['clientId'], - 'X-CoinPayments-Timestamp' => $date->format('c'), - 'X-CoinPayments-Signature' => $this->generateHmac($headerData, $requestParams['clientSecret'], true), - ]; - } - - /** - * @param $action - * @param $headers - * @param $requestData - * @return mixed - */ - public function sendPostRequest($action, $headers, $requestData) - { - - $headers = array_merge($headers, $this->defaultHeaders); - foreach ($headers as $name => $value) { - $this->curl->addHeader($name, $value); - } - - $this->curl->setOption(CURLOPT_SSL_VERIFYHOST, 0); - $this->curl->setOption(CURLOPT_SSL_VERIFYPEER, 0); - - $requestUrl = $this->helper->getApiUrl($action); - $this->curl->post($requestUrl, json_encode($requestData)); - return json_decode($this->curl->getBody(), true); - } - - /** - * @param $action - * @param $headers - * @param array $requestData - * @return mixed - */ - public function sendGetRequest($action, $headers, $requestData = []) - { - - $headers = array_merge($headers, $this->defaultHeaders); - foreach ($headers as $name => $value) { - $this->curl->addHeader($name, $value); - } - - $this->curl->setOption(CURLOPT_SSL_VERIFYHOST, 0); - $this->curl->setOption(CURLOPT_SSL_VERIFYPEER, 0); - - $requestUrl = $this->helper->getApiUrl($action); - if (!empty($requestData)) { - $requestUrl .= '?' . http_build_query($requestData); - } - - $this->curl->get($requestUrl); - return json_decode($this->curl->getBody(), true); - } - - /** - * @param $requestData - * @param null $secretKey - * @param bool $useAdditional - * @return string - */ - public function generateHmac($requestData, $secretKey = null, $useAdditional = false) - { - if ($useAdditional) { - $requestData = array_merge([chr(239), chr(187), chr(191)], $requestData); - } - - return base64_encode( - hash_hmac( - 'sha256', - implode('', $requestData), - $secretKey, - true - ) - ); - } - - /** - * @param array $params - * @return mixed - */ - public function getCurrencies($params = []) - { - return $this->sendGetRequest('currencies', [], $params); - } -} diff --git a/Model/AbstractIpn.php b/Model/AbstractIpn.php new file mode 100644 index 0000000..4e39ac8 --- /dev/null +++ b/Model/AbstractIpn.php @@ -0,0 +1,261 @@ +_orderModel = $orderModel; + $this->_helper = $helper; + $this->_logger = $logger; + $this->_coinpaymentsModel = $coinpaymentsModel; + $this->_transactionBuilder = $transactionBuilder; + + } + + protected function filterPaymentStatus($status) + { + switch ($status) { + case -2: + return Info::PAYMENT_STATUS_REFUND; + case -1: + return Info::PAYMENT_STATUS_CANCELLED; + case 0: + return Info::PAYMENT_STATUS_WAITING_FOR_FUNDS; + case 1: + return Info::PAYMENT_STATUS_COIN_CONFIRMED; + case 2: + return Info::PAYMENT_STATUS_QUEUE; + case 3: + return Info::PAYMENT_STATUS_HOLD; + case 100: + return Info::PAYMENT_STATUS_COMPLETE; + default: + return null; + + } + } + + protected function filterIpnType() + { + switch ($this->_data->ipn_type) { + case 'simple': + return Info::IPN_TYPE_SIMPLE; + case 'button': + return Info::IPN_TYPE_BUTTON; + case 'cart': + return Info::IPN_TYPE_CART; + case 'donation': + return Info::IPN_TYPE_DONATION; + case 'deposit': + return Info::IPN_TYPE_DEPOSIT; + case 'api': + return Info::IPN_TYPE_API; + default: + return null; + + } + } + + protected function checkHmac() + { + if (!$this->_hmac) { + return false; + } + + $serverHmac = hash_hmac( + "sha512", + http_build_query($this->_data), + trim($this->_helper->getGeneralConfig('ipn_secret')) + ); + if ($this->_hmac != $serverHmac) { + return false; + } + return true; + } + + protected function getOrder() + { + $order = $this->_orderModel->loadByIncrementId($this->_data->invoice); + if (!$order->getId()) { + $order = $this->_orderModel->load($this->_data->invoice); + } + if (!$order->getId()) { + return false; + } + $this->_currentOrder = $order; + return $order; + } + + /** + * @param $status + * @return $this + */ + protected function updateOrderStatus() + { + if ($this->filterPaymentStatus($this->_data->status) == Info::PAYMENT_STATUS_COMPLETE) { + $this->_currentOrder + ->setState($this->_helper->getGeneralConfig('status_order_paid')) + ->setStatus($this->_helper->getGeneralConfig('status_order_paid')); + } + return $this; + } + + /** + * @return $this + */ + protected function updateOrderPayment() + { + if ($this->filterPaymentStatus($this->_data->status) == Info::PAYMENT_STATUS_COMPLETE) { + $this->_currentOrder->setTotalPaid($this->_data->amount1); + } + return $this; + } + + protected function addTransactionToOrder() + { + if ($this->filterPaymentStatus($this->_data->status) != Info::PAYMENT_STATUS_COMPLETE) { + return false; + } + try { + $payment = $this->_currentOrder->getPayment(); + $payment->setMethod($this->_coinpaymentsModel->getCode()); + $payment->setLastTransId($this->_data->txn_id); + $payment->setTransactionId($this->_data->txn_id); + $payment->setAdditionalInformation([Order\Payment\Transaction::RAW_DETAILS => (array)$this->_data]); + + $formatedPrice = $this->_currentOrder->getBaseCurrency()->formatTxt($this->_currentOrder->getGrandTotal()); + + /* @var Order\Payment\Transaction\BuilderInterface */ + $transaction = $this->_transactionBuilder + ->setPayment($payment) + ->setOrder($this->_currentOrder) + ->setTransactionId($this->_data->txn_id) + ->setAdditionalInformation([Order\Payment\Transaction::RAW_DETAILS => (array)$this->_data]) + ->setFailSafe(true) + ->build(Order\Payment\Transaction::TYPE_CAPTURE); + + // Add transaction to payment + $payment->addTransactionCommentsToOrder($transaction, __('The authorized amount is %1.', $formatedPrice)); + $payment->setParentTransactionId(null); + + // Save payment, transaction and order + $payment->save(); + $this->_currentOrder->save(); + $transaction->save(); + $this->logAndDie("Create transaction. OrderId: " . $this->_currentOrder->getId() . "\n. Transaction Id: " . $transaction->getTransactionId()); + return $transaction->getTransactionId(); + + } catch (\Exception $e) { + $this->logAndDie("Create transaction error. OrderId: " . $this->_currentOrder->getId() . "\n. Message: " . $e->getMessage()); + } + + return true; + } + + /** + * @return $this + */ + protected function addToOrderHistory() + { + $str = 'CoinPayments.net Payment Status: ' . $this->_data->status . ' ' . $this->_data->status_text . '
'; + + if ($this->_data->status == Info::PAYMENT_STATUS_COMPLETE) { + $str .= 'Transaction ID: ' . $this->_data->txn_id + . '
'; + $str .= 'Original Amount: ' . sprintf('%.08f', $this->_data->amount1) + . ' ' . $this->_data->currency1 . '
'; + $str .= 'Received Amount: ' . sprintf('%.08f', $this->_data->amount2) + . ' ' . $this->_data->currency2; + } + $this->_currentOrder->addStatusToHistory($this->_currentOrder->getStatus(), $str); + + return $this; + } + /** + * @param int $status + * @return null|string + */ + protected function setTransactionStatus(int $status) + { + $this->_transactionStatus = $this->filterPaymentStatus($status); + return $this->_transactionStatus; + } + + /** + * @return mixed + */ + protected function getTransactionStatus() + { + return $this->_transactionStatus; + } + + protected function setHmac($hmac) + { + $this->_hmac = $hmac; + return $this->_hmac; + } + + protected function getHmac() + { + return $this->_hmac; + } + + protected function setRequestData($data) + { + $this->_data = $data; + return $this->_data; + } + + protected function getRequestData() + { + return $this->_data; + } + + protected function logAndDie($msg) + { + if ($this->_helper->getGeneralConfig('debug')) { + $message = ""; + if ($this->_currentOrder !== null) { + $message = "Order ID: " . $this->_currentOrder->getId() . "\n"; + } + $message .= $msg; + $this->_logger->info($message); + } + return $this; + } +} \ No newline at end of file diff --git a/Model/Api/Base.php b/Model/Api/Base.php new file mode 100644 index 0000000..a0ad9ad --- /dev/null +++ b/Model/Api/Base.php @@ -0,0 +1,119 @@ + 'application/x-www-form-urlencoded' + ]; + + /** + * Base constructor. + * @param Curl $curl + * @param ScopeConfigInterface $scopeConfig + */ + public function __construct + ( + Curl $curl, + ScopeConfigInterface $scopeConfig + ) + { + $this->_curl = $curl; + $this->_scopeConfig = $scopeConfig; + } + + /** + * @param $base + * @param $field + * @return mixed + */ + protected function getConfig($base, $field) + { + if ($field) { + return $this->_scopeConfig->getValue($base . DIRECTORY_SEPARATOR . $field); + } + return $this->_scopeConfig->getValue($base); + } + + /** + * @param null $field + * @return mixed + */ + public function getPaymentConfig($field = null) + { + return $this->getConfig('payment/coin_payments', $field); + } + + /** + * @param null $field + * @return mixed + */ + public function getBaseConfig($field = null) + { + return $this->getConfig('coinpayment/conf', $field); + + } + + /** + * @param $data + * @param $cmd + * @param array $headers + * @param string $method + * @param bool $assoc + * @return mixed + */ + public function sendRequest($data, $cmd, $headers = [], $method = 'post', $assoc = false) + { + $paymentConf = $this->getPaymentConfig(); + $baseConf = $this->getBaseConfig(); + + $paymentConf['public_key'] = isset($paymentConf['public_key']) ? $paymentConf['public_key'] : ''; + $paymentConf['api_version'] = isset($paymentConf['api_version']) ? $paymentConf['api_version'] : '1'; + + $additionalData = [ + 'version' => $baseConf['api_version'], + 'cmd' => $cmd, + 'key' => $paymentConf['public_key'] + ]; + + $data = array_merge($data, $additionalData); + $headers = array_merge($headers, $this->_defaultHeaders); + + $this->_curl->addHeader('HMAC', $this->generateHmac($data)); + foreach ($headers as $name => $value) { + $this->_curl->addHeader($name, $value); + } + $this->_curl->$method($baseConf['api_payment'], $data); + + return json_decode($this->_curl->getBody(), $assoc); + } + + /** + * @param $data + * @param null $secretKey + * @return string + */ + public function generateHmac($data, $secretKey = null) + { + if (!$secretKey) { + $secretKey = $this->getPaymentConfig('secret_key'); + } + return hash_hmac('sha512', http_build_query($data), $secretKey); + } +} diff --git a/Model/Api/Rate.php b/Model/Api/Rate.php new file mode 100644 index 0000000..e5fcee2 --- /dev/null +++ b/Model/Api/Rate.php @@ -0,0 +1,59 @@ + $accepted]; + $rates = $this->sendRequest($data, 'rates', [], 'post', $assoc); + return $rates; + } + + + //TODO normal logic for exchange rate + /** + * @param $currency + * @param $amount + * @return float|int + */ + public function getConverted($currency, $amount) + { + $ratesData = $this->fetchRates(false, false); + + if (strtolower($ratesData->error) != 'ok') { + return 0; + } + $rates = $ratesData->result; + + $rate = $currency != 'BTC' ? + ($amount * $rates->USD->rate_btc) / $rates->$currency->rate_btc : + $amount * $rates->USD->rate_btc; + return round($rate, 8); + } +} \ No newline at end of file diff --git a/Model/Api/Transaction.php b/Model/Api/Transaction.php new file mode 100644 index 0000000..0ba6461 --- /dev/null +++ b/Model/Api/Transaction.php @@ -0,0 +1,73 @@ +_urlBuilder = $urlBuilder; + $this->_logger = $logger; + $this->_rate = $rate; + parent::__construct($curl, $scopeConfig); + } + + /** + * @param Order $order + * @param string $customerCurrency + * @param array $headers + * @return array|mixed + */ + public function create($order, $customerCurrency, $headers = []) + { + $data = [ + 'amount' => $this->_rate->getConverted($customerCurrency, $order->getBaseGrandTotal()), + 'currency1' => $this->getPaymentConfig('receive_currency'), + 'currency2' => $customerCurrency, + 'buyer_email' => $order->getCustomerEmail(), + 'buyer_name' => $order->getCustomerFirstname() . ' ' . $order->getCustomerLastname(), + 'invoice' => $order->getIncrementId(), + 'ipn_url' => $this->_urlBuilder->getUrl('coinpayments/ipn/handle') + ]; + + $this->_logger->info('ORDER ' . $order->getId() . ' transaction request: ' . print_r($data, true)); + $data = $this->sendRequest($data, 'create_transaction', $headers, 'post', false); + $this->_logger->info('ORDER ' . $order->getId() . ' transaction response: ' . print_r($data, true)); + return $data; + } +} \ No newline at end of file diff --git a/Model/CoinPaymentsConfigProvider.php b/Model/CoinPaymentsConfigProvider.php index e3481c6..19cda93 100644 --- a/Model/CoinPaymentsConfigProvider.php +++ b/Model/CoinPaymentsConfigProvider.php @@ -3,25 +3,44 @@ namespace Coinpayments\CoinPayments\Model; use Magento\Checkout\Model\ConfigProviderInterface; +use Magento\Framework\HTTP\Client\Curl; +use Magento\Framework\App\Config\ScopeConfigInterface; use Magento\Framework\View\Asset\Repository; -/** - * Class CoinPaymentsConfigProvider - * @package Coinpayments\CoinPayments\Model - */ + class CoinPaymentsConfigProvider implements ConfigProviderInterface { + /** + * @var Curl + */ + protected $_curl; + /** + * @var ScopeConfigInterface + */ + protected $_scopeConfig; /** * @var Repository */ protected $_assetRepo; + /** + * @var string + */ + protected $_methodCode = 'coin_payments'; /** * CoinPaymentsConfigProvider constructor. + * @param Curl $curl + * @param ScopeConfigInterface $scopeConfig * @param Repository $assetRepo */ - public function __construct(Repository $assetRepo) + public function __construct( + Curl $curl, + ScopeConfigInterface $scopeConfig, + Repository $assetRepo + ) { + $this->_curl = $curl; + $this->_scopeConfig = $scopeConfig; $this->_assetRepo = $assetRepo; } @@ -30,12 +49,54 @@ public function __construct(Repository $assetRepo) */ public function getConfig() { + $scope = \Magento\Store\Model\ScopeInterface::SCOPE_STORE; + $secretKey = $this->_scopeConfig->getValue('payment/coin_payments/secret_key', $scope); + $publicKey = $this->_scopeConfig->getValue('payment/coin_payments/public_key', $scope); + $isDirect = $this->_scopeConfig->getValue('payment/coin_payments/is_direct', $scope); + $coinpaymentsDomain = $this->_scopeConfig->getValue('coinpayment/conf/url_payment', $scope); + $coinpaymentsApi = $this->_scopeConfig->getValue('coinpayment/conf/api_payment', $scope); + + $data = [ + 'version' => 1, + 'cmd' => 'rates', + 'key' => $publicKey, + 'accepted' => 2, + ]; + + $this->_curl->addHeader('HMAC', hash_hmac('sha512', http_build_query($data), $secretKey)); + $this->_curl->addHeader('Content-Type', 'application/x-www-form-urlencoded'); + $this->_curl->post($coinpaymentsApi, $data); + $response = json_decode($this->_curl->getBody()); + + $currencies = ['error' => $response->error]; + $acceptedCurrencies = ['error' => $response->error]; + if ($response->error == 'ok') { + $currencies = []; + $acceptedCurrencies = []; + foreach ($response->result as $key => $item) { + $elm = [ + 'value' => $key, + 'body' => $item, + 'name' => $item->name + ]; + $currencies[] = $elm; + if (isset($item->accepted) && $item->accepted == '1') { + $acceptedCurrencies[] = $elm; + } + } + } + return [ 'payment' => [ 'coinpayments' => [ - 'logo' => $this->_assetRepo->getUrl('Coinpayments_CoinPayments::images/logo.png'), + 'available_currencies' => $currencies, + 'accepted_currencies' => $acceptedCurrencies, + 'logo' => $this->_assetRepo->getUrl('Coinpayments_CoinPayments::images/logo.svg'), + 'direct_mode' => (int)$isDirect, + 'url' => $coinpaymentsDomain, + 'api_url' => $coinpaymentsApi ] ] ]; } -} +} \ No newline at end of file diff --git a/Model/Config/Source/Currency.php b/Model/Config/Source/Currency.php new file mode 100644 index 0000000..e639223 --- /dev/null +++ b/Model/Config/Source/Currency.php @@ -0,0 +1,48 @@ +_coinpaymentsRate = $coinpaymentsRate; + } + + /** + * @return array + */ + public function toOptionArray() + { + $response = $this->_coinpaymentsRate->fetchRates(true, true); + $currencies = []; + $currencies[] = [ + 'value' => '', + 'label' => self::UNDEFINED_OPTION_LABEL + ]; + + if ($response['error'] == 'ok') { + foreach ($response['result'] as $key => $item) { + $currencies[] = [ + 'value' => $key, + 'label' => $item['name'], + ]; + } + } else { + $currencies[] = ['value' => '', 'label' => $response['error']]; + } + return $currencies; + } +} diff --git a/Model/Currency.php b/Model/Currency.php new file mode 100644 index 0000000..b0361aa --- /dev/null +++ b/Model/Currency.php @@ -0,0 +1,37 @@ +_quoteFactory = $quoteFactory; + $this->_checkoutSession = $checkoutSession; + } + + /** + * @param string $cartId + * @param string $currency + * @param float $value + * @return boolean + */ + public function saveCurrency($cartId, $currency, $value) + { + $quote = $this->_quoteFactory->create()->load($cartId); + if (!$quote->getId()) { + return false; + } + + $this->_checkoutSession->setCoinpaymentsCurrency($currency); + $this->_checkoutSession->setCoinpaymentsCurrencyTotal($value); + return true; + } +} \ No newline at end of file diff --git a/Model/Info.php b/Model/Info.php new file mode 100644 index 0000000..f4e7267 --- /dev/null +++ b/Model/Info.php @@ -0,0 +1,33 @@ + 'POST', - 'action' => $action, - 'clientId' => $clientId, - 'clientSecret' => $clientSecret, - ]; - - $requestData = [ - 'invoiceId' => $invoiceParams['invoiceId'], - 'amount' => [ - 'currencyId' => $invoiceParams['currencyId'], - 'displayValue' => $invoiceParams['displayValue'], - 'value' => $invoiceParams['amount'] - ], - 'notesToRecipient' => $invoiceParams['notesLink'], - ]; - - if (isset($invoiceParams['billingData'])) { - $requestData['buyer'] = $this->appendBillingData($invoiceParams['billingData']); - } - - $requestData = $this->appendInvoiceMetadata($requestData); - $headers = $this->getRequestHeaders($requestParams, $requestData); - return $this->sendPostRequest($action, $headers, $requestData); - } - - /** - * @param $clientId - * @param $invoiceParams - * @return mixed - */ - public function createSimple($clientId, $invoiceParams) - { - - $action = Data::API_SIMPLE_INVOICE_ACTION; - - $requestData = [ - 'clientId' => $clientId, - 'invoiceId' => $invoiceParams['invoiceId'], - 'amount' => [ - 'currencyId' => $invoiceParams['currencyId'], - 'displayValue' => $invoiceParams['displayValue'], - 'value' => $invoiceParams['amount'], - ], - 'notesToRecipient' => $invoiceParams['notesLink'], - ]; - - if (isset($invoiceParams['billingData'])) { - $requestData['buyer'] = $this->appendBillingData($invoiceParams['billingData']); - } - - $requestData = $this->appendInvoiceMetadata($requestData); - return $this->sendPostRequest($action, [], $requestData); - } - - /** - * @param $order - * @param $coinInvoiceId - * @return int - */ - public function createOrderTransaction($order, $coinInvoiceId) - { - $payment = $order->getPayment(); - /* @var Order\Payment\Transaction\BuilderInterface */ - $transaction = $this->transactionBuilder - ->setPayment($payment) - ->setOrder($order) - ->setTransactionId($coinInvoiceId) - ->setFailSafe(true) - ->build(\Magento\Sales\Model\Order\Payment\Transaction::TYPE_CAPTURE); - $transaction->save(); - return $transaction->getTransactionId(); - } - - /** - * @param $requestData - * @return mixed - */ - protected function appendInvoiceMetadata($requestData) - { - - $requestData['metadata'] = [ - 'integration' => sprintf('Magento_v%s', $this->helper->getBaseConfigParam(Data::PACKAGE_VERSION)), - 'hostname' => $this->helper->getHostUrl(), - ]; - - return $requestData; - } - - /** - * @param $billingData - * @return array - */ - function appendBillingData($billingData) - { - $params = array( - 'companyName' => $billingData->getCompany(), - 'name' => array( - 'firstName' => $billingData->getFirstname(), - 'lastName' => $billingData->getLastname(), - ), - 'phoneNumber' => $billingData->getTelephone(), - ); - - if (preg_match('/^.*@.*$/', $billingData->getEmail())) { - $params['emailAddress'] = $billingData->getEmail(); - } - - if (!empty($billingData->getStreetLine(1)) && - !empty($billingData->getCity()) && - preg_match('/^([A-Z]{2})$/', $billingData->getCountryId()) - ) { - $params['address'] = array( - 'address1' => $billingData->getStreetLine(1), - 'address2' => $billingData->getStreetLine(2), - 'provinceOrState' => $billingData->getRegionCode(), - 'city' => $billingData->getCity(), - 'countryCode' => $billingData->getCountryId(), - 'postalCode' => $billingData->getPostcode() - ); - } - - return $params; - } -} diff --git a/Model/Ipn.php b/Model/Ipn.php new file mode 100644 index 0000000..f309d96 --- /dev/null +++ b/Model/Ipn.php @@ -0,0 +1,68 @@ +setHmac($hmac); + $this->setRequestData($data); + $order = $this->getOrder(); + + $this + ->logAndDie('REQUEST: ' . print_r($data, true)) + ->logAndDie('HMAC: ' . $hmac); + + if (!$order) { + $error['order'] = __('Order is not longer exist'); + $this->logAndDie($error['order']); + return $error; + } + + if (!$this->filterIpnType()) { + $error['ipn_type'] = __('Invalid IPN type'); + $this->logAndDie($error['ipn_type']); + return $error; + } + + if (!$this->checkHmac()) { + $error['hmac'] = __('Invalid HMAC signature'); + $this->logAndDie($error['hmac']); + return $error; + } + + $this + ->updateOrderPayment() + ->updateOrderStatus() + ->addToOrderHistory() + ->addTransactionToOrder(); + + try { + $order->save(); + } catch (\Exception $e) { + $error['order_save'] = __('Error when save Order'); + $this->logAndDie($error['order_save']); + return $error; + } + $this->logAndDie(__('SUCCESS UPDATE ORDER')); + return []; + } +} \ No newline at end of file diff --git a/Model/IpnInterface.php b/Model/IpnInterface.php new file mode 100644 index 0000000..829c42d --- /dev/null +++ b/Model/IpnInterface.php @@ -0,0 +1,13 @@ +getConfigData('active', $storeId); } - /** - * @return string - */ public function getCode() { return $this->_code; diff --git a/Model/Transaction.php b/Model/Transaction.php new file mode 100644 index 0000000..17c75e8 --- /dev/null +++ b/Model/Transaction.php @@ -0,0 +1,56 @@ +_quoteFactory = $quoteFactory; + $this->_checkoutSession = $checkoutSession; + $this->_apiTransaction = $apiTransaction; + } + + /** + * @param string $cartId + * @param string $currency + * @param float $value + * @return boolean + */ + public function createTransaction($cartId, $currency, $value) + { + $quote = $this->_quoteFactory->create()->load($cartId); + $order = $this->_checkoutSession->getLastRealOrder(); + + if (!$order->getId() && !$quote->getId()) { + return false; + } + $data = $this->_apiTransaction->create($order, $currency); + $this->_checkoutSession->setCoinpaymentsCurrency($currency); + $this->_checkoutSession->setCoinpaymentsCurrencyTotal($value); + $this->_checkoutSession->setCoinpaymentsTransactionData(json_encode($data)); + return true; + } +} \ No newline at end of file diff --git a/Model/WebHook.php b/Model/WebHook.php deleted file mode 100644 index 5d3a0be..0000000 --- a/Model/WebHook.php +++ /dev/null @@ -1,166 +0,0 @@ - 'POST', - 'action' => $action, - 'clientId' => $clientId, - 'clientSecret' => $clientSecret, - ]; - - $requestData = [ - "notificationsUrl" => $this->helper->getNotificationUrl($clientId, $event), - "notifications" => [ - sprintf("invoice%s", $event), - ], - ]; - - $headers = $this->getRequestHeaders($requestParams, $requestData); - return $this->sendPostRequest($action, $headers, $requestData); - } - - /** - * @param $clientId - * @param $clientSecret - * @return mixed - * @throws \Exception - */ - public function getList($clientId, $clientSecret) - { - - $action = sprintf(Data::API_WEBHOOK_ACTION, $clientId); - - $requestParams = [ - 'method' => 'GET', - 'action' => $action, - 'clientId' => $clientId, - 'clientSecret' => $clientSecret, - ]; - - $headers = $this->getRequestHeaders($requestParams); - return $this->sendGetRequest($action, $headers); - } - - /** - * @param $requestData - * @throws \Magento\Framework\Exception\InputException - */ - public function receiveNotification($requestData) - { - - $orderData = explode('|', $requestData['invoice']['invoiceId']); - $host = array_shift($orderData); - if ($host == md5($this->helper->getHostUrl())) { - $orderId = array_shift($orderData); - $paymentId = array_shift($orderData); - $coinInvoiceId = $requestData['invoice']['id']; - $transaction = $this->transactionRepository->getByTransactionId( - $coinInvoiceId, - $paymentId, - $orderId - ); - - if (!empty($transaction)) { - /** @var Order $order */ - $order = $transaction->getOrder(); - if ($requestData['invoice']['status'] == Data::PAID_EVENT) { - $this->completeOrder($requestData['invoice'], $order, $transaction); - } elseif ($requestData['invoice']['status'] == Data::CANCELLED_EVENT) { - $this->cancelOrder($order); - } - } - } - - } - - /** - * @param $rawDetails - * @param $order - * @param $transaction - * @return bool - */ - public function completeOrder($rawDetails, $order, $transaction) - { - - $rawDetails['amount'] = $rawDetails['amount']['displayValue']; - $rawDetails['currency'] = $rawDetails['currency']['symbol']; - - - $order->setTotalPaid($rawDetails['amount']); - $order - ->setState($this->helper->getConfig(Data::CLIENT_ORDER_STATUS_KEY)) - ->setStatus($this->helper->getConfig(Data::CLIENT_ORDER_STATUS_KEY)); - - $str = 'CoinPayments.net Payment Status: ' . $rawDetails['status'] . ' ' . $rawDetails['status'] . '
'; - $str .= 'Transaction ID: ' . $rawDetails['id'] . '
'; - $str .= 'Received Amount: ' . sprintf('%s %s', $rawDetails['amount'], $rawDetails['currency']); - $order->addStatusToHistory($order->getStatus(), $str); - - - $transaction->setAdditionalInformation(Order\Payment\Transaction::RAW_DETAILS, $rawDetails); - - try { - $formatedPrice = $order->getBaseCurrency()->formatTxt($order->getGrandTotal()); - - $payment = $order->getPayment(); - $payment->setMethod($this->coinPaymentsMethod->getCode()); - $payment->setLastTransId($transaction->getId()); - $payment->setTransactionId($transaction->getTransactionId()); - $payment->setAdditionalInformation([Order\Payment\Transaction::RAW_DETAILS => $rawDetails]); - $payment->addTransactionCommentsToOrder($transaction, __('The authorized amount is %1.', $formatedPrice)); - $payment->setParentTransactionId(null); - - $invoice = $order->prepareInvoice()->register(); - $invoice->setOrder($order); - $invoice->setOrder($order); - $invoice->pay(); - - $order->addRelatedObject($invoice); - $payment->setCreatedInvoice($invoice); - - $payment->save(); - $order->save(); - $transaction->save(); - return $transaction->getTransactionId(); - } catch (\Exception $e) { - } - return true; - } - - /** - * @param Order $order - * @throws \Exception - */ - public function cancelOrder($order) - { - $order - ->setStatus(Order::STATE_CANCELED) - ->setState(Order::STATE_CANCELED) - ->save(); - } - -} diff --git a/README.md b/README.md index a01c083..80bae3e 100644 --- a/README.md +++ b/README.md @@ -1,30 +1,32 @@ -IMPORTANT NOTE: - -This is only for use with: https://alpha.coinpayments.net/ - -NOT for use with https://coinpayments.net - -Demonstration Website Disclaimer: The information presented on alpha.coinpayments.net (the "Demo Site") is for demonstration purposes only. All content on the Demo Site is considered “in development” and should be used at your own risk. CoinPayments Inc. assumes no responsibility or liability for any errors or omissions in the content of the Demo Site. The information contained in the Demo Site is provided on an "as is" basis with no guarantees of completeness, accuracy, usefulness or timeliness and without any warranties of any kind whatsoever, express or implied. CoinPayments Inc. does not warrant that the Demo Site and any information or material downloaded from the Demo Site, will be uninterrupted, error-free, omission-free or free of viruses or other harmful items. - -In no event will CoinPayments Inc. or its directors, officers, employees, shareholders, service providers or agents, be liable to you, or anyone else, for any decision(s) made or action(s) taken in reliance upon the information contained in the Demo Site, nor for any direct, indirect, incidental, special, exemplary, punitive, consequential, or other damages whatsoever (including, but not limited to, liability for loss of use, funds, data or profits) whether in an action of contract, statute, tort or otherwise, relating to the use of the Demo Site." - -# Coinpayments_CoinPayments Module - -The Coinpayments_CoinPayments module provides the "Coinpayments.NET" payment method. - -## About CoinPayments Module - -CoinPayments module provides integration of your Magento 2 store with Coinpaymnets.NET services. This helps your customers shop quickly, safely and securely. -Your customers can pay on your website without re-entering their payment and address details. -All CoinPayments module transactions are protected. - -## Dependencies - -You can find a list of modules in the require section of the `composer.json` file located in the -same directory as this `README.md` file. - -## Extension Points - -There are no extension points or service contracts for this module. - -## Additional Information +

Download

+Grab the latest version by clicking the Releases tab. Then come back here for installation instructions. +

Overview

+

Meet the best way to accept cryptocurrency on Magento 2. With Coinpayments CoinPayments Magento 2 extension, you will easily integrate your ecommerce store with the popular cryptocurrency gateway accepting over 70 altcoins, including Bitcoin and Ethereum. Thus, Magento 2 cryptocurrency trading is no longer an unattainable goal - it is a new way of business dealing.

+

Features

+

- Magento 2 cryptocurrency integration: accept Bitcoin, Ethereum, and other altcoins as payment for products and services you sell;

+

- Use Magento 2 cryptocurrency wallets (based on CoinPayments) to store crypto: Ethereum, Bitcoin or any supported altcoin wallet;

+

- Transparent transaction history: view separate logs for deposits, transfers, withdrawals, and conversions.

+

- Supported coins : Bitcoin, Litecoin, AudioCoin, BitConnect, Bitcoin Cash, BitBean, BlackCoin, Breakout, CloakCoin, Crown, CureCoin, Dash, Decred, DigiByte, Dogecoin, Ether Classic, Ethereum, Expanse, FLASH, GameCredits, GCRCoin, Goldcoin, Gridcoin, Groestlcoin, LeoCoin, LeoCoin (Old Chain), LISK, MaidSafeCoin, MonetaryUnit, NAV Coin, NoLimitCoin, Namecoin, NVO Token, Nexus, NXT, OMNI, PinkCoin, PIVX, PoSW Coin, PotCoin, Peercoin, ProCurrency, Quark, Steem Dollars, SibCoin, STEEM, Stratis, Syscoin, TetherUSD, Voxels, Vertcoin, Waves, Counterparty, NEM, Monero, VERGE, ZCash, ZenCash.

+

CoinPayments is a popular online platform that allows accepting, storing, converting, and withdrawing altcoins. Currently it supports 70+ cryptocurrencies and provides a unique $tag to receive payments from all of them. Thus, you can easily accept payments in such popular altcoins as Bitcoin and Ethereum on your Magento 2 ecommerce website. Bitcoin is a number one cryptocurrency that has become the first decentralized digital currency that uses peer-to-peer transactions, so users interact directly without any intermediary. Ethereum is based on the same technology, blockchain, and provides a cryptocurrency token transferable between accounts as well. To view current Magento 2 cryptocurrency prices, visit CoinMarketCap.

+

With the Coinpayments CoinPayments Magento 2 cryptocurrency extension, you can not only accept altcoins on your Magento 2 website, but also store cryptocurrency in a secure online wallet as well as protect altcoins in the vault that requires a time amount before being able to spend them. Almost 400 thousand vendors all over the world already use CoinPayments, so don't waste your chance to implement the new technology on your ecommerce storefront with the Coinpayments CoinPayments Magento 2 extension.

+

The Magento 2 CoinPyament cryptocurrency module is easy to configure. The integration of your store with CoinPayments (and the desired ability to accept crypto on Magento 2) won't take much time. Simply go to Stores -> Settings -> Configuration -> Sales -> Payment Methods -> Other Payment Methods. Here, you can find the 'Coin Payments' section that allows enabling the integration (specify such parameters as your CoinPayments.net Merchant ID and IPN secret), specifying countries to enable the new payment method for, and selecting order statuses for two cases: CoinPayments didn't receive funds and funds are received.

+ +

Installation

+Composer driven installation coming soon , for now please use manual approach described below.

+ +

To install module through composer please type:

+
    +
  1. Open your magento 2 dir - cd /your/magento2/dir
  2. +
  3. Add module to composer.json - composer require coinpaymentsnet/magento2
  4. +
  5. Reinstall composer - composer install
  6. +
  7. Enable Coinpayments module - bin/magento module:enable Coinpayments_CoinPayments
  8. +
  9. Upgrade your modules - bin/magento setup:upgrade
  10. +
  11. Flush cache - bin/magento c:f
  12. +
+

Setting Up

+
    +
  • Login to your admin account
  • +
  • Follow this way Stores->Configuration->Payment->Payment Methods
  • +
  • Put values int to the form. Keys you can find in your account here Coinpayments
  • +
+Congratulations! The Coinpayments CoinPayments Magento 2 Bitcoin/Ethereum/Altcoin module is successfully installed. Now, you should configure your new Magento 2 cryptocurrency payment gateway. diff --git a/composer.json b/composer.json index e339362..4c3ba09 100644 --- a/composer.json +++ b/composer.json @@ -2,10 +2,10 @@ "name": "coinpaymentsnet/magento2", "description": "Add new payment method for CoinPayments.net", "require": { - "php": "~7.3.0||~7.4.0" + "php": "~5.5.0|~5.6.0|~7.0.0|~7.1" }, "type": "magento2-module", - "version": "2.0.0", + "version": "1.6.0", "license": [ "OSL-3.0" ], @@ -14,7 +14,7 @@ "registration.php" ], "psr-4": { - "coinpaymentsnet\\magento2\\": "" + "Coinpayments\\CoinPayments\\": "" } } } diff --git a/etc/acl.xml b/etc/acl.xml index 2350630..1686ef0 100644 --- a/etc/acl.xml +++ b/etc/acl.xml @@ -4,6 +4,7 @@ + \ No newline at end of file diff --git a/etc/adminhtml/routes.xml b/etc/adminhtml/routes.xml deleted file mode 100644 index bff2f1a..0000000 --- a/etc/adminhtml/routes.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - diff --git a/etc/adminhtml/system.xml b/etc/adminhtml/system.xml index 58f0925..1e575cd 100644 --- a/etc/adminhtml/system.xml +++ b/etc/adminhtml/system.xml @@ -1,74 +1,76 @@ - + +
- - complex coin-payment-section - Magento\Paypal\Block\Adminhtml\System\Config\Fieldset\Payment -
-
- The convenient, trusted way to pay.
- Let your customers check out in just a few clicks or taps using the - shipping and payment info already stored in their Coinpayments.Net account. -
- ]]> - + + - + Magento\Config\Model\Config\Source\Yesno - - - - required-entry validate-length minimum-length-22 maximum-length-32 coin-invoice-validate - - - 1 - + + + Coinpayments\CoinPayments\Model\Config\Source\Currency + - - - + + Magento\Config\Model\Config\Source\Yesno - - 1 - - - - - - required-entry validate-length minimum-length-22 maximum-length-44 coin-webhooks-validate - - - 1 - 1 - + + + - - + + + Account Settings -> Basic Settings -> Your Merchant ID.]]> + + + + + + + + + + + + + + + + + + + + Magento\Payment\Model\Config\Source\Allspecificcountries + + + + Magento\Directory\Model\Config\Source\Country + 1 + + + + Magento\Sales\Model\Config\Source\Order\Status\NewStatus + + + Magento\Sales\Model\Config\Source\Order\Status - required-entry - - - - - 1 - 1 - + + + + + Magento\Config\Model\Config\Source\Yesno - diff --git a/etc/config.xml b/etc/config.xml index 8a8183a..49ad4a9 100644 --- a/etc/config.xml +++ b/etc/config.xml @@ -1,11 +1,18 @@ + - 0 + 1 Coinpayments\CoinPayments\Model\Methods\Coinpayments + pending Coin Payments 0 coinpayments @@ -13,11 +20,10 @@ - https://api.coinpayments.net - https://checkout.coinpayments.net + https://www.coinpayments.net + https://www.coinpayments.net/api.php 1 - 2.0.0 - + ` \ No newline at end of file diff --git a/etc/di.xml b/etc/di.xml index 2b0a1b9..4f80664 100644 --- a/etc/di.xml +++ b/etc/di.xml @@ -1,6 +1,25 @@ - - + + + + + Magento\Framework\Filesystem\Driver\File + + + + + CoinPaymentDebug + + Coinpayments\CoinPayments\Logger\Handler + + + + + \ No newline at end of file diff --git a/etc/frontend/routes.xml b/etc/frontend/routes.xml index e4e6805..71b31b9 100644 --- a/etc/frontend/routes.xml +++ b/etc/frontend/routes.xml @@ -1,9 +1,14 @@ - + + - + \ No newline at end of file diff --git a/etc/module.xml b/etc/module.xml index 70b380d..10c35a2 100644 --- a/etc/module.xml +++ b/etc/module.xml @@ -1,13 +1,18 @@ - - + + + - - - - - - + + + + + + \ No newline at end of file diff --git a/etc/payment.xml b/etc/payment.xml index 34905c1..4ae7aec 100644 --- a/etc/payment.xml +++ b/etc/payment.xml @@ -1,4 +1,10 @@ + diff --git a/etc/webapi.xml b/etc/webapi.xml new file mode 100644 index 0000000..47dc727 --- /dev/null +++ b/etc/webapi.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/registration.php b/registration.php index cb2090d..4995652 100644 --- a/registration.php +++ b/registration.php @@ -1,4 +1,8 @@ + */ \Magento\Framework\Component\ComponentRegistrar::register( \Magento\Framework\Component\ComponentRegistrar::MODULE, diff --git a/view/adminhtml/layout/adminhtml_system_config_edit.xml b/view/adminhtml/layout/adminhtml_system_config_edit.xml deleted file mode 100644 index af483a5..0000000 --- a/view/adminhtml/layout/adminhtml_system_config_edit.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - - - diff --git a/view/adminhtml/requirejs-config.js b/view/adminhtml/requirejs-config.js deleted file mode 100644 index 281fef8..0000000 --- a/view/adminhtml/requirejs-config.js +++ /dev/null @@ -1,6 +0,0 @@ -var config = { - 'paths': { - 'coin-invoice-validate': 'Coinpayments_CoinPayments/js/invoice-validate', - 'coin-webhooks-validate': 'Coinpayments_CoinPayments/js/webhooks-validate' - } -}; diff --git a/view/adminhtml/templates/coinpayments/info/default.phtml b/view/adminhtml/templates/coinpayments/info/default.phtml new file mode 100644 index 0000000..1466665 --- /dev/null +++ b/view/adminhtml/templates/coinpayments/info/default.phtml @@ -0,0 +1,11 @@ + + */ + +echo '

Ordered with CoinPayments

'; +if ($url = $block->getCoinPaymentsInvoiceUrl()) { + echo '

View Invoice

'; +} +?> \ No newline at end of file diff --git a/view/adminhtml/templates/js_vars.phtml b/view/adminhtml/templates/js_vars.phtml deleted file mode 100644 index d876cdc..0000000 --- a/view/adminhtml/templates/js_vars.phtml +++ /dev/null @@ -1,8 +0,0 @@ - \ No newline at end of file diff --git a/view/adminhtml/web/images/logo.png b/view/adminhtml/web/images/logo.png deleted file mode 100644 index eefad06b81254f836b05b5eabe257879f4733cc2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 50003 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 diff --git a/view/adminhtml/web/js/invoice-validate.js b/view/adminhtml/web/js/invoice-validate.js deleted file mode 100644 index 904f287..0000000 --- a/view/adminhtml/web/js/invoice-validate.js +++ /dev/null @@ -1,38 +0,0 @@ -require([ - 'jquery', - 'jquery/ui', - 'jquery/validate', - 'mage/translate' -], function ($) { - - $.validator.addMethod( - "coin-invoice-validate", - function (client_id) { - - var web_hooks = $('[data-ui-id="select-groups-coin-payments-fields-webhooks-value"]'); - var is_success = false; - - if (web_hooks.length && web_hooks.val() === '1') { - is_success = true; - } else { - var params = { - client_id: client_id, - }; - $.ajax({ - showLoader: true, - url: coin_validate_invoice, - data: params, - async: false, - type: "POST", - dataType: 'json' - }).done(function (data) { - is_success = data.success; - }); - } - - return is_success; - }, - $.mage.__("Please enter a valid Coinpayments.NET credentials.") - ); - -}); \ No newline at end of file diff --git a/view/adminhtml/web/js/webhooks-validate.js b/view/adminhtml/web/js/webhooks-validate.js deleted file mode 100644 index 292d3f7..0000000 --- a/view/adminhtml/web/js/webhooks-validate.js +++ /dev/null @@ -1,48 +0,0 @@ -require([ - 'jquery', - 'jquery/ui', - 'jquery/validate', - 'mage/translate' -], function ($) { - - var validationError = "Please enter a valid Coinpayments.NET credentials."; - - $.validator.addMethod( - "coin-webhooks-validate", - function (client_secret, elem) { - - var is_success = false; - var validator = this; - var client_id_field = $('[data-ui-id="text-groups-coin-payments-fields-client-id-value"]'); - var client_secret_field = $('[data-ui-id="text-groups-coin-payments-fields-client-secret-value"]'); - var web_hooks = $('[data-ui-id="select-groups-coin-payments-fields-webhooks-value"]'); - - if (client_id_field.length && web_hooks.length && client_secret_field.length) { - - var params = { - client_id: client_id_field.val(), - client_secret: client_secret_field.val(), - }; - - $.ajax({ - showLoader: true, - url: coin_validate_webhooks, - data: params, - async: false, - type: "POST", - dataType: 'json' - }).done(function (data) { - is_success = data.success; - if (!is_success) { - var errors = {}; - errors[client_id_field.attr('name').replace(/[.*+?^${}()|[\]\\]/g, '\\$&')] = validationError; - validator.showErrors(errors); - } - }); - } - - return is_success; - }, - $.mage.__(validationError) - ); -}); \ No newline at end of file diff --git a/view/adminhtml/web/styles.css b/view/adminhtml/web/styles.css deleted file mode 100644 index 22a17cd..0000000 --- a/view/adminhtml/web/styles.css +++ /dev/null @@ -1,30 +0,0 @@ -.complex.coin-payment-section .coin-payment-logo { - display: inline-block; - vertical-align: middle; - margin: 0 20px 0 0px; - width: 180px; - height: 60px; - background-repeat: no-repeat, no-repeat, no-repeat; - background-size: 100% auto; - background-position: center top; - background-image: url('images/logo.png'); -} - -.section-config.with-button.coin-payment-section .config-heading strong { - font-weight: normal; -} - -.complex.coin-payment-section .button-container { - float: right; -} - -.complex.coin-payment-section .coin-payment-description { - display: inline-block; - vertical-align: middle; - width: 50%; -} - -.coin-payment-section.section-config.active > .admin__collapsible-block + input + fieldset { - margin-left: 40px; -} - diff --git a/view/frontend/layout/checkout_index_index.xml b/view/frontend/layout/checkout_index_index.xml index 5a7494b..65d003c 100644 --- a/view/frontend/layout/checkout_index_index.xml +++ b/view/frontend/layout/checkout_index_index.xml @@ -1,53 +1,55 @@ - - - - - - - - - - - - - - - - uiComponent - - - - - - - - Coinpayments_CoinPayments/js/view/payment/coin_payments - - - - true - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + uiComponent + + + + + + + Coinpayments_CoinPayments/js/view/payment/validate-direct-form + + + + + + + Coinpayments_CoinPayments/js/view/payment/coin_payments + + + true + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/view/frontend/layout/coinpayments_checkout_failure.xml b/view/frontend/layout/coinpayments_checkout_failure.xml index 7831f24..71e3b5b 100644 --- a/view/frontend/layout/coinpayments_checkout_failure.xml +++ b/view/frontend/layout/coinpayments_checkout_failure.xml @@ -5,8 +5,7 @@ * See COPYING.txt for license details. */ --> - + @@ -14,8 +13,7 @@ - + diff --git a/view/frontend/layout/coinpayments_invoice_index.xml b/view/frontend/layout/coinpayments_invoice_index.xml new file mode 100644 index 0000000..8d8388c --- /dev/null +++ b/view/frontend/layout/coinpayments_invoice_index.xml @@ -0,0 +1,14 @@ + + + + + + + + + \ No newline at end of file diff --git a/view/frontend/layout/coinpayments_transaction_status.xml b/view/frontend/layout/coinpayments_transaction_status.xml new file mode 100644 index 0000000..43f212f --- /dev/null +++ b/view/frontend/layout/coinpayments_transaction_status.xml @@ -0,0 +1,14 @@ + + + + + + + + + \ No newline at end of file diff --git a/view/frontend/templates/coinpayments/form/coinpayments.phtml b/view/frontend/templates/coinpayments/form/coinpayments.phtml new file mode 100644 index 0000000..f6acf5e --- /dev/null +++ b/view/frontend/templates/coinpayments/form/coinpayments.phtml @@ -0,0 +1,13 @@ + + */ + +$_code = $block->getMethodCode(); +$coinpaymentsScope = \Magento\Framework\App\ObjectManager::getInstance()->get('\Magento\Framework\App\Config\ScopeConfigInterface'); +if ($coinpaymentsScope->getValue('payment/coinpayments/fullscreen')) { + echo ''; +} diff --git a/view/frontend/templates/coinpayments/iframe.phtml b/view/frontend/templates/coinpayments/iframe.phtml new file mode 100644 index 0000000..7a98c57 --- /dev/null +++ b/view/frontend/templates/coinpayments/iframe.phtml @@ -0,0 +1,53 @@ + + */ +// Retrieve order +$orderId = $block->getLastOrderId(); +$payemntData = $block->getPaymentData(); +$quoteData = $block->getQuote(); +$successUrl = $block->getSuccessUrl(); +$failUrl = $block->getFailUrl(); +?> +
+ + + + + + + + + + + + + + + + + + + + +
+ \ No newline at end of file diff --git a/view/frontend/templates/coinpayments/redirect.phtml b/view/frontend/templates/coinpayments/redirect.phtml new file mode 100644 index 0000000..1d03c06 --- /dev/null +++ b/view/frontend/templates/coinpayments/redirect.phtml @@ -0,0 +1,11 @@ + + */ + +// Retrieve order +$_order = $block->getOrder(); +$orderId = $block->getRealOrderId(); +//var_dump($orderId); + diff --git a/view/frontend/templates/coinpayments/status.phtml b/view/frontend/templates/coinpayments/status.phtml new file mode 100644 index 0000000..a1d1918 --- /dev/null +++ b/view/frontend/templates/coinpayments/status.phtml @@ -0,0 +1,35 @@ +getTransactionData(); +$currency = $block->getTransactionCurrency(); +?> + +
+

Your order # is: getLastOrderIncrementId(); ?>.

+

We'll email you an order confirmation with details and tracking info.

+ error == 'ok') : ?> +

Status link

+
+
+

+ : + result->address ?> +

+
+
+

+ : + result->amount . ' ' . $currency ?> +

+
+
+

+ : + +

+
+
+ +

+

error ?>

+ +
diff --git a/view/frontend/templates/js_vars.phtml b/view/frontend/templates/js_vars.phtml deleted file mode 100644 index a0ff978..0000000 --- a/view/frontend/templates/js_vars.phtml +++ /dev/null @@ -1,7 +0,0 @@ - \ No newline at end of file diff --git a/view/frontend/web/images/logo.png b/view/frontend/web/images/logo.png index 3467c9da139249e45da9958f21b564601bac1a01..4cc78a80875d05fc8e0d8f6a4d030724e502a0ef 100644 GIT binary patch literal 2876 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 X%U{10%(AcjF};_KEsZJ--D3X-tYJ+I literal 1475 zcmV;!1w8tRP)Px#1ZP1_K>z@;j|==^1pojAZAnByR9Hu~R%>h&RTMsVX13eiZowku(H3gEYYS?L z4G@T;z#kDqC=rXM5{eZ?i}4Xn^pB9n#Q2CY22{Y<1{z`niNqL{VnPVgV!#I$Td*yZ zy6v{m7P{?rAG0&p@6OHww!3t@z?baKz31Gy=R1#k?l8I?DCKfadfRN$c#iun_s>+d zG;C@{K{B7W6xojR^O(j;ILVpRw1k`Dn7CyGa?8)BW>%hdh%qOgiJzS$&gmXZ4e*%J zz9j^**0;>iNMCL7rMbkM=`bvw#I=0Sx%BLHt;=UVePNoAjl@k6nEU)m%Z&AH4@sOo z1^)^a(quyc%bb{s?Yqp?N+suayD93}?bkyGBXigCV->w1@G zXO>?S1e98sONhv5Bt&4#UY_#ej;{H?w8+mjGzVAx+7g^@sstDehGBmYqcV73frv~d z1(denM_kzW$HJ9Mk>&r#m;^R$?=Et8_iSox3$OmYEs%NfvZlfvBh<`dRNECUN#8Mz zABQ9pVu`_P6rxU5u+I4jg-JCRcI5@cJ0lUFz}%CTicdThzM%d}ee>{?wjMPQ)=4wo zfXh?YdeWp&%2K%K?X1Z^#bpXcUW@=?FUVeh{t524*1>qYDISHm1QtIsxg`5e<=Ofs zzh}Uw2d-Pl8E1KlH2fyh^>SFUnQ{Qd$;gL)89TqrNPkjJ(~@gMy@UK=hgEVeoMp=h zYohQ)>GKqfvJm%0@O&2smy1$c3ksJzcDa6o-st_%=_%czwU^sM+axzH#24a>#HZtp65(O&u8h#j1$XBu(|;2BTYzv^M0I!&q>#| ziHbF)F%h4D3AllCMbzq1>5IAn>!Ck}or~w#7j9fW;r_xb%Or6Qbzz+0>R}WT@7Th6 zwR_n4wtIJBr?JTmAR-zQ+2yTU(b--yrv?NW4Sre`M#WAmJuoXZJQU#m!;QoKmab4U z&gonIdkWAG5=Z<9ppwkdRS0ioyrJS`HJl01XFm)mr!NH4OBSSM)V?;orMK4AV=he? zW2PV$MA!t8P?*!P<^XN`e!#Nh;J}7&kNbWM2K6h+^#i*u@RR5TK^&Z`pxMm zh$x64FzhhDz(yZFGntBJ!uWWs191s-=DChw^EYrBJ4{hb;C>(#o!?1@6vj&NsdEsa zzk0a{qvyI+dheS)YQGqY6z4cGCINvXRV>_IonL2TYAKWWMpVF`rphS9eaD7q!`4gG z&j8 zjcB~a1(G5Vg}d5y+U?7)#C`lYrUy_2!x2s5xG4e#_A#w<_uYp>s(mfK3o2#CPvN%g dHML`a=s%k$MVNK`qdWir002ovPDHLkV1j0_z%l>; diff --git a/view/frontend/web/images/logo.svg b/view/frontend/web/images/logo.svg new file mode 100644 index 0000000..d8b21d9 --- /dev/null +++ b/view/frontend/web/images/logo.svg @@ -0,0 +1,75 @@ + + + + + + + + + + + + + Black_Make_Easy_CoinPayments_Updated_logo_2 + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/view/frontend/web/js/action/set-payment-method.js b/view/frontend/web/js/action/set-payment-method.js index 332081c..f50b662 100644 --- a/view/frontend/web/js/action/set-payment-method.js +++ b/view/frontend/web/js/action/set-payment-method.js @@ -1,56 +1,56 @@ -/** - * @copyright: Copyright © 2017 Firebear Studio. All rights reserved. - * @author : Firebear Studio - */ -define( - [ - 'jquery', - 'Magento_Checkout/js/model/quote', - 'Magento_Checkout/js/model/url-builder', - 'mage/storage', - 'Magento_Checkout/js/model/error-processor', - 'Magento_Customer/js/model/customer', - 'Magento_Checkout/js/model/full-screen-loader' - ], - function ($, quote, urlBuilder, storage, errorProcessor, customer, fullScreenLoader) { - 'use strict'; - - return function (messageContainer) { - var serviceUrl, - payload, - method = 'put', - paymentData = quote.paymentMethod(); - - /** - * Checkout for guest and registered customer. - */ - if (!customer.isLoggedIn()) { - serviceUrl = urlBuilder.createUrl('/guest-carts/:cartId/set-payment-information', { - cartId: quote.getQuoteId() - }); - payload = { - cartId: quote.getQuoteId(), - email: quote.guestEmail, - paymentMethod: paymentData - }; - method = 'post'; - } else { - serviceUrl = urlBuilder.createUrl('/carts/mine/selected-payment-method', {}); - payload = { - cartId: quote.getQuoteId(), - method: paymentData - }; - } - fullScreenLoader.startLoader(); - - return storage[method]( - serviceUrl, JSON.stringify(payload) - ).fail( - function (response) { - errorProcessor.process(response, messageContainer); - fullScreenLoader.stopLoader(); - } - ); - }; - } +/** + * @copyright: Copyright © 2017 Firebear Studio. All rights reserved. + * @author : Firebear Studio + */ +define( + [ + 'jquery', + 'Magento_Checkout/js/model/quote', + 'Magento_Checkout/js/model/url-builder', + 'mage/storage', + 'Magento_Checkout/js/model/error-processor', + 'Magento_Customer/js/model/customer', + 'Magento_Checkout/js/model/full-screen-loader' + ], + function ($, quote, urlBuilder, storage, errorProcessor, customer, fullScreenLoader) { + 'use strict'; + + return function (messageContainer) { + var serviceUrl, + payload, + method = 'put', + paymentData = quote.paymentMethod(); + + /** + * Checkout for guest and registered customer. + */ + if (!customer.isLoggedIn()) { + serviceUrl = urlBuilder.createUrl('/guest-carts/:cartId/set-payment-information', { + cartId: quote.getQuoteId() + }); + payload = { + cartId: quote.getQuoteId(), + email: quote.guestEmail, + paymentMethod: paymentData + }; + method = 'post'; + } else { + serviceUrl = urlBuilder.createUrl('/carts/mine/selected-payment-method', {}); + payload = { + cartId: quote.getQuoteId(), + method: paymentData + }; + } + fullScreenLoader.startLoader(); + + return storage[method]( + serviceUrl, JSON.stringify(payload) + ).fail( + function (response) { + errorProcessor.process(response, messageContainer); + fullScreenLoader.stopLoader(); + } + ); + }; + } ); \ No newline at end of file diff --git a/view/frontend/web/js/model/validate-direct-form.js b/view/frontend/web/js/model/validate-direct-form.js new file mode 100644 index 0000000..8d379d6 --- /dev/null +++ b/view/frontend/web/js/model/validate-direct-form.js @@ -0,0 +1,41 @@ +define( + ['jquery'], + function ($) { + 'use strict'; + return { + getCode: function () { + return 'coin_payments'; + }, + /** + * @returns {boolean} + */ + validate: function() { + if (this.getIsDirect()) { + return !this.validateDirectMode() + } + + return true; + }, + /** + * @returns {boolean} + */ + validateDirectMode: function () { + var isError = false; + var self = this; + var code = self.getCode(); + if (!$("#" + code + "_crypto_currency").find('option:selected').val()) { + // self.reportCurrencyMessage(); + isError = true; + } + return isError; + }, + getIsDirect: function () { + return window.checkoutConfig.payment.coinpayments.direct_mode; + }, + reportCurrencyMessage: function (message) + { + $("#" + this.getCode() + "_crypto_currency_error").text(message); + } + } + } +); \ No newline at end of file diff --git a/view/frontend/web/js/view/payment/coin_payments.js b/view/frontend/web/js/view/payment/coin_payments.js index 0d2585d..d7ed9df 100644 --- a/view/frontend/web/js/view/payment/coin_payments.js +++ b/view/frontend/web/js/view/payment/coin_payments.js @@ -8,13 +8,13 @@ define( rendererList ) { 'use strict'; - rendererList.push( { type: 'coin_payments', component: 'Coinpayments_CoinPayments/js/view/payment/method-renderer/coin-method' } ); + /** Add view logic here if needed */ return Component.extend({}); } ); \ No newline at end of file diff --git a/view/frontend/web/js/view/payment/method-renderer/coin-method.js b/view/frontend/web/js/view/payment/method-renderer/coin-method.js index 9104cff..d41acf6 100644 --- a/view/frontend/web/js/view/payment/method-renderer/coin-method.js +++ b/view/frontend/web/js/view/payment/method-renderer/coin-method.js @@ -1,3 +1,8 @@ +/** + * @copyright: Copyright © 2017 Firebear Studio. All rights reserved. + * @author : Firebear Studio + */ + define( [ 'ko', @@ -10,9 +15,9 @@ define( 'Magento_Checkout/js/checkout-data', 'Magento_Checkout/js/model/payment/additional-validators', 'mage/url', + 'Coinpayments_CoinPayments/js/action/set-payment-method', 'Magento_Checkout/js/model/full-screen-loader', - 'Magento_Checkout/js/model/error-processor', - 'Magento_Checkout/js/model/totals', + 'Magento_Checkout/js/model/error-processor' ], function (ko, Component, @@ -24,16 +29,11 @@ define( checkoutData, additionalValidators, url, + setPaymentMethodAction, fullScreenLoader, - errorProcessor, - totals - ) { + errorProcessor) { 'use strict'; - - window.fullScreenLoader = fullScreenLoader; - window.url = url; - - var a = Component.extend({ + return Component.extend({ defaults: { template: 'Coinpayments_CoinPayments/payment/coin_payment' }, @@ -43,8 +43,38 @@ define( getCode: function () { return 'coin_payments'; }, + /** + * @returns {boolean} + */ + isActive: function () { + return true; + }, afterPlaceOrder: function () { - this.createInvoice(); + // fullScreenLoader.startLoader(); + var self = this; + if (self.getIsDirect()) { + self.createTransaction( + window.checkoutConfig.payment.coinpayments.currentData.currency, + window.checkoutConfig.payment.coinpayments.currentData.total, + url.build('coinpayments/transaction/status/') + ); + } else { + window.location.replace(url.build('coinpayments/invoice/index/')); + } + }, + getRedirectionText: function () { + + var iframeHtml; + jQuery.ajax({ + url: url.build('coinpayments/iframe/index/'), + async: false, + dataType: "json", + success: function (a) { + iframeHtml = a.html; + } + + }); + return iframeHtml; }, /** * @@ -62,7 +92,6 @@ define( * @returns {boolean} */ placeOrder: function (data, event) { - if (event) { event.preventDefault(); } @@ -74,7 +103,6 @@ define( $(loginFormSelector).validation(); emailValidationResult = Boolean($(loginFormSelector + ' input[name=username]').valid()); } - if (emailValidationResult && this.validate() && additionalValidators.validate()) { this.isPlaceOrderActionAllowed(false); placeOrder = placeOrderAction(this.getData(), false, this.messageContainer); @@ -86,39 +114,127 @@ define( } return false; }, - getBaseGrandTotal: function () { - if (totals.totals()) { - var grandTotal = parseFloat(totals.totals()['grand_total']); - return grandTotal; + getMailingAddress: function () { + return window.checkoutConfig.payment.checkmo.mailingAddress; + }, + + getCurrencies: function () { + if (!window.checkoutConfig.payment.coinpayments.available_currencies.error) { + return window.checkoutConfig.payment.coinpayments.available_currencies; } - return window.checkoutConfig.totalsData.base_grand_total; + return [{error: "error"}]; + }, + getAcceptedCurrencies: function () { + if (!window.checkoutConfig.payment.coinpayments.accepted_currencies.error) { + return window.checkoutConfig.payment.coinpayments.accepted_currencies; + } + return [{error: "error"}]; }, getPaymentAcceptanceMarkSrc: function () { return window.checkoutConfig.payment.coinpayments.logo; }, + getIsDirect: function () { + return window.checkoutConfig.payment.coinpayments.direct_mode; + }, + getCoinpaymentsUrl: function () { + return window.checkoutConfig.payment.coinpayments.url; + }, + + getBaseGrandTotal: function () { + return window.checkoutConfig.totalsData.base_grand_total; + }, + getGrandTotal: function () { + return window.checkoutConfig.totalsData.grand_total; + }, + getCurrencyCode: function () { + return window.checkoutConfig.totalsData.quote_currency_code; + }, /** + * + * @param element + * @param event + */ + getConvertedAmount: function (element, event) { + var shopCurrency = window.checkoutConfig.totalsData.base_currency_code; + var elemToChange = $('#converted_amount_coinpayments'); + var total = this.getBaseGrandTotal(); + var currentCurrencyCode = $(event.target).find('option:selected').val(); + + var currentCurrency = this.getCurrencies().find(function (e, i, array) { + return e.value == currentCurrencyCode ? true : false + }); + if (!currentCurrency) return; + + var shopCurrencyValue = this.getCurrencies().find(function (e, i, array) { + return e.value == shopCurrency ? true : false + }); + if (currentCurrencyCode === 'BTC') { + total = (shopCurrencyValue.body.rate_btc * total); + } else { + total = (shopCurrencyValue.body.rate_btc * total) / currentCurrency.body.rate_btc; + } + total = total.toFixed(5); + elemToChange.val(total + ' ' + currentCurrencyCode); + + window.checkoutConfig.payment.coinpayments.currentData = { + total: total, + currency: currentCurrencyCode + }; + }, + /** + * * @returns {boolean} */ getAllowPlaceOrder: function () { return this.getCode() === this.isChecked(); }, + /** + * + * @param currency + * @param value + */ + saveCurrencyToQuote: function (currency, value) { + var quoteId = quote.getQuoteId(); + var url = '/rest/V1/coinpayments/' + quoteId + '/currency'; + var data = { + 'currency': currency, + 'value': value + }; + $.ajax({ + type: "POST", + url: url, + contentType: "application/json", + data: JSON.stringify(data), + success: function (result) { + //TODO success logic + }, + error: function (err) { + //TODO error logic + } + }); + }, /** * * @param currency * @param value * @param redirect */ - createInvoice: function () { + createTransaction: function (currency, value, redirect) { + var quoteId = quote.getQuoteId(); + var url = '/rest/V1/coinpayments/' + quoteId + '/transaction'; + var data = { + 'currency': currency, + 'value': value + }; $.ajax({ type: "POST", - dataType: 'json', + url: url, contentType: "application/json", - url: url.build(coin_invoice_create_url), + data: JSON.stringify(data), success: function (result) { - if (result.coinInvoiceId) { - window.location.href = result.redirectUrl; - } else { - window.location.href = result.cancelUrl; + console.log(result); + if (redirect) { + window.location.replace(redirect); } }, error: function (err) { @@ -130,8 +246,5 @@ define( }); } }); - window.a = a; - return a; } -) -; \ No newline at end of file +); diff --git a/view/frontend/web/js/view/payment/validate-direct-form.js b/view/frontend/web/js/view/payment/validate-direct-form.js new file mode 100644 index 0000000..7b78f8b --- /dev/null +++ b/view/frontend/web/js/view/payment/validate-direct-form.js @@ -0,0 +1,16 @@ +define( + [ + 'uiComponent', + 'Magento_Checkout/js/model/payment/additional-validators', + 'Coinpayments_CoinPayments/js/model/validate-direct-form' + ], + function ( + Component, + additionalValidators, + validateDirectForm + ) { + 'use strict'; + additionalValidators.registerValidator(validateDirectForm); + return Component.extend({}); + } +); \ No newline at end of file diff --git a/view/frontend/web/template/payment/coin_payment.html b/view/frontend/web/template/payment/coin_payment.html index 91c7081..a89c2ba 100644 --- a/view/frontend/web/template/payment/coin_payment.html +++ b/view/frontend/web/template/payment/coin_payment.html @@ -1,41 +1,58 @@ -
-
- - -
-
- - - - -
- - - -
-
-
- -
-
-
+ +
+
+ + +
+
+ + + +
+ +              + +
+                   +
+
+
+ + + +
+
+
+ +
+
+
\ No newline at end of file diff --git a/view/frontend/web/template/payment/coin_payment_form.html b/view/frontend/web/template/payment/coin_payment_form.html new file mode 100644 index 0000000..b637306 --- /dev/null +++ b/view/frontend/web/template/payment/coin_payment_form.html @@ -0,0 +1,38 @@ +
+
+ +
+
+
+
+ +
+
+
+
+ +
+
+
+
+
+
+
diff --git a/view/frontend/web/template/payment/coin_payment_message.html b/view/frontend/web/template/payment/coin_payment_message.html new file mode 100644 index 0000000..bde7d78 --- /dev/null +++ b/view/frontend/web/template/payment/coin_payment_message.html @@ -0,0 +1,2 @@ +You will be transfered to CoinPayments.net to complete your purchase when using this payment method. \ No newline at end of file From 2441d158fc0a87eb27c35bb3f3030a285a7451ea Mon Sep 17 00:00:00 2001 From: letscode Date: Tue, 4 May 2021 09:31:49 +0300 Subject: [PATCH 44/57] Fix invoice taxes & discount --- composer.json | 2 +- view/frontend/templates/coinpayments/iframe.phtml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/composer.json b/composer.json index 4c3ba09..ad5fdad 100644 --- a/composer.json +++ b/composer.json @@ -5,7 +5,7 @@ "php": "~5.5.0|~5.6.0|~7.0.0|~7.1" }, "type": "magento2-module", - "version": "1.6.0", + "version": "1.6.1", "license": [ "OSL-3.0" ], diff --git a/view/frontend/templates/coinpayments/iframe.phtml b/view/frontend/templates/coinpayments/iframe.phtml index 7a98c57..8714a38 100644 --- a/view/frontend/templates/coinpayments/iframe.phtml +++ b/view/frontend/templates/coinpayments/iframe.phtml @@ -26,8 +26,8 @@ $failUrl = $block->getFailUrl(); 'utf-8' ); ?>"> - - + + @@ -50,4 +50,4 @@ $failUrl = $block->getFailUrl(); \ No newline at end of file + From b07997ee4759f920fd4a205f0e0eb6e5b94c1830 Mon Sep 17 00:00:00 2001 From: timzagelow Date: Tue, 29 Nov 2022 21:02:29 -0700 Subject: [PATCH 45/57] allow php 8.1.11 to be used with composer --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index ad5fdad..d938547 100644 --- a/composer.json +++ b/composer.json @@ -2,7 +2,7 @@ "name": "coinpaymentsnet/magento2", "description": "Add new payment method for CoinPayments.net", "require": { - "php": "~5.5.0|~5.6.0|~7.0.0|~7.1" + "php": "~5.5.0|~5.6.0|~7.0.0|~7.1|~8.1.11" }, "type": "magento2-module", "version": "1.6.1", From fc4cde1e11beeae39852522b6498c621c4b849d7 Mon Sep 17 00:00:00 2001 From: timzagelow Date: Tue, 29 Nov 2022 21:07:33 -0700 Subject: [PATCH 46/57] also allow 8.0 and 8.1, version bump --- composer.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index d938547..a63c2ee 100644 --- a/composer.json +++ b/composer.json @@ -2,10 +2,10 @@ "name": "coinpaymentsnet/magento2", "description": "Add new payment method for CoinPayments.net", "require": { - "php": "~5.5.0|~5.6.0|~7.0.0|~7.1|~8.1.11" + "php": "~5.5.0|~5.6.0|~7.0.0|~7.1|~8.0|~8.1|~8.1.11" }, "type": "magento2-module", - "version": "1.6.1", + "version": "1.6.2", "license": [ "OSL-3.0" ], From 01204f369f2815668e9826fa0e31b8244a3e2a55 Mon Sep 17 00:00:00 2001 From: timzagelow Date: Tue, 29 Nov 2022 21:09:49 -0700 Subject: [PATCH 47/57] cleanup --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index a63c2ee..3275085 100644 --- a/composer.json +++ b/composer.json @@ -2,7 +2,7 @@ "name": "coinpaymentsnet/magento2", "description": "Add new payment method for CoinPayments.net", "require": { - "php": "~5.5.0|~5.6.0|~7.0.0|~7.1|~8.0|~8.1|~8.1.11" + "php": "~5.5.0|~5.6.0|~7.0.0|~7.1|~8.0|~8.1" }, "type": "magento2-module", "version": "1.6.2", From b9cdec4b0c0690719a646137ae71084f89662354 Mon Sep 17 00:00:00 2001 From: Serhii Smirnov Date: Mon, 22 May 2023 13:36:47 +0200 Subject: [PATCH 48/57] Trying to fix exception --- Model/Api/Base.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Model/Api/Base.php b/Model/Api/Base.php index a0ad9ad..0e48913 100644 --- a/Model/Api/Base.php +++ b/Model/Api/Base.php @@ -82,10 +82,10 @@ public function sendRequest($data, $cmd, $headers = [], $method = 'post', $assoc { $paymentConf = $this->getPaymentConfig(); $baseConf = $this->getBaseConfig(); - + $paymentConf['public_key'] = isset($paymentConf['public_key']) ? $paymentConf['public_key'] : ''; $paymentConf['api_version'] = isset($paymentConf['api_version']) ? $paymentConf['api_version'] : '1'; - + $additionalData = [ 'version' => $baseConf['api_version'], 'cmd' => $cmd, @@ -112,7 +112,7 @@ public function sendRequest($data, $cmd, $headers = [], $method = 'post', $assoc public function generateHmac($data, $secretKey = null) { if (!$secretKey) { - $secretKey = $this->getPaymentConfig('secret_key'); + $secretKey = $this->getPaymentConfig('secret_key') ?: ''; } return hash_hmac('sha512', http_build_query($data), $secretKey); } From c3441ce9e70daabc5660090c5b5f955b03cedeef Mon Sep 17 00:00:00 2001 From: Dmytro Dmytrashchuk Date: Thu, 21 Mar 2024 15:51:44 +0100 Subject: [PATCH 49/57] Fixed issue with config when API is not responding --- Model/CoinPaymentsConfigProvider.php | 33 ++++++++++++++++------------ 1 file changed, 19 insertions(+), 14 deletions(-) diff --git a/Model/CoinPaymentsConfigProvider.php b/Model/CoinPaymentsConfigProvider.php index 19cda93..6f85c01 100644 --- a/Model/CoinPaymentsConfigProvider.php +++ b/Model/CoinPaymentsConfigProvider.php @@ -68,22 +68,27 @@ public function getConfig() $this->_curl->post($coinpaymentsApi, $data); $response = json_decode($this->_curl->getBody()); - $currencies = ['error' => $response->error]; - $acceptedCurrencies = ['error' => $response->error]; - if ($response->error == 'ok') { - $currencies = []; - $acceptedCurrencies = []; - foreach ($response->result as $key => $item) { - $elm = [ - 'value' => $key, - 'body' => $item, - 'name' => $item->name - ]; - $currencies[] = $elm; - if (isset($item->accepted) && $item->accepted == '1') { - $acceptedCurrencies[] = $elm; + if (!is_null($response) && property_exists($response, 'error') && property_exists($response, 'result')) { + $currencies = ['error' => $response->error]; + $acceptedCurrencies = ['error' => $response->error]; + if ($response->error == 'ok') { + $currencies = []; + $acceptedCurrencies = []; + foreach ($response->result as $key => $item) { + $elm = [ + 'value' => $key, + 'body' => $item, + 'name' => $item->name + ]; + $currencies[] = $elm; + if (isset($item->accepted) && $item->accepted == '1') { + $acceptedCurrencies[] = $elm; + } } } + } else { + $currencies = ['error' => 'Could not load currencies list.']; + $acceptedCurrencies = ['error' => 'Could not load currencies list.']; } return [ From b2f301798d1357339be509c72b9c5c596c396501 Mon Sep 17 00:00:00 2001 From: git-seb <78160594+git-seb@users.noreply.github.com> Date: Thu, 21 Mar 2024 17:09:14 +0100 Subject: [PATCH 50/57] Update system.xml to add 'Sort Order' function Added 'Sort Order' function to provide the possibility of the user to set the position of this payment method in the list of payment methods on checkout page. --- etc/adminhtml/system.xml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/etc/adminhtml/system.xml b/etc/adminhtml/system.xml index 1e575cd..d64827f 100644 --- a/etc/adminhtml/system.xml +++ b/etc/adminhtml/system.xml @@ -52,6 +52,10 @@ Magento\Payment\Model\Config\Source\Allspecificcountries + + + validate-number + Magento\Directory\Model\Config\Source\Country From f4bcb7936cf7146bdfe25df99b13af135c87761d Mon Sep 17 00:00:00 2001 From: git-seb <78160594+git-seb@users.noreply.github.com> Date: Thu, 21 Mar 2024 17:21:46 +0100 Subject: [PATCH 51/57] Update composer.json to allow PHP 8.2 and new version number Allow PHP 8.2 and new version number so changes will be included when requesting updates in composer --- composer.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index 3275085..e4b7e45 100644 --- a/composer.json +++ b/composer.json @@ -2,10 +2,10 @@ "name": "coinpaymentsnet/magento2", "description": "Add new payment method for CoinPayments.net", "require": { - "php": "~5.5.0|~5.6.0|~7.0.0|~7.1|~8.0|~8.1" + "php": "~5.5.0|~5.6.0|~7.0.0|~7.1|~8.0|~8.1|~8.2" }, "type": "magento2-module", - "version": "1.6.2", + "version": "1.6.3", "license": [ "OSL-3.0" ], From 75a9240e8a086a8d6ae248fd45d1a8b086ab392a Mon Sep 17 00:00:00 2001 From: git-seb <78160594+git-seb@users.noreply.github.com> Date: Tue, 30 Apr 2024 08:22:09 +0200 Subject: [PATCH 52/57] Update coin_payment_form.html Removed placeholder 'Currency' from cryptocurrency dropdown to fix issues with other payment methods. Even though a customer wanted to pay with another payment method, they still needed to select a cryptocurrency from the dropdown menu in order to place their order. --- view/frontend/web/template/payment/coin_payment_form.html | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/view/frontend/web/template/payment/coin_payment_form.html b/view/frontend/web/template/payment/coin_payment_form.html index b637306..d21d51f 100644 --- a/view/frontend/web/template/payment/coin_payment_form.html +++ b/view/frontend/web/template/payment/coin_payment_form.html @@ -15,8 +15,7 @@ enable: 1, options: getAcceptedCurrencies(), optionsValue: 'value', - optionsText: 'name', - optionsCaption: $t('Currency')"> + optionsText: 'name'">
From 04c49e48e5c1eee1adf5f5fe9164e27800773450 Mon Sep 17 00:00:00 2001 From: git-seb <78160594+git-seb@users.noreply.github.com> Date: Mon, 6 May 2024 16:21:42 +0200 Subject: [PATCH 53/57] Revert "Fix for better compatibility with other payment methods" --- view/frontend/web/template/payment/coin_payment_form.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/view/frontend/web/template/payment/coin_payment_form.html b/view/frontend/web/template/payment/coin_payment_form.html index d21d51f..b637306 100644 --- a/view/frontend/web/template/payment/coin_payment_form.html +++ b/view/frontend/web/template/payment/coin_payment_form.html @@ -15,7 +15,8 @@ enable: 1, options: getAcceptedCurrencies(), optionsValue: 'value', - optionsText: 'name'"> + optionsText: 'name', + optionsCaption: $t('Currency')"> From 9c931f4fe39abf5c18f90a53ad7d10d9d83ac223 Mon Sep 17 00:00:00 2001 From: git-seb <78160594+git-seb@users.noreply.github.com> Date: Thu, 6 Jun 2024 15:27:55 +0200 Subject: [PATCH 54/57] Update coin_payment.html Clean up code a bit --- view/frontend/web/template/payment/coin_payment.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/view/frontend/web/template/payment/coin_payment.html b/view/frontend/web/template/payment/coin_payment.html index a89c2ba..10ede24 100644 --- a/view/frontend/web/template/payment/coin_payment.html +++ b/view/frontend/web/template/payment/coin_payment.html @@ -22,7 +22,7 @@
-              +
-                   +
@@ -55,4 +55,4 @@
- \ No newline at end of file + From 07a100d7f987683ea298e7d20fa491054e458cf5 Mon Sep 17 00:00:00 2001 From: git-seb <78160594+git-seb@users.noreply.github.com> Date: Thu, 6 Jun 2024 17:50:36 +0200 Subject: [PATCH 55/57] Update status.phtml Change sentence and make translatable --- view/frontend/templates/coinpayments/status.phtml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/view/frontend/templates/coinpayments/status.phtml b/view/frontend/templates/coinpayments/status.phtml index a1d1918..a6cbc47 100644 --- a/view/frontend/templates/coinpayments/status.phtml +++ b/view/frontend/templates/coinpayments/status.phtml @@ -4,8 +4,8 @@ $currency = $block->getTransactionCurrency(); ?>
-

Your order # is: getLastOrderIncrementId(); ?>.

-

We'll email you an order confirmation with details and tracking info.

+

getLastOrderIncrementId(); ?>.

+

error == 'ok') : ?>

Status link

From dfdbc1a2bd75162e69976c005d5684abaab788fe Mon Sep 17 00:00:00 2001 From: git-seb <78160594+git-seb@users.noreply.github.com> Date: Fri, 7 Jun 2024 04:36:56 +0200 Subject: [PATCH 56/57] Update coin-method.js to fix error function Fix 'error is undefined' when an error happens during creating the transaction. --- .../frontend/web/js/view/payment/method-renderer/coin-method.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/view/frontend/web/js/view/payment/method-renderer/coin-method.js b/view/frontend/web/js/view/payment/method-renderer/coin-method.js index d41acf6..837c57f 100644 --- a/view/frontend/web/js/view/payment/method-renderer/coin-method.js +++ b/view/frontend/web/js/view/payment/method-renderer/coin-method.js @@ -237,7 +237,7 @@ define( window.location.replace(redirect); } }, - error: function (err) { + error: function (error) { console.log(error); if (redirect) { window.location.replace(redirect); From 9caddbabf4aabf703e2abf11a72100764ef9c9b2 Mon Sep 17 00:00:00 2001 From: git-seb <78160594+git-seb@users.noreply.github.com> Date: Fri, 7 Jun 2024 04:58:56 +0200 Subject: [PATCH 57/57] Create csp_whitelist.xml Allow QR code image being loaded from https://www.coinpayments.net with Magento's Content Security Policy. (Required for Magento 2.4.7) --- etc/csp_whitelist.xml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 etc/csp_whitelist.xml diff --git a/etc/csp_whitelist.xml b/etc/csp_whitelist.xml new file mode 100644 index 0000000..2b7a8fa --- /dev/null +++ b/etc/csp_whitelist.xml @@ -0,0 +1,10 @@ + + + + + + https://www.coinpayments.net + + + +