Blocks
2 months ago
Concerns
6 months ago
Traits
2 weeks ago
Wordpress
1 year ago
AbandonedCheckout.php
1 year ago
AbandonedCheckoutProtocol.php
3 years ago
Account.php
10 months ago
AccountPortalSession.php
3 years ago
Activation.php
1 year ago
Affiliation.php
1 year ago
AffiliationProduct.php
1 year ago
AffiliationProtocol.php
2 years ago
AffiliationRequest.php
1 year ago
ApiToken.php
6 months ago
AutoFee.php
5 months ago
AutoFeeProtocol.php
5 months ago
BalanceTransaction.php
1 year ago
Batch.php
2 days ago
Brand.php
4 months ago
BulkAction.php
2 years ago
Bump.php
1 year ago
BuyLink.php
2 years ago
CancellationAct.php
1 year ago
CancellationReason.php
3 years ago
Charge.php
9 months ago
Checkout.php
2 months ago
Click.php
1 year ago
Collection.php
3 months ago
CommissionStructure.php
2 years ago
Component.php
4 months ago
Coupon.php
2 months ago
Customer.php
2 weeks ago
CustomerLink.php
3 years ago
CustomerNotificationProtocol.php
3 years ago
CustomerPortalProtocol.php
1 year ago
DatabaseModel.php
2 months ago
Discount.php
1 year ago
DisplayCurrency.php
1 year ago
Dispute.php
9 months ago
Download.php
3 years ago
Event.php
3 years ago
Export.php
2 years ago
ExternalApiModel.php
3 months ago
Fee.php
1 year ago
Form.php
3 years ago
Fulfillment.php
1 year ago
FulfillmentItem.php
1 year ago
GalleryItem.php
9 months ago
GalleryItemAttachment.php
5 months ago
GalleryItemImageAttachment.php
3 months ago
GalleryItemMedia.php
1 year ago
GalleryItemProductMedia.php
1 month ago
GalleryItemVideoAttachment.php
3 months ago
Import.php
6 months ago
ImportRow.php
2 months ago
IncomingWebhook.php
1 year ago
Integration.php
2 years ago
IntegrationCatalog.php
2 days ago
Invoice.php
1 year ago
License.php
1 year ago
LineItem.php
9 months ago
ManualPaymentMethod.php
1 year ago
Media.php
1 month ago
Model.php
2 days ago
ModelInterface.php
3 years ago
Order.php
2 weeks ago
OrderProtocol.php
3 years ago
ParcelTemplate.php
3 months ago
PaymentFailure.php
1 year ago
PaymentInstrument.php
2 months ago
PaymentIntent.php
1 year ago
PaymentMethod.php
1 year ago
Payout.php
1 year ago
PayoutGroup.php
2 years ago
Period.php
1 year ago
PlatformFee.php
1 year ago
PortalSession.php
3 years ago
Price.php
6 months ago
Processor.php
1 year ago
Product.php
2 days ago
ProductCollection.php
1 year ago
ProductCollectionImport.php
6 months ago
ProductGroup.php
1 year ago
ProductImport.php
6 months ago
ProductMedia.php
4 months ago
Promotion.php
1 year ago
ProvisionalAccount.php
2 months ago
Purchase.php
2 years ago
Referral.php
1 year ago
ReferralItem.php
2 years ago
Refund.php
1 year ago
RefundItem.php
1 year ago
RegisteredWebhook.php
2 months ago
ReturnItem.php
2 years ago
ReturnReason.php
2 years ago
ReturnRequest.php
1 year ago
Review.php
4 months ago
ReviewProtocol.php
4 months ago
RuleSchema.php
5 months ago
ServiceFee.php
1 year ago
ShippingChoice.php
1 year ago
ShippingMethod.php
3 years ago
ShippingProfile.php
3 years ago
ShippingProtocol.php
3 years ago
ShippingRate.php
3 years ago
ShippingZone.php
3 years ago
Statistic.php
3 years ago
Subscription.php
2 weeks ago
SubscriptionProtocol.php
3 years ago
Swap.php
1 year ago
TaxOverride.php
2 years ago
TaxProtocol.php
3 years ago
TaxRegistration.php
1 year ago
TaxZone.php
3 years ago
Upload.php
3 years ago
Upsell.php
1 year ago
UpsellFunnel.php
1 year ago
User.php
1 month ago
Variant.php
2 days ago
VariantOption.php
2 years ago
VariantOptionValue.php
1 year ago
VariantValue.php
2 years ago
VerificationCode.php
3 years ago
Webhook.php
1 year ago
WebhookRegistration.php
2 years ago
IntegrationCatalog.php
227 lines
| 1 | <?php |
| 2 | |
| 3 | namespace SureCart\Models; |
| 4 | |
| 5 | /** |
| 6 | * The integration listing model. |
| 7 | */ |
| 8 | class IntegrationCatalog extends ExternalApiModel { |
| 9 | /** |
| 10 | * Rest API endpoint |
| 11 | * |
| 12 | * @var string |
| 13 | */ |
| 14 | protected $endpoint = 'v1'; |
| 15 | |
| 16 | /** |
| 17 | * Default query parameters |
| 18 | * |
| 19 | * @var array |
| 20 | */ |
| 21 | protected $default_query = [ |
| 22 | '_embed' => true, |
| 23 | '_fields' => 'id,slug,title,content,_links.wp:featuredmedia,_embedded.wp:featuredmedia,_links.wp:term,_embedded.wp:term,acf', |
| 24 | 'acf_format' => 'standard', |
| 25 | 'per_page' => 100, |
| 26 | ]; |
| 27 | |
| 28 | /** |
| 29 | * Base URL |
| 30 | * |
| 31 | * @var string |
| 32 | */ |
| 33 | protected $base_url = 'https://integrations-catalog.surecart.com/'; |
| 34 | |
| 35 | /** |
| 36 | * Get the install source attribute. |
| 37 | * |
| 38 | * Records that carry a GitHub download URL install from GitHub; everything |
| 39 | * else installs through the WordPress.org plugin directory. |
| 40 | * |
| 41 | * @return string |
| 42 | */ |
| 43 | public function getSourceAttribute() { |
| 44 | return ! empty( $this->acf['download_url'] ) ? 'github' : 'wordpress'; |
| 45 | } |
| 46 | |
| 47 | /** |
| 48 | * Get the GitHub download URL attribute. |
| 49 | * |
| 50 | * Optional ACF field — null when the integration does not install from GitHub. |
| 51 | * |
| 52 | * @return string|null |
| 53 | */ |
| 54 | public function getDownloadUrlAttribute() { |
| 55 | return $this->acf['download_url'] ?? null; |
| 56 | } |
| 57 | |
| 58 | /** |
| 59 | * Get the GitHub repository URL attribute. |
| 60 | * |
| 61 | * Optional ACF field used by the frontend error fallback link — null when absent. |
| 62 | * |
| 63 | * @return string|null |
| 64 | */ |
| 65 | public function getGithubRepoUrlAttribute() { |
| 66 | return $this->acf['github_repo_url'] ?? null; |
| 67 | } |
| 68 | |
| 69 | /** |
| 70 | * Get the activation type attribute. |
| 71 | * |
| 72 | * @return string |
| 73 | */ |
| 74 | public function getActivationTypeAttribute() { |
| 75 | if ( $this->acf['is_pre_installed'] ) { |
| 76 | return 'pre-installed'; |
| 77 | } |
| 78 | if ( $this->acf['plugin_slug'] && $this->acf['plugin_file'] ) { |
| 79 | return 'plugin'; |
| 80 | } |
| 81 | if ( $this->acf['theme_slug'] && ! $this->acf['activation_link'] ) { |
| 82 | return 'theme'; |
| 83 | } |
| 84 | if ( $this->acf['activation_link'] ) { |
| 85 | return 'external'; |
| 86 | } |
| 87 | return null; |
| 88 | } |
| 89 | |
| 90 | /** |
| 91 | * Get the button text attribute. |
| 92 | * |
| 93 | * @return string |
| 94 | */ |
| 95 | public function getButtonTextAttribute() { |
| 96 | if ( 'pre-installed' === $this->status ) { |
| 97 | return __( 'Pre-installed', 'surecart' ); |
| 98 | } |
| 99 | if ( 'active' === $this->status ) { |
| 100 | return __( 'Enabled', 'surecart' ); |
| 101 | } |
| 102 | if ( in_array( $this->activation_type, [ 'plugin', 'theme' ], true ) ) { |
| 103 | if ( 'inactive' === $this->status ) { |
| 104 | return __( 'Activate', 'surecart' ); |
| 105 | } |
| 106 | return __( 'Install & Activate', 'surecart' ); |
| 107 | } |
| 108 | return __( 'Activate', 'surecart' ); |
| 109 | } |
| 110 | |
| 111 | /** |
| 112 | * Get the status attribute. |
| 113 | * |
| 114 | * @return string |
| 115 | */ |
| 116 | public function getStatusAttribute() { |
| 117 | if ( $this->acf['is_pre_installed'] ) { |
| 118 | return 'pre-installed'; |
| 119 | } |
| 120 | if ( $this->is_enabled ) { |
| 121 | return 'active'; |
| 122 | } |
| 123 | if ( 'plugin' === $this->activation_type ) { |
| 124 | if ( $this->is_plugin_installed && ! $this->is_plugin_active ) { |
| 125 | return 'inactive'; |
| 126 | } |
| 127 | if ( ! $this->is_plugin_installed ) { |
| 128 | return 'not-installed'; |
| 129 | } |
| 130 | } |
| 131 | return 'inactive'; |
| 132 | } |
| 133 | |
| 134 | /** |
| 135 | * Get the is plugin installed attribute. |
| 136 | * |
| 137 | * @return bool |
| 138 | */ |
| 139 | public function getIsPluginInstalledAttribute() { |
| 140 | if ( empty( $this->acf['plugin_file'] ) ) { |
| 141 | return false; |
| 142 | } |
| 143 | |
| 144 | $plugin_path = WP_PLUGIN_DIR . '/' . $this->acf['plugin_file']; |
| 145 | return file_exists( $plugin_path ); |
| 146 | } |
| 147 | |
| 148 | /** |
| 149 | * Get the is plugin active attribute. |
| 150 | * |
| 151 | * @return bool |
| 152 | */ |
| 153 | public function getIsPluginActiveAttribute() { |
| 154 | if ( 'pie-calendar' === $this->slug ) { // Since Pie Calendar Free & Pro plugin had same plugin file name we need to check if the pro plugin is active explicitly. |
| 155 | return $this->isPieCalendarProPluginActive(); |
| 156 | } |
| 157 | |
| 158 | if ( empty( $this->acf['plugin_file'] ) ) { |
| 159 | return false; |
| 160 | } |
| 161 | |
| 162 | return is_plugin_active( $this->acf['plugin_file'] ); |
| 163 | } |
| 164 | |
| 165 | /** |
| 166 | * Get the is plugin active attribute. |
| 167 | * |
| 168 | * @return bool |
| 169 | */ |
| 170 | public function getIsThemeActiveAttribute() { |
| 171 | if ( empty( $this->acf['theme_slug'] ) ) { |
| 172 | return false; |
| 173 | } |
| 174 | |
| 175 | return wp_get_theme()->get_template() === $this->acf['theme_slug']; |
| 176 | } |
| 177 | |
| 178 | /** |
| 179 | * Get the is enabled attribute. |
| 180 | * |
| 181 | * @return bool |
| 182 | */ |
| 183 | public function getIsEnabledAttribute() { |
| 184 | if ( $this->getIsThemeActiveAttribute() ) { |
| 185 | return true; |
| 186 | } |
| 187 | if ( $this->getIsPluginActiveAttribute() ) { |
| 188 | return true; |
| 189 | } |
| 190 | |
| 191 | return false; |
| 192 | } |
| 193 | |
| 194 | /** |
| 195 | * Get the logo URL. |
| 196 | * |
| 197 | * @return string |
| 198 | */ |
| 199 | public function getLogoUrlAttribute() { |
| 200 | // svg first. |
| 201 | if ( file_exists( SURECART_PLUGIN_DIR . '/images/integrations/' . $this->slug . '.svg' ) ) { |
| 202 | return untrailingslashit( \SureCart::core()->assets()->getUrl() ) . '/images/integrations/' . $this->slug . '.svg'; |
| 203 | } |
| 204 | |
| 205 | // then png. |
| 206 | if ( file_exists( SURECART_PLUGIN_DIR . '/images/integrations/' . $this->slug . '.png' ) ) { |
| 207 | return untrailingslashit( \SureCart::core()->assets()->getUrl() ) . '/images/integrations/' . $this->slug . '.png'; |
| 208 | } |
| 209 | |
| 210 | // then fallback to the featured media. |
| 211 | return $this->_embedded['wp:featuredmedia'][0]['media_details']['sizes']['medium']['source_url'] ?? $this->_embedded['wp:featuredmedia'][0]['source_url'] ?? ''; |
| 212 | } |
| 213 | |
| 214 | /** |
| 215 | * Is Pie Calendar Pro plugin active. |
| 216 | * |
| 217 | * @return bool |
| 218 | */ |
| 219 | public function isPieCalendarProPluginActive() { |
| 220 | if ( ! function_exists( 'piecal_pro_classic_metabox' ) ) { |
| 221 | return false; |
| 222 | } |
| 223 | |
| 224 | return true; |
| 225 | } |
| 226 | } |
| 227 |