Admin
2 years ago
BatchProcessing
2 years ago
DataStores
2 years ago
DependencyManagement
2 years ago
Features
2 years ago
Integrations
2 years ago
Orders
1 year ago
ProductAttributesLookup
2 years ago
ProductDownloads
4 years ago
ProductImage
2 years ago
Settings
3 years ago
Traits
2 years ago
TransientFiles
2 years ago
Utilities
2 years ago
WCCom
2 years ago
AssignDefaultCategory.php
5 years ago
DownloadPermissionsAdjuster.php
3 years ago
RegisterHooksInterface.php
2 years ago
RestApiUtil.php
4 years ago
RestockRefundedItemsAdjuster.php
4 years ago
DownloadPermissionsAdjuster.php
192 lines
| 1 | <?php |
| 2 | /** |
| 3 | * DownloadPermissionsAdjuster class file. |
| 4 | */ |
| 5 | |
| 6 | namespace Automattic\WooCommerce\Internal; |
| 7 | |
| 8 | use Automattic\WooCommerce\Proxies\LegacyProxy; |
| 9 | use WC_Product; |
| 10 | |
| 11 | defined( 'ABSPATH' ) || exit; |
| 12 | |
| 13 | /** |
| 14 | * Class to adjust download permissions on product save. |
| 15 | */ |
| 16 | class DownloadPermissionsAdjuster { |
| 17 | |
| 18 | /** |
| 19 | * The downloads data store to use. |
| 20 | * |
| 21 | * @var WC_Data_Store |
| 22 | */ |
| 23 | private $downloads_data_store; |
| 24 | |
| 25 | /** |
| 26 | * Class initialization, to be executed when the class is resolved by the container. |
| 27 | * |
| 28 | * @internal |
| 29 | */ |
| 30 | final public function init() { |
| 31 | $this->downloads_data_store = wc_get_container()->get( LegacyProxy::class )->get_instance_of( \WC_Data_Store::class, 'customer-download' ); |
| 32 | add_action( 'adjust_download_permissions', array( $this, 'adjust_download_permissions' ), 10, 1 ); |
| 33 | } |
| 34 | |
| 35 | /** |
| 36 | * Schedule a download permissions adjustment for a product if necessary. |
| 37 | * This should be executed whenever a product is saved. |
| 38 | * |
| 39 | * @param \WC_Product $product The product to schedule a download permission adjustments for. |
| 40 | */ |
| 41 | public function maybe_schedule_adjust_download_permissions( \WC_Product $product ) { |
| 42 | $children_ids = $product->get_children(); |
| 43 | if ( ! $children_ids ) { |
| 44 | return; |
| 45 | } |
| 46 | |
| 47 | $are_any_children_downloadable = false; |
| 48 | foreach ( $children_ids as $child_id ) { |
| 49 | $child = wc_get_product( $child_id ); |
| 50 | if ( $child && $child->is_downloadable() ) { |
| 51 | $are_any_children_downloadable = true; |
| 52 | break; |
| 53 | } |
| 54 | } |
| 55 | |
| 56 | if ( ! $product->is_downloadable() && ! $are_any_children_downloadable ) { |
| 57 | return; |
| 58 | } |
| 59 | |
| 60 | $scheduled_action_args = array( $product->get_id() ); |
| 61 | |
| 62 | $already_scheduled_actions = |
| 63 | WC()->call_function( |
| 64 | 'as_get_scheduled_actions', |
| 65 | array( |
| 66 | 'hook' => 'adjust_download_permissions', |
| 67 | 'args' => $scheduled_action_args, |
| 68 | 'status' => \ActionScheduler_Store::STATUS_PENDING, |
| 69 | ), |
| 70 | 'ids' |
| 71 | ); |
| 72 | |
| 73 | if ( empty( $already_scheduled_actions ) ) { |
| 74 | WC()->call_function( |
| 75 | 'as_schedule_single_action', |
| 76 | WC()->call_function( 'time' ) + 1, |
| 77 | 'adjust_download_permissions', |
| 78 | $scheduled_action_args |
| 79 | ); |
| 80 | } |
| 81 | } |
| 82 | |
| 83 | /** |
| 84 | * Create additional download permissions for variations if necessary. |
| 85 | * |
| 86 | * When a simple downloadable product is converted to a variable product, |
| 87 | * existing download permissions are still present in the database but they don't apply anymore. |
| 88 | * This method creates additional download permissions for the variations based on |
| 89 | * the old existing ones for the main product. |
| 90 | * |
| 91 | * The procedure is as follows. For each existing download permission for the parent product, |
| 92 | * check if there's any variation offering the same file for download (the file URL, not name, is checked). |
| 93 | * If that is found, check if an equivalent permission exists (equivalent means for the same file and with |
| 94 | * the same order id and customer id). If no equivalent permission exists, create it. |
| 95 | * |
| 96 | * @param int $product_id The id of the product to check permissions for. |
| 97 | */ |
| 98 | public function adjust_download_permissions( int $product_id ) { |
| 99 | $product = wc_get_product( $product_id ); |
| 100 | if ( ! $product ) { |
| 101 | return; |
| 102 | } |
| 103 | |
| 104 | $children_ids = $product->get_children(); |
| 105 | if ( ! $children_ids ) { |
| 106 | return; |
| 107 | } |
| 108 | |
| 109 | $parent_downloads = $this->get_download_files_and_permissions( $product ); |
| 110 | if ( ! $parent_downloads ) { |
| 111 | return; |
| 112 | } |
| 113 | |
| 114 | $children_with_downloads = array(); |
| 115 | foreach ( $children_ids as $child_id ) { |
| 116 | $child = wc_get_product( $child_id ); |
| 117 | |
| 118 | // Ensure we have a valid child product. |
| 119 | if ( ! $child instanceof WC_Product ) { |
| 120 | wc_get_logger()->warning( |
| 121 | sprintf( |
| 122 | /* translators: 1: child product ID 2: parent product ID. */ |
| 123 | __( 'Unable to load child product %1$d while adjusting download permissions for product %2$d.', 'woocommerce' ), |
| 124 | $child_id, |
| 125 | $product_id |
| 126 | ) |
| 127 | ); |
| 128 | continue; |
| 129 | } |
| 130 | |
| 131 | $children_with_downloads[ $child_id ] = $this->get_download_files_and_permissions( $child ); |
| 132 | } |
| 133 | |
| 134 | foreach ( $parent_downloads['permission_data_by_file_order_user'] as $parent_file_order_and_user => $parent_download_data ) { |
| 135 | foreach ( $children_with_downloads as $child_id => $child_download_data ) { |
| 136 | $file_url = $parent_download_data['file']; |
| 137 | |
| 138 | $must_create_permission = |
| 139 | // The variation offers the same file as the parent for download... |
| 140 | in_array( $file_url, array_keys( $child_download_data['download_ids_by_file_url'] ), true ) && |
| 141 | // ...but no equivalent download permission (same file URL, order id and user id) exists. |
| 142 | ! array_key_exists( $parent_file_order_and_user, $child_download_data['permission_data_by_file_order_user'] ); |
| 143 | |
| 144 | if ( $must_create_permission ) { |
| 145 | // The new child download permission is a copy of the parent's, |
| 146 | // but with the product and download ids changed to match those of the variation. |
| 147 | $new_download_data = $parent_download_data['data']; |
| 148 | $new_download_data['product_id'] = $child_id; |
| 149 | $new_download_data['download_id'] = $child_download_data['download_ids_by_file_url'][ $file_url ]; |
| 150 | $this->downloads_data_store->create_from_data( $new_download_data ); |
| 151 | } |
| 152 | } |
| 153 | } |
| 154 | } |
| 155 | |
| 156 | /** |
| 157 | * Get the existing downloadable files and download permissions for a given product. |
| 158 | * The returned value is an array with two keys: |
| 159 | * |
| 160 | * - download_ids_by_file_url: an associative array of file url => download_id. |
| 161 | * - permission_data_by_file_order_user: an associative array where key is "file_url:customer_id:order_id" and value is the full permission data set. |
| 162 | * |
| 163 | * @param \WC_Product $product The product to get the downloadable files and permissions for. |
| 164 | * @return array[] Information about the downloadable files and permissions for the product. |
| 165 | */ |
| 166 | private function get_download_files_and_permissions( \WC_Product $product ) { |
| 167 | $result = array( |
| 168 | 'permission_data_by_file_order_user' => array(), |
| 169 | 'download_ids_by_file_url' => array(), |
| 170 | ); |
| 171 | $downloads = $product->get_downloads(); |
| 172 | foreach ( $downloads as $download ) { |
| 173 | $result['download_ids_by_file_url'][ $download->get_file() ] = $download->get_id(); |
| 174 | } |
| 175 | |
| 176 | $permissions = $this->downloads_data_store->get_downloads( array( 'product_id' => $product->get_id() ) ); |
| 177 | foreach ( $permissions as $permission ) { |
| 178 | $permission_data = (array) $permission->data; |
| 179 | if ( array_key_exists( $permission_data['download_id'], $downloads ) ) { |
| 180 | $file = $downloads[ $permission_data['download_id'] ]->get_file(); |
| 181 | $data = array( |
| 182 | 'file' => $file, |
| 183 | 'data' => (array) $permission->data, |
| 184 | ); |
| 185 | $result['permission_data_by_file_order_user'][ "{$file}:{$permission_data['user_id']}:{$permission_data['order_id']}" ] = $data; |
| 186 | } |
| 187 | } |
| 188 | |
| 189 | return $result; |
| 190 | } |
| 191 | } |
| 192 |