HISE Logo Forum
    • Categories
    • Register
    • Login

    Get data from Woocommerce via server api

    Scheduled Pinned Locked Moved Scripting
    authenticationserverapiwoocommerce
    109 Posts 11 Posters 9.4k Views
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • Christoph HartC
      Christoph Hart
      last edited by

      @clumsybear said in Get data from Woocommerce via server api:

      JUCE products without ilok protection have a history of getting cracked within a couple of hours after release.

      Depends on the company size and (a bit of) luck, but that's definitely not my experience. As long as your software needs to be reverse engineered using a reverse debugger, chances are huge that you fly under the radar of the people with the ability to do so.

      C 1 Reply Last reply Reply Quote 1
      • C
        clumsybear @Christoph Hart
        last edited by

        @Christoph-Hart well concerning luck, I guess it has to do with demand, I guess if nobody cares about the software there is no point in cracking it, right?

        are you referring to auddict products concerning your experience with this stuff? what copy protection scheme do Hexeract and PercX use?

        Is there any audio software that does not need to use a reverse debugger to be cracked, of course if they are protected that is?

        1 Reply Last reply Reply Quote 0
        • Christoph HartC
          Christoph Hart
          last edited by

          Both products use the native (C++) copy protection of HISE which offers more or less the same security as a properly implemented copy protection system with HiseScript and server calls.

          1 Reply Last reply Reply Quote 0
          • d.healeyD
            d.healey
            last edited by

            Is there a way to call a REST API function from within PHP without making an internal REST request? For example in my custom end point I want to call the license manager plugin's get_current_user_licenses function.

            Libre Wave - Freedom respecting instruments and effects
            My Patreon - HISE tutorials
            YouTube Channel - Public HISE tutorials

            1 Reply Last reply Reply Quote 0
            • Dan KorneffD
              Dan Korneff
              last edited by

              I'm just getting my feet wet with Server calls to Woocommerce. Using JWT for secure authentication.
              Apparently, WC API blocks requests from anyone who isn't an Admin to help secure webstore sensitive data. This is slightly annoying because a customer should be able to have access to their own account (products and downloads) once they are authenticated.
              I found a function posted on JWT github that filters users and gives them read-only access to their own data, but I'm unsure where to implement the code.
              https://github.com/conversionxl/customer-service-dashboard/issues/3

              /**
               * Add custom permissions to the WooCommerce REST API.
               */
              function filter_woocommerce_rest_check_permissions($permission, $context, $object_id, $post_type)
              {
                  $user = wp_get_current_user();
                  $roles = (array) $user->roles;
              
                  // Allow the customer service role.
                  if (in_array("customer_service", $roles)) {
                      // Only allow read.
                      if ($context === "read") {
                          return true;
                      }
                  }
              
                  return $permission;
              };
              
              add_filter('woocommerce_rest_check_permissions', 'filter_woocommerce_rest_check_permissions', 10, 4);
              

              Any wordpress / woo gurus around with some insight?

              Dan Korneff - Producer / Mixer / Audio Nerd

              Matt_SFM orangeO 2 Replies Last reply Reply Quote 0
              • Matt_SFM
                Matt_SF @Dan Korneff
                last edited by

                @dustbro not a guru, but I think this goes into your theme's function.php 🙂

                Develop branch
                Win10 & VS17 / Ventura & Xcode 14. 3

                1 Reply Last reply Reply Quote 1
                • orangeO
                  orange @Dan Korneff
                  last edited by

                  @dustbro I think you can use this code with a Code Snippet Wordpress plugin. So even if you update your wordpress theme, this function will be executed.

                  But if you use Woocommerce License Manager plugin, you won't need these Woocommerce REST API calls. Why do you need to use it?

                  develop Branch / XCode 13.1
                  macOS Monterey / M1 Max

                  Dan KorneffD 1 Reply Last reply Reply Quote 0
                  • Dan KorneffD
                    Dan Korneff @orange
                    last edited by

                    @orange I'm making a downloader and the Woocommerce License Manager plugin doesn't contain customer_id or download_url.
                    Those are only accessible via /wp-json/wc/v3/customers/

                    Dan Korneff - Producer / Mixer / Audio Nerd

                    d.healeyD orangeO 2 Replies Last reply Reply Quote 0
                    • d.healeyD
                      d.healey @Dan Korneff
                      last edited by

                      @dustbro I avoided the REST API entirely and created a custom wordpress plugin, this gives complete flexibility to pull from Wordpress, WooCommerce, and the license manager plugin I'm using (different one to Orange). The one you guys are using is great if you can access everything through REST but if you need more control you have to look elsewhere because it lacks an internal API.

                      Libre Wave - Freedom respecting instruments and effects
                      My Patreon - HISE tutorials
                      YouTube Channel - Public HISE tutorials

                      Dan KorneffD ustkU 3 Replies Last reply Reply Quote 0
                      • Dan KorneffD
                        Dan Korneff @d.healey
                        last edited by

                        @d-healey said in Get data from Woocommerce via server api:

                        created a custom wordpress plugin

                        That's my next step if this simple filter function doesn't work.

                        Dan Korneff - Producer / Mixer / Audio Nerd

                        d.healeyD 1 Reply Last reply Reply Quote 0
                        • d.healeyD
                          d.healey @Dan Korneff
                          last edited by

                          @dustbro It's really quite easy. The wordpress docs and YouTube will get you up and running pretty quickly. PHP is a little different from JS but if you know a function in JS that you want to use you can search for an equivalent PHP function and there usually is one.

                          Libre Wave - Freedom respecting instruments and effects
                          My Patreon - HISE tutorials
                          YouTube Channel - Public HISE tutorials

                          1 Reply Last reply Reply Quote 0
                          • ustkU
                            ustk @d.healey
                            last edited by ustk

                            @d-healey said in Get data from Woocommerce via server api:

                            @dustbro I avoided the REST API entirely and created a custom wordpress plugin, this gives complete flexibility to pull from Wordpress, WooCommerce, and the license manager plugin I'm using (different one to Orange). The one you guys are using is great if you can access everything through REST but if you need more control you have to look elsewhere because it lacks an internal API.

                            I'm on the edge of making a plugin too. My goal would be to create the license file onto the server and download it instead of making it in locally. For this, I'll need to access the user details and licenses that are in the license manager. So I imagine this is where having an internal API is necessary?
                            I don't know yet if it's viable but I'm trying to gather the information first...

                            Can't help pressing F5 in the forum...

                            d.healeyD 1 Reply Last reply Reply Quote 0
                            • d.healeyD
                              d.healey @ustk
                              last edited by

                              @ustk said in Get data from Woocommerce via server api:

                              download it instead of making it in locally

                              Why? That just seems like it will put more strain on your server.

                              Libre Wave - Freedom respecting instruments and effects
                              My Patreon - HISE tutorials
                              YouTube Channel - Public HISE tutorials

                              ustkU 1 Reply Last reply Reply Quote 0
                              • ustkU
                                ustk @d.healey
                                last edited by

                                @d-healey Yeah I see that issue, but I'm trying to figure out a better protection system. I know creating the license not on the computer is a part of the solution because this is what some are doing. Although I'm aware I might not be skilled enough to get it to work as efficiently :) Just exploring for now...

                                Can't help pressing F5 in the forum...

                                d.healeyD 1 Reply Last reply Reply Quote 0
                                • d.healeyD
                                  d.healey @ustk
                                  last edited by

                                  @ustk said in Get data from Woocommerce via server api:

                                  this is what some are doing

                                  Everyone gets cracked, don't follow the herd, try something different.

                                  As far as doing things on the server vs doing things locally it probably doesn't make any difference. At some point your app is going to have an if statement that checks if the license is valid. This is the weak link that cannot be avoided.

                                  Libre Wave - Freedom respecting instruments and effects
                                  My Patreon - HISE tutorials
                                  YouTube Channel - Public HISE tutorials

                                  ustkU Christoph HartC 2 Replies Last reply Reply Quote 0
                                  • ustkU
                                    ustk @d.healey
                                    last edited by ustk

                                    @d-healey Yeah I know that but some people are not cracked and this is where they advise beginning... because at least you "only" have to obfuscate the license reading process, not the creation process. But obfuscation is very tricky and hard. This is a long road, but the if statement can be hard to find if done properly... I've just learnt it can, not how though...

                                    Can't help pressing F5 in the forum...

                                    1 Reply Last reply Reply Quote 0
                                    • Christoph HartC
                                      Christoph Hart @d.healey
                                      last edited by

                                      My goal would be to create the license file onto the server and download it instead of making it in locally.

                                      Use this PHP snippet a random guy posted on the JUCE forum:

                                      https://forum.juce.com/t/create-tracktion-marketplace-key-file-via-php/13816/6

                                      Then use the new ScriptUnlocker class in the plugin. This gives you the most robust copy protection system before going iLok (lol) with system identification and randomly distributed copy protection checks across the entire codebase - we've been using this system with PercX and Hexeract and it works great (except for that major Windows updates will mess up the machine ID so you will need to address that issue in some way that matches your security guidelines).

                                      I know creating the license not on the computer is a part of the solution

                                      Yes that is true. If you create the license on the server, you can use a private key for the creation that is not part of the plugin so unless a cracker replaces the embedded public key in your plugin with a rogue one and duplicates the server logic to create fake licenses you're safe (and that's a rather complicated procedure).

                                      ustkU d.healeyD 2 Replies Last reply Reply Quote 3
                                      • orangeO
                                        orange @Dan Korneff
                                        last edited by orange

                                        @dustbro said in Get data from Woocommerce via server api:

                                        @orange I'm making a downloader and the Woocommerce License Manager plugin doesn't contain customer_id or download_url.
                                        Those are only accessible via /wp-json/wc/v3/customers/

                                        Will it download only? Or installer at the same time? I think only downloading the installer files might be confusing for the user because when the download is done, he might think the installation is done. So that means more support tickets :)

                                        @d-healey said in Get data from Woocommerce via server api:

                                        @dustbro I avoided the REST API entirely and created a custom wordpress plugin, this gives complete flexibility to pull from Wordpress, WooCommerce, and the license manager plugin I'm using (different one to Orange). The one you guys are using is great if you can access everything through REST but if you need more control you have to look elsewhere because it lacks an internal API.

                                        I agree with David for not using the native Woocommerce REST API because of the security issues. But for building a custom WordPress plugin, I think it is not necessary.

                                        Just thinking, what if we make a .JSON file that has all of the download links, product images, product versions...etc. And GET it? Will it be a security hole? So in this way, you won't need Woocommerce REST API calls, and also customer_id too.

                                        develop Branch / XCode 13.1
                                        macOS Monterey / M1 Max

                                        Dan KorneffD 1 Reply Last reply Reply Quote 2
                                        • ustkU
                                          ustk @Christoph Hart
                                          last edited by

                                          @christoph-hart Oh great! I remember you mentioned the ScriptUnlocker already, I have to dig this...
                                          Yeah, public/private key is, well, the key to success :)

                                          Can't help pressing F5 in the forum...

                                          1 Reply Last reply Reply Quote 1
                                          • Dan KorneffD
                                            Dan Korneff @orange
                                            last edited by

                                            @orange said in Get data from Woocommerce via server api:

                                            what if we make a .JSON file

                                            I'm trying to avoid manual file creation cause I'm lazy :beaming_face_with_smiling_eyes:
                                            I have a prototype that works with my Admin account that populates a panel with available downloads for each product.

                                            Dan Korneff - Producer / Mixer / Audio Nerd

                                            1 Reply Last reply Reply Quote 1
                                            • First post
                                              Last post

                                            16

                                            Online

                                            1.7k

                                            Users

                                            11.8k

                                            Topics

                                            102.4k

                                            Posts