Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Child

Order

Title

Link

Start

Finish

Level

1

New Shopify Plugin for Widget Installation.

PRD-618

18/06/2024

18/072024Parent

1.1

Local Dev Setup & Plugin Dashboard Onboarding.

PRD-642

18/06/2024

OngoingChild

1.2

Shopify Onboarding.

PRD-643

18/06/2024

28/072024Child

1.3

Plugin - Coding - Planning & Unassigned time tracking.

PRD-644

28/06/2024

04/072024Child

1.4

Plugin - Coding - Installation

PRD-773

04/072024

14/07/2024Child

1.5

Plugin - Coding - Uninstallation

PRD-774

04/072024

14/07/2024Child

1.6

Plugin - Coding - Configuration - CRUD

PRD-763

06/07/2024

14/07/2024Child

1.7

Plugin - Coding - Refactor & Comment & Document

PRD-764

14/07/2024

18/072024

1.8

Plugin - Coding - FrontEnd design to Polaris

PRD-795

16/07/2024

20/072024

1.9

Plugin - Coding - Add form to capture widget code to display on their site.

PRD-796

16/07/2024

20/072024

1.10

Widget Store Front Display Requirements.

PRD-855

29/07/2024

31/07/2024

1.11

Widget Store Front Display Functionality.

PRD-856

29/07/2024

31/07/2024

Process:

  1. Requirement Gathering. 

    • Local Dev Setup & Plugin Dashboard Onboarding. PRD-642

    • Shopify Onboarding. PRD-643

  2. Planning & Design. 

    • Plugin - Coding - Planning & Unassigned time tracking. PRD-642644

  3. Implementation.

    • Dev setup

      • Local Dev Setup & Plugin Dashboard Onboarding. PRD-642

    • Shopify setup

    • Plugin development

      • Plugin - Coding - Planning & Unassigned time tracking. PRD-642644

      • Plugin - Coding - Installation. PRD-773

      • Plugin - Coding - Uninstallation. PRD-774

      • Plugin - Coding - Configuration - CRUD. PRD-763

      • Plugin - Coding - Refactor & Comment & Document. PRD-764

      • Widget Store Front Display Requirements. PRD-855

      • Widget Store Front Display Functionality. PRD-856

Process Breakdown:

  1. Requirement Gathering:

    • Plugin Dashboard Repo - Local Dev Setup & Research. 

      • Develop overview of system.

      • Define system purpose.

    • Shopify Dashboard & Research.

      • Develop overview of Shopify system.

      • Define Shopify requirements.

  2. Planning & Design:
    The plugin is broken down into components, namely:

    1. Shopify Admin App Setup

    2. DB Schema

    3. App install

    4. App uninstall

    5. App Configuration

    Implementation:

    Each in their respective page.

    1. Plugin Dashboard Repo - Local Dev Setup & Research

      1. Setup environment to develop - environment specifics needed for the repo to work.

        1. RabbitMQ : Add settings.

        2. Docker-Compose and Parameters file need to have the App’s Client Id & Client Secret added.
          Both are Hex value strings.

        3. So based upon our tech stack it seems like we actually just use the PHP library / dependancy to intergrate the app with Shopify.

          1. Composerr.json → "phpclassic/php-shopify": "~1.0",
            https://github.com/phpclassic/php-shopify.git

    2. Shopify Dashboard & Research.

      1. Learn what Shopify requires and how to do development with them.
        Shopify PHP - https://github.com/Shopify/shopify-api-php
        https://shopify.dev/docs/apps/launch/app-requirements-checklist
        https://shopify.dev/docs/api/app-bridge

      2. Shopify app authentication and authorization.
        https://shopify.dev/docs/apps/build/authentication-authorization
        https://shopify.dev/docs/apps/build/authentication-authorization/set-embedded-app-authorization?extension=javascript

        1. Authentication is the process of verifying the identity of the user or the app. To keep transactions on Shopify’s platform safe and secure, all apps connecting with Shopify APIs must authenticate when making API requests.

        2. Authorization is the process of giving permissions to apps. When an app user installs a Shopify app they authorize the app, enabling the app to acquire an access token. For example, an app might be authorized to access orders and product data in a store.
          Outline of the Shopify Auth process:

          1. Create a route for starting the OAuth method such as /installAction.

          2. In this route, the Shopify\Auth\OAuth::begin method will be used.

          3. The begin method returns a URL that will be used for redirecting the user to the Shopify Authentication screen to complete the OAuth process, your app needs to validate the callback request made by Shopify after the merchant authorizes your app to access their store data.

          4. To do that, you can call the Shopify\Auth\OAuth::callbackAction method in the endpoint defined in the redirectPath argument of the begin method.

        3. In the Shopify App Dashboard Configuration Settings these must be added for installation and authentication (The callback verification):

          1. App URL

          2. Preferences URL (optional)

          3. Allowed redirection URL(s)

        4. Compliance Webhooks that Shopify requires to be registered.
          Public apps are required to have endpoints that subscribe to Shopify's privacy webhook topics. https://shopify.dev/apps/webhooks/configuration/mandatory-webhooks?locale=en
          Listed below:

          1. Customer data request endpoint

          2. Customer data erasure endpoint

          3. Shop data erasure endpoint

      3. Shopify - Ngrok.
        In the Shopify ecosystem, embedded apps run in an iframe in a production environment. In order to test the functionality of your app within that context in development, you’re going to want to tunnel what you have running locally to an accessible URL.

    3. DB Schema

      Code Block
       TABLE `netcomm_configuration` : 
        `id` int(11) NOT NULL AUTO_INCREMENT,
        `user_id` int(11) DEFAULT NULL,
        `shop_url` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
        `access_token` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
        `app_uninstall_web_hook_id` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
        `order_fulfilled_web_hook_id` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
        `widget_token` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
        `widget_language` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
        `terms_and_conditions` tinyint(1) NOT NULL DEFAULT '1',
        `instruction` tinyint(1) NOT NULL,
        `shop_id` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
        `shop_interface_password` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
        `netcomm_id` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
        `store_data` longtext COLLATE utf8_unicode_ci,
        `enabled` tinyint(1) NOT NULL DEFAULT 'false',
        `created` datetime NOT NULL,
        `updated` datetime NOT NULL,
        `member_of_netcomm` tinyint(1) NOT NULL DEFAULT 'false',
        `member_of_ekomi` tinyint(1) NOT NULL DEFAULT 'false',
        PRIMARY KEY (`id`),
        UNIQUE KEY `UNIQ_89D23822678D9590` (`shop_url`),
        UNIQUE KEY `UNIQ_89D238224D16C4DD` (`shop_id`),
        UNIQUE KEY `UNIQ_89D23822B6A2DD68` (`access_token`),
        UNIQUE KEY `UNIQ_89D23822A76ED395` (`user_id`),
        CONSTRAINT `FK_89D23822A76ED395` FOREIGN KEY (`user_id`) REFERENCES `fos_user` (`id`)
    4. Install - Process definition:

      1. Install requires registration as an app provider.

      2. Authentication process and Token exchange.

      3. The app registers within Shopify and Customer shop.

      4. Privilege establishment.

      5. Persists to DB.

    5. Uninstall

      1. Authentication process and Token exchange.

      2. The app un-registers within Shopify and Customer shop.

      3. Deletes from DB.
        Link to Uninstall process flow.

    6. Configuration CRUD

      1. Configuration settings. App requires configuring.
        Options are provided to be either an eKomi client or Netcomm or both.

        1. eKomi Client settings:

          1. ShopId

          2. Shop Interface Password

        2. Netcomm Client settings:

          1. NetcommId

      2. App configuration will be persisted in the DB.
        CRUD functionality.
        Link to Configuration process flow.

    7. Refactor / Testing Phase.

    8. Identify issues and refactor

    9. Documentation / Commenting.

    10. Document Shopify requirements for apps.

    11. Explain where app meets requirements.

    12. Comment functions and classes.

    13. Shopify Dashboard & Research

    14. DB Schema

    15. Plugin Install - Process

    16. Plugin Uninstall Process

    17. Plugin Configuration - eKomi & Netcomm

    18. Widget Token Configuration

    19. Widget Store Front Display Requirements

    20. Widget Store Front Display Functionality

Main Process Flow Diagrams:

Inc drawio
simple0
zoom1
pageId4100718596
custContentId4132798480
diagramDisplayNamePluginDashboardNetcomm.drawio
lbox1
hiResPreview0
contentVer1
revision1
baseUrlhttps://ekomi01.atlassian.net/wiki
diagramName1722871311661-PluginDashboardNetcomm.drawio
pCenter0
aspectLL70ml2rnKzf4Suguo_p 1
width3901
linksauto
isUpload1
tbstyletop
height5271