USE parts; DROP PROCEDURE IF EXISTS parts.p_dog_get_many_location; DELIMITER // CREATE PROCEDURE parts.p_dog_get_many_location ( IN a_id_user INT , IN a_get_all_location BIT , IN a_get_inactive_location BIT , IN a_ids_location TEXT , IN a_names_location TEXT , IN a_require_all_id_search_filters_met BIT , IN a_require_any_id_search_filters_met BIT , IN a_require_all_non_id_search_filters_met BIT , IN a_require_any_non_id_search_filters_met BIT , IN a_output_LOCATIONS BIT , IN a_debug BIT ) BEGIN DECLARE v_can_view BIT; DECLARE v_code_type_error_bad_data VARCHAR(100); DECLARE v_code_type_error_no_permission VARCHAR(100); DECLARE v_guid BINARY(36); DECLARE v_id_access_level_view INT; DECLARE v_id_minimum INT; DECLARE v_id_permission_dog_view INT; DECLARE v_id_type_error_bad_data INT; DECLARE v_id_type_error_no_permission INT; DECLARE v_time_start TIMESTAMP(6); DECLARE exit handler for SQLEXCEPTION BEGIN GET DIAGNOSTICS CONDITION 1 @sqlstate = RETURNED_SQLSTATE , @errno = MYSQL_ERRNO , @text = MESSAGE_TEXT ; ROLLBACK; CREATE TEMPORARY TABLE IF NOT EXISTS tmp_Msg_Error ( id_error INT NOT NULL PRIMARY KEY AUTO_INCREMENT , id_type INT NULL , code VARCHAR(100) NOT NULL , msg TEXT NOT NULL ); INSERT INTO tmp_Msg_Error ( id_type , code , msg ) SELECT MET.id_type , @errno , @text FROM parts.CORE_Msg_Error_Type MET WHERE MET.code = 'MYSQL_ERROR' ; SELECT t_ERROR.id_error , t_ERROR.id_type , t_ERROR.code , ERROR_TYPE.name , ERROR_TYPE.description , ERROR_TYPE.is_breaking_error , ERROR_TYPE.background_colour , ERROR_TYPE.text_colour , t_ERROR.msg FROM tmp_Msg_Error t_ERROR INNER JOIN parts.CORE_Msg_Error_Type ERROR_TYPE ON t_ERROR.id_type = ERROR_TYPE.id_type ; DROP TABLE IF EXISTS tmp_Msg_Error; END; SET v_time_start := CURRENT_TIMESTAMP(6); SET v_guid := UUID(); SET v_code_type_error_bad_data := 'BAD_DATA'; SET v_code_type_error_no_permission := 'NO_PERMISSION'; SET v_id_type_error_bad_data := (SELECT ERROR_TYPE.id_type FROM parts.CORE_Msg_Error_Type ERROR_TYPE WHERE ERROR_TYPE.code = v_code_type_error_bad_data LIMIT 1); SET v_id_type_error_no_permission := (SELECT ERROR_TYPE.id_type FROM parts.CORE_Msg_Error_Type ERROR_TYPE WHERE ERROR_TYPE.code = v_code_type_error_no_permission LIMIT 1); SET v_id_permission_dog_view := (SELECT PERMISSION.id_permission FROM parts.DOG_Permission PERMISSION WHERE PERMISSION.code = 'DOG_VIEW' LIMIT 1); SET v_id_access_level_view := (SELECT ACCESS_LEVEL.id_access_level FROM parts.DOG_Access_Level ACCESS_LEVEL WHERE ACCESS_LEVEL.code = 'VIEW' LIMIT 1); SET a_id_user := IFNULL(a_id_user, 0); /* SET a_get_all_location := IFNULL(a_get_all_location, 0); SET a_get_inactive_location := IFNULL(a_get_inactive_location, 0); SET a_ids_location := TRIM(IFNULL(a_ids_location, '')); SET a_names_location := TRIM(IFNULL(a_names_location, '')); SET a_hand_signal_default_descriptions_location := TRIM(IFNULL(a_hand_signal_default_descriptions_location, '')); SET a_notes_location := TRIM(IFNULL(a_notes_location, '')); SET a_require_all_id_search_filters_met := IFNULL(a_require_all_id_search_filters_met, 1); SET a_require_any_id_search_filters_met := IFNULL(a_require_any_id_search_filters_met, 1); SET a_require_all_non_id_search_filters_met := IFNULL(a_require_all_non_id_search_filters_met, 0); SET a_require_any_non_id_search_filters_met := IFNULL(a_require_any_non_id_search_filters_met, 1); */ SET a_output_LOCATIONS := IFNULL(a_output_LOCATIONS, 0); SET a_debug := IFNULL(a_debug, 0); IF a_debug = 1 THEN SELECT a_id_user , a_get_all_location , a_get_inactive_location , a_ids_location , a_names_location , a_require_all_id_search_filters_met , a_require_any_id_search_filters_met , a_require_all_non_id_search_filters_met , a_require_any_non_id_search_filters_met , a_output_LOCATIONS , a_debug ; SELECT v_id_type_error_bad_data , v_id_type_error_no_permission , v_guid , v_id_permission_dog_view , v_time_start ; END IF; DROP TEMPORARY TABLE IF EXISTS tmp_Msg_Error; DROP TEMPORARY TABLE IF EXISTS tmp_Location; CREATE TEMPORARY TABLE tmp_Location ( id_location INT NOT NULL , code VARCHAR(100) , name VARCHAR(250) , active BIT , does_meet_id_filters BIT , does_meet_non_id_filters BIT ); CREATE TEMPORARY TABLE IF NOT EXISTS tmp_Msg_Error ( id_error INT NOT NULL PRIMARY KEY AUTO_INCREMENT , id_type INT NULL , code VARCHAR(100) NOT NULL , msg TEXT NOT NULL ); -- Permissions IF a_debug = 1 THEN SELECT v_guid , 0 -- get_all_user , 0 -- get_inactive_user , a_id_user -- ids_user , '' -- a_auth0_ids_user , '' -- a_names_user , '' -- a_emails_user , 1 -- a_require_all_id_search_filters_met , 1 -- a_require_any_id_search_filters_met , 0 -- a_require_all_non_id_search_filters_met , 0 -- a_require_any_non_id_search_filters_met , v_id_permission_dog_view -- ids_permission , v_id_access_level_view -- ids_access_level , 0 -- a_show_errors , 0 -- a_debug ; END IF; CALL parts.p_dog_calc_user( v_guid , 0 -- get_all_user , 0 -- get_inactive_user , a_id_user -- ids_user , '' -- a_auth0_ids_user , '' -- a_names_user , '' -- a_emails_user , 1 -- a_require_all_id_search_filters_met , 1 -- a_require_any_id_search_filters_met , 0 -- a_require_all_non_id_search_filters_met , 0 -- a_require_any_non_id_search_filters_met , v_id_permission_dog_view -- ids_permission , v_id_access_level_view -- ids_access_level , 0 -- a_show_errors , 0 -- a_debug ); SELECT IFNULL(CALC_USER_T.has_access, 0) INTO v_can_view FROM parts.DOG_Calc_User_Temp CALC_USER_T WHERE CALC_USER_T.GUID = v_guid LIMIT 1 ; IF a_debug = 1 THEN SELECT v_can_view; SELECT COUNT(*) AS Count_Errors FROM tmp_Msg_Error t_ERROR; SELECT * FROM tmp_Msg_Error t_ERROR; END IF; IF (v_can_view = 0) THEN DELETE t_ME FROM tmp_Msg_Error t_ME WHERE t_ME.id_type <> v_id_type_error_no_permission ; INSERT INTO tmp_Msg_Error ( id_type , code , msg ) VALUES ( v_id_type_error_no_permission , v_code_type_error_no_permission , 'You do not have permission to view Locations.' ) ; END IF; CALL parts.p_dog_clear_calc_user( v_guid , 0 -- a_debug ); -- Call Location Calc IF NOT EXISTS(SELECT * FROM tmp_Msg_Error t_ERROR INNER JOIN parts.CORE_Msg_Error_Type ERROR_TYPE ON t_ERROR.id_type = ERROR_TYPE.id_type WHERE ERROR_TYPE.is_breaking_error = 1 LIMIT 1) THEN IF a_debug = 1 THEN SELECT v_guid -- a_guid , a_id_user -- a_id_user , a_get_all_location -- a_get_all_location , a_get_inactive_location -- a_get_inactive_location , a_ids_location -- a_ids_location , a_names_location -- a_names_location , a_require_all_id_search_filters_met -- a_require_all_id_search_filters_met , a_require_any_id_search_filters_met -- a_require_any_id_search_filters_met , a_require_all_non_id_search_filters_met -- a_require_all_non_id_search_filters_met , a_require_any_non_id_search_filters_met -- a_require_any_non_id_search_filters_met , 0 -- a_show_errors , 0 -- a_debug ; END IF; CALL parts.p_dog_calc_location ( v_guid -- a_guid , a_id_user -- a_id_user , a_get_all_location -- a_get_all_location , a_get_inactive_location -- a_get_inactive_location , a_ids_location -- a_ids_location , a_names_location -- a_names_location , a_require_all_id_search_filters_met -- a_require_all_id_search_filters_met , a_require_any_id_search_filters_met -- a_require_any_id_search_filters_met , a_require_all_non_id_search_filters_met -- a_require_all_non_id_search_filters_met , a_require_any_non_id_search_filters_met -- a_require_any_non_id_search_filters_met , 0 -- a_show_errors , 0 -- a_debug ); IF a_debug = 1 THEN SELECT COUNT(*) FROM parts.DOG_Location_Temp; SELECT * FROM parts.DOG_Location_Temp; END IF; INSERT INTO tmp_Location ( id_location , code , name , active , does_meet_id_filters , does_meet_non_id_filters ) SELECT LOCATION_T.id_location , LOCATION_T.code , LOCATION_T.name , LOCATION_T.active , LOCATION_T.does_meet_id_filters , LOCATION_T.does_meet_non_id_filters FROM parts.DOG_Location_Temp LOCATION_T WHERE LOCATION_T.GUID = v_guid ; IF a_debug = 1 THEN SELECT COUNT(*) FROM tmp_Location; SELECT * FROM tmp_Location; END IF; END IF; -- Filter outputs IF EXISTS(SELECT * FROM tmp_Msg_Error t_ERROR INNER JOIN parts.CORE_Msg_Error_Type ERROR_TYPE ON t_ERROR.id_type = ERROR_TYPE.id_type WHERE ERROR_TYPE.is_breaking_error = 1 LIMIT 1) THEN IF a_debug = 1 THEN SELECT * FROM tmp_Location; END IF; DELETE FROM tmp_Location; END IF; -- Outputs -- Locations IF a_output_LOCATIONS = 1 THEN SELECT t_LOCATIONS.id_location , t_LOCATIONS.code , t_LOCATIONS.name , t_LOCATIONS.active , t_LOCATIONS.does_meet_id_filters , t_LOCATIONS.does_meet_non_id_filters FROM tmp_Location t_LOCATIONS ORDER BY t_LOCATIONS.name ; END IF; -- Errors SELECT t_ERROR.id_error , t_ERROR.id_type , t_ERROR.code , ERROR_TYPE.name , ERROR_TYPE.description , ERROR_TYPE.is_breaking_error , ERROR_TYPE.background_colour , ERROR_TYPE.text_colour , t_ERROR.msg FROM tmp_Msg_Error t_ERROR INNER JOIN parts.CORE_Msg_Error_Type ERROR_TYPE ON t_ERROR.id_type = ERROR_TYPE.id_type ; IF a_debug = 1 AND v_can_view = 1 THEN SELECT * FROM tmp_Location; END IF; CALL parts.p_dog_clear_calc_location( v_guid -- a_guid , 0 -- a_debug ); DROP TEMPORARY TABLE IF EXISTS tmp_Msg_Error; DROP TEMPORARY TABLE IF EXISTS tmp_Location; IF a_debug = 1 THEN CALL parts.p_core_debug_timing_reporting ( v_time_start ); END IF; END // DELIMITER ; /* CALL parts.p_dog_get_many_location ( 1 -- 'auth0|6582b95c895d09a70ba10fef', -- a_id_user , 1 -- a_get_all_location , 0 -- a_get_inactive_location , '' -- a_ids_location , '' -- a_names_location , 1 -- a_require_all_id_search_filters_met , 1 -- a_require_any_id_search_filters_met , 0 -- a_require_all_non_id_search_filters_met , 1 -- a_require_any_non_id_search_filters_met , 1 -- a_output_LOCATIONS , 1 -- a_debug ); CALL demo.p_dog_get_many_location ( 1 -- 'auth0|6582b95c895d09a70ba10fef', -- a_id_user , 1 -- a_get_all_location , 0 -- a_get_inactive_location , '' -- a_ids_location , 'pat,point' -- a_names_location , 1 -- a_require_all_id_search_filters_met , 1 -- a_require_any_id_search_filters_met , 0 -- a_require_all_non_id_search_filters_met , 1 -- a_require_any_non_id_search_filters_met , 1 -- a_output_LOCATIONS , 1 -- a_debug ); */