-
Notifications
You must be signed in to change notification settings - Fork 698
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1597 from Shopify/klenotiw/add-gdpr-jobs-generator
Add GDPR and Uninstall Jobs to Generator
- Loading branch information
Showing
13 changed files
with
204 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 15 additions & 0 deletions
15
lib/generators/shopify_app/add_app_uninstalled_job/add_app_uninstalled_job_generator.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# frozen_string_literal: true | ||
|
||
require "rails/generators/base" | ||
|
||
module ShopifyApp | ||
module Generators | ||
class AddAppUninstalledJobGenerator < Rails::Generators::Base | ||
source_root File.expand_path("../templates", __FILE__) | ||
|
||
def create_job | ||
template("app_uninstalled_job.rb", "app/jobs/app_uninstalled_job.rb") | ||
end | ||
end | ||
end | ||
end |
22 changes: 22 additions & 0 deletions
22
lib/generators/shopify_app/add_app_uninstalled_job/templates/app_uninstalled_job.rb.tt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
class AppUninstalledJob < ActiveJob::Base | ||
extend ShopifyAPI::Webhooks::Handler | ||
|
||
class << self | ||
def handle(topic:, shop:, body:) | ||
perform_later(topic: topic, shop_domain: shop, webhook: body) | ||
end | ||
end | ||
|
||
def perform(topic:, shop_domain:, webhook:) | ||
shop = Shop.find_by(shopify_domain: shop_domain) | ||
|
||
if shop.nil? | ||
logger.error("#{self.class} failed: cannot find shop with domain '#{shop_domain}'") | ||
|
||
raise ActiveRecord::RecordNotFound, "Shop Not Found" | ||
end | ||
|
||
logger.info("#{self.class} started for shop '#{shop_domain}'") | ||
shop.destroy | ||
end | ||
end |
23 changes: 23 additions & 0 deletions
23
lib/generators/shopify_app/add_gdpr_jobs/add_gdpr_jobs_generator.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# frozen_string_literal: true | ||
|
||
require "rails/generators/base" | ||
|
||
module ShopifyApp | ||
module Generators | ||
class AddGdprJobsGenerator < Rails::Generators::Base | ||
source_root File.expand_path("../templates", __FILE__) | ||
|
||
def add_customer_data_request_job | ||
template("customers_data_request_job.rb", "app/jobs/customers_data_request_job.rb") | ||
end | ||
|
||
def add_shop_redact_job | ||
template("shop_redact_job.rb", "app/jobs/shop_redact_job.rb") | ||
end | ||
|
||
def add_customer_redact_job | ||
template("customers_redact_job.rb", "app/jobs/customers_redact_job.rb") | ||
end | ||
end | ||
end | ||
end |
22 changes: 22 additions & 0 deletions
22
lib/generators/shopify_app/add_gdpr_jobs/templates/customers_data_request_job.rb.tt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
class CustomersDataRequestJob < ActiveJob::Base | ||
extend ShopifyAPI::Webhooks::Handler | ||
|
||
class << self | ||
def handle(topic:, shop:, body:) | ||
perform_later(topic: topic, shop_domain: shop, webhook: body) | ||
end | ||
end | ||
|
||
def perform(topic:, shop_domain:, webhook:) | ||
shop = Shop.find_by(shopify_domain: shop_domain) | ||
|
||
if shop.nil? | ||
logger.error("#{self.class} failed: cannot find shop with domain '#{shop_domain}'") | ||
|
||
raise ActiveRecord::RecordNotFound, "Shop Not Found" | ||
end | ||
|
||
shop.with_shopify_session do | ||
end | ||
end | ||
end |
22 changes: 22 additions & 0 deletions
22
lib/generators/shopify_app/add_gdpr_jobs/templates/customers_redact_job.rb.tt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
class CustomersRedactJob < ActiveJob::Base | ||
extend ShopifyAPI::Webhooks::Handler | ||
|
||
class << self | ||
def handle(topic:, shop:, body:) | ||
perform_later(topic: topic, shop_domain: shop, webhook: body) | ||
end | ||
end | ||
|
||
def perform(topic:, shop_domain:, webhook:) | ||
shop = Shop.find_by(shopify_domain: shop_domain) | ||
|
||
if shop.nil? | ||
logger.error("#{self.class} failed: cannot find shop with domain '#{shop_domain}'") | ||
|
||
raise ActiveRecord::RecordNotFound, "Shop Not Found" | ||
end | ||
|
||
shop.with_shopify_session do | ||
end | ||
end | ||
end |
22 changes: 22 additions & 0 deletions
22
lib/generators/shopify_app/add_gdpr_jobs/templates/shop_redact_job.rb.tt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
class ShopRedactJob < ActiveJob::Base | ||
extend ShopifyAPI::Webhooks::Handler | ||
|
||
class << self | ||
def handle(topic:, shop:, body:) | ||
perform_later(topic: topic, shop_domain: shop, webhook: body) | ||
end | ||
end | ||
|
||
def perform(topic:, shop_domain:, webhook:) | ||
shop = Shop.find_by(shopify_domain: shop_domain) | ||
|
||
if shop.nil? | ||
logger.error("#{self.class} failed: cannot find shop with domain '#{shop_domain}'") | ||
|
||
raise ActiveRecord::RecordNotFound, "Shop Not Found" | ||
end | ||
|
||
shop.with_shopify_session do | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# frozen_string_literal: true | ||
|
||
require "test_helper" | ||
require "generators/shopify_app/add_app_uninstalled_job/add_app_uninstalled_job_generator" | ||
|
||
class AddAppUninstalledJobGeneratorTest < Rails::Generators::TestCase | ||
tests ShopifyApp::Generators::AddAppUninstalledJobGenerator | ||
destination File.expand_path("../tmp", File.dirname(__FILE__)) | ||
|
||
setup do | ||
ShopifyApp.configure do |config| | ||
config.embedded_app = true | ||
end | ||
|
||
prepare_destination | ||
provide_existing_application_file | ||
provide_existing_routes_file | ||
provide_existing_application_controller | ||
end | ||
|
||
test "creates app uninstalled job file" do | ||
run_generator | ||
|
||
assert_file "app/jobs/app_uninstalled_job.rb" | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# frozen_string_literal: true | ||
|
||
require "test_helper" | ||
require "generators/shopify_app/add_gdpr_jobs/add_gdpr_jobs_generator" | ||
|
||
class AddGdprJobsGeneratorJobTest < Rails::Generators::TestCase | ||
tests ShopifyApp::Generators::AddGdprJobsGenerator | ||
destination File.expand_path("../tmp", File.dirname(__FILE__)) | ||
|
||
setup do | ||
ShopifyApp.configure do |config| | ||
config.embedded_app = true | ||
end | ||
|
||
prepare_destination | ||
provide_existing_application_file | ||
provide_existing_routes_file | ||
provide_existing_application_controller | ||
end | ||
|
||
test "creates app uninstalled job file" do | ||
run_generator | ||
|
||
assert_file "app/jobs/customers_data_request_job.rb" | ||
assert_file "app/jobs/shop_redact_job.rb" | ||
assert_file "app/jobs/customers_redact_job.rb" | ||
end | ||
end |