-
Notifications
You must be signed in to change notification settings - Fork 1
feat(integrations): add BookingPress action integration #158
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
RishadAlam
wants to merge
3
commits into
main
Choose a base branch
from
feat/bookingpress
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,37 @@ | ||
| <?php | ||
|
|
||
| namespace BitApps\Integrations\Actions\BookingPress; | ||
|
|
||
| use WP_Error; | ||
|
|
||
| class BookingPressController | ||
| { | ||
| public static function isExists() | ||
| { | ||
| if (!class_exists('BookingPress')) { | ||
| wp_send_json_error( | ||
| __('BookingPress is not activated or not installed', 'bit-integrations'), | ||
| 400 | ||
| ); | ||
| } | ||
| } | ||
|
|
||
| public static function bookingPressAuthorize() | ||
| { | ||
| self::isExists(); | ||
| wp_send_json_success(true); | ||
| } | ||
|
|
||
| public function execute($integrationData, $fieldValues) | ||
| { | ||
| $integrationDetails = $integrationData->flow_details; | ||
| $integId = $integrationData->id; | ||
| $fieldMap = $integrationDetails->field_map; | ||
|
|
||
| if (empty($fieldMap)) { | ||
| return new WP_Error('field_map_empty', __('Field map is empty', 'bit-integrations')); | ||
| } | ||
|
|
||
| return (new RecordApiHelper($integrationDetails, $integId))->execute($fieldValues, $fieldMap); | ||
| } | ||
| } |
This file contains hidden or 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,118 @@ | ||
| <?php | ||
|
|
||
| namespace BitApps\Integrations\Actions\BookingPress; | ||
|
|
||
| use BitApps\Integrations\Config; | ||
| use BitApps\Integrations\Core\Util\Common; | ||
| use BitApps\Integrations\Core\Util\Hooks; | ||
| use BitApps\Integrations\Log\LogHandler; | ||
|
|
||
| class RecordApiHelper | ||
| { | ||
| private $_integrationID; | ||
|
|
||
| private $_integrationDetails; | ||
|
|
||
| public function __construct($integrationDetails, $integId) | ||
| { | ||
| $this->_integrationDetails = $integrationDetails; | ||
| $this->_integrationID = $integId; | ||
| } | ||
|
|
||
| public function execute($fieldValues, $fieldMap) | ||
| { | ||
| if (!class_exists('BookingPress')) { | ||
| return [ | ||
| 'success' => false, | ||
| 'message' => __('BookingPress is not installed or activated', 'bit-integrations'), | ||
| ]; | ||
| } | ||
|
|
||
| $fieldData = $this->generateReqDataFromFieldMap($fieldMap, $fieldValues); | ||
| $mainAction = $this->_integrationDetails->mainAction ?? 'cancel_appointment'; | ||
|
|
||
| $defaultResponse = [ | ||
| 'success' => false, | ||
| // translators: %s: Plugin name | ||
| 'message' => wp_sprintf(__('%s plugin is not installed or activated', 'bit-integrations'), 'Bit Integrations Pro'), | ||
| ]; | ||
|
|
||
| switch ($mainAction) { | ||
| case 'cancel_appointment': | ||
| $response = Hooks::apply(Config::withPrefix('bookingpress_cancel_appointment'), $defaultResponse, $fieldData); | ||
| $type = 'appointment'; | ||
| $actionType = 'cancel_appointment'; | ||
|
|
||
| break; | ||
|
|
||
| case 'update_appointment_status': | ||
| $response = Hooks::apply(Config::withPrefix('bookingpress_update_appointment_status'), $defaultResponse, $fieldData); | ||
| $type = 'appointment'; | ||
| $actionType = 'update_appointment_status'; | ||
|
|
||
| break; | ||
|
|
||
| case 'create_customer': | ||
| $response = Hooks::apply(Config::withPrefix('bookingpress_create_customer'), $defaultResponse, $fieldData); | ||
| $type = 'customer'; | ||
| $actionType = 'create_customer'; | ||
|
|
||
| break; | ||
|
|
||
| case 'update_customer': | ||
| $response = Hooks::apply(Config::withPrefix('bookingpress_update_customer'), $defaultResponse, $fieldData); | ||
| $type = 'customer'; | ||
| $actionType = 'update_customer'; | ||
|
|
||
| break; | ||
|
|
||
| case 'delete_appointment': | ||
| $response = Hooks::apply(Config::withPrefix('bookingpress_delete_appointment'), $defaultResponse, $fieldData); | ||
| $type = 'appointment'; | ||
| $actionType = 'delete_appointment'; | ||
|
|
||
| break; | ||
|
|
||
| case 'delete_customer': | ||
| $response = Hooks::apply(Config::withPrefix('bookingpress_delete_customer'), $defaultResponse, $fieldData); | ||
| $type = 'customer'; | ||
| $actionType = 'delete_customer'; | ||
|
|
||
| break; | ||
|
|
||
| default: | ||
| $response = [ | ||
| 'success' => false, | ||
| 'message' => __('Invalid action', 'bit-integrations'), | ||
| ]; | ||
| $type = 'BookingPress'; | ||
| $actionType = 'unknown'; | ||
|
|
||
| break; | ||
| } | ||
|
|
||
| $responseType = isset($response['success']) && $response['success'] ? 'success' : 'error'; | ||
| LogHandler::save($this->_integrationID, ['type' => $type, 'type_name' => $actionType], $responseType, $response); | ||
|
|
||
| return $response; | ||
| } | ||
|
|
||
| private function generateReqDataFromFieldMap($fieldMap, $fieldValues) | ||
|
RishadAlam marked this conversation as resolved.
|
||
| { | ||
| $dataFinal = []; | ||
| foreach ($fieldMap as $item) { | ||
| if (empty($item->formField) || empty($item->bookingPressField)) { | ||
| continue; | ||
| } | ||
|
|
||
| $triggerValue = $item->formField; | ||
| $actionValue = $item->bookingPressField; | ||
|
|
||
| $dataFinal[$actionValue] = $triggerValue === 'custom' && isset($item->customValue) | ||
| ? Common::replaceFieldWithValue($item->customValue, $fieldValues) | ||
| : $fieldValues[$triggerValue] ?? ''; | ||
| } | ||
|
|
||
| return $dataFinal; | ||
| } | ||
| } | ||
This file contains hidden or 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,10 @@ | ||
| <?php | ||
|
|
||
| if (!defined('ABSPATH')) { | ||
| exit; | ||
| } | ||
|
|
||
| use BitApps\Integrations\Actions\BookingPress\BookingPressController; | ||
| use BitApps\Integrations\Core\Util\Route; | ||
|
|
||
| Route::post('bookingpress_authorize', [BookingPressController::class, 'bookingPressAuthorize']); |
This file contains hidden or 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 hidden or 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 hidden or 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
102 changes: 102 additions & 0 deletions
102
frontend/src/components/AllIntegrations/BookingPress/BookingPress.jsx
This file contains hidden or 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,102 @@ | ||
| import { useState } from 'react' | ||
| import 'react-multiple-select-dropdown-lite/dist/index.css' | ||
| import { useNavigate, useParams } from 'react-router' | ||
| import BackIcn from '../../../Icons/BackIcn' | ||
| import { __ } from '../../../Utils/i18nwrap' | ||
| import SnackMsg from '../../Utilities/SnackMsg' | ||
| import { saveIntegConfig } from '../IntegrationHelpers/IntegrationHelpers' | ||
| import IntegrationStepThree from '../IntegrationHelpers/IntegrationStepThree' | ||
| import BookingPressAuthorization from './BookingPressAuthorization' | ||
| import { checkMappedFields } from './BookingPressCommonFunc' | ||
| import BookingPressIntegLayout from './BookingPressIntegLayout' | ||
|
|
||
| export default function BookingPress({ formFields, setFlow, flow, allIntegURL }) { | ||
| const navigate = useNavigate() | ||
| const [isLoading, setIsLoading] = useState(false) | ||
|
RishadAlam marked this conversation as resolved.
|
||
| const [step, setStep] = useState(1) | ||
| const [snack, setSnackbar] = useState({ show: false }) | ||
| const [bookingPressConf, setBookingPressConf] = useState({ | ||
| name: 'BookingPress', | ||
| type: 'BookingPress', | ||
| field_map: [{ formField: '', bookingPressField: '' }], | ||
| mainAction: '', | ||
| }) | ||
|
|
||
| const nextPage = val => { | ||
| setTimeout(() => { | ||
| document.getElementById('btcd-settings-wrp').scrollTop = 0 | ||
| }, 300) | ||
|
|
||
| if (val === 3) { | ||
| if (!checkMappedFields(bookingPressConf)) { | ||
| setSnackbar({ | ||
| show: true, | ||
| msg: __('Please map all required fields to continue.', 'bit-integrations'), | ||
| }) | ||
| return | ||
| } | ||
|
|
||
| if (bookingPressConf.name !== '' && bookingPressConf.field_map.length > 0) { | ||
| setStep(val) | ||
| } | ||
| } else { | ||
| setStep(val) | ||
| } | ||
| } | ||
|
|
||
| return ( | ||
| <div> | ||
| <SnackMsg snack={snack} setSnackbar={setSnackbar} /> | ||
| <div className="txt-center mt-2" /> | ||
|
|
||
| {/* STEP 1 */} | ||
| <BookingPressAuthorization | ||
|
RishadAlam marked this conversation as resolved.
|
||
| bookingPressConf={bookingPressConf} | ||
| setBookingPressConf={setBookingPressConf} | ||
| step={step} | ||
| nextPage={nextPage} | ||
| isLoading={isLoading} | ||
| setIsLoading={setIsLoading} | ||
|
RishadAlam marked this conversation as resolved.
|
||
| setSnackbar={setSnackbar} | ||
| /> | ||
|
|
||
| {/* STEP 2 */} | ||
| <div | ||
| className="btcd-stp-page" | ||
| style={{ | ||
| width: step === 2 && 900, | ||
| height: step === 2 && 'auto', | ||
| minHeight: step === 2 && '500px', | ||
| }}> | ||
| <BookingPressIntegLayout | ||
| formFields={formFields} | ||
| bookingPressConf={bookingPressConf} | ||
| setBookingPressConf={setBookingPressConf} | ||
| setSnackbar={setSnackbar} | ||
| setIsLoading={setIsLoading} | ||
| isLoading={isLoading} | ||
| /> | ||
| <br /> | ||
| <br /> | ||
| <br /> | ||
| <button | ||
| onClick={() => nextPage(3)} | ||
| disabled={bookingPressConf.field_map.length < 1} | ||
| className="btn f-right btcd-btn-lg purple sh-sm flx" | ||
| type="button"> | ||
| {__('Next', 'bit-integrations')} | ||
| <BackIcn className="ml-1 rev-icn" /> | ||
| </button> | ||
| </div> | ||
|
|
||
| {/* STEP 3 */} | ||
| <IntegrationStepThree | ||
| step={step} | ||
| saveConfig={() => | ||
| saveIntegConfig(flow, setFlow, allIntegURL, bookingPressConf, navigate, '', '', setIsLoading) | ||
| } | ||
| isLoading={isLoading} | ||
| /> | ||
| </div> | ||
| ) | ||
| } | ||
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.