2 /************************************************************************
3 * Mailer v0.2.1-FINAL Start: 11/04/2009 *
4 * =================== Last change: 11/04/2009 *
6 * -------------------------------------------------------------------- *
7 * File : network_functions.php *
8 * -------------------------------------------------------------------- *
9 * Short description : Functions for ext-network *
10 * -------------------------------------------------------------------- *
11 * Kurzbeschreibung : Funktionen fuer ext-network *
12 * -------------------------------------------------------------------- *
15 * $Tag:: 0.2.1-FINAL $ *
17 * Needs to be in all Files and every File needs "svn propset *
18 * svn:keywords Date Revision" (autoprobset!) at least!!!!!! *
19 * -------------------------------------------------------------------- *
20 * Copyright (c) 2003 - 2009 by Roland Haeder *
21 * Copyright (c) 2009, 2010 by Mailer Developer Team *
22 * For more information visit: http://www.mxchange.org *
24 * This program is free software; you can redistribute it and/or modify *
25 * it under the terms of the GNU General Public License as published by *
26 * the Free Software Foundation; either version 2 of the License, or *
27 * (at your option) any later version. *
29 * This program is distributed in the hope that it will be useful, *
30 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
31 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
32 * GNU General Public License for more details. *
34 * You should have received a copy of the GNU General Public License *
35 * along with this program; if not, write to the Free Software *
36 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, *
38 ************************************************************************/
40 // Some security stuff...
41 if (!defined('__SECURITY')) {
45 // Private setter for current network id
46 function setCurrentNetworkId ($id) {
47 $GLOBALS['current_network_id'] = bigintval($id);
50 // Private getter for current network id
51 function getCurrentNetworkId () {
52 return $GLOBALS['current_network_id'];
55 // Handle a (maybe) sent form here
56 function doNetworkHandleForm () {
58 if ((isFormSent()) || (isFormSent('edit')) || (isFormSent('del')) || (isFormSent('change')) || (isFormSent('remove'))) {
60 if (isGetRequestParameterSet('do')) {
61 // Process the request
62 doAdminNetworkProcessForm();
65 loadTemplate('admin_settings_unsaved', false, '{--ADMIN_NETWORK_DO_404--}');
70 // Processes an admin form
71 function doAdminNetworkProcessForm () {
73 if ((!isFormSent()) && (!isFormSent('edit')) && (!isFormSent('del')) && (!isFormSent('change')) && (!isFormSent('remove'))) {
75 loadTemplate('admin_settings_unsaved', false, '{--ADMIN_NETWORK_FORM_NOT_SENT--}');
77 } elseif (!isGetRequestParameterSet('do')) {
79 loadTemplate('admin_settings_unsaved', false, '{--ADMIN_NETWORK_DO_404--}');
83 // Create function name
84 $functionName = sprintf("doAdminNetworkProcess%sForm", ucfirst(strtolower(getRequestParameter('do'))));
86 // Is the function valid?
87 if (!function_exists($functionName)) {
88 // Invalid function name
89 debug_report_bug(__FUNCTION__, __LINE__, 'Invalid do ' . getRequestParameter('do') . ', function ' . $functionName .' does not exist.', false);
92 // Call-back the method handling our request
93 call_user_func($functionName);
96 // Checks wether the (short) network name is already used (valid)
97 function isNetworkNameValid ($name) {
99 $result = SQL_QUERY_ESC("SELECT `network_id` FROM `{?_MYSQL_PREFIX?}_network_data` WHERE `network_short_name`='%s' LIMIT 1",
100 array($name), __FUNCTION__, __LINE__);
103 $isValid = (SQL_NUMROWS($result) == 1);
106 SQL_FREERESULT($result);
112 // Checks wether the given network type is already used (valid)
113 function isNetworkTypeHandleValid ($type, $networkId) {
115 $result = SQL_QUERY_ESC("SELECT `network_type_id` FROM `{?_MYSQL_PREFIX?}_network_types` WHERE `network_id`=%s AND `network_type_handle`='%s' LIMIT 1",
116 array($networkId, $type), __FUNCTION__, __LINE__);
119 $isValid = (SQL_NUMROWS($result) == 1);
122 SQL_FREERESULT($result);
128 // Checks wether the given network request parameter is already used (valid)
129 function isNetworkRequestParameterValid ($key, $type, $networkId) {
131 $result = SQL_QUERY_ESC("SELECT `network_param_id` FROM `{?_MYSQL_PREFIX?}_network_request_params` WHERE `network_id`=%s AND `network_type_id`=%s AND `request_param_key`='%s' LIMIT 1",
132 array($networkId, $type, $key), __FUNCTION__, __LINE__);
135 $isValid = (SQL_NUMROWS($result) == 1);
138 SQL_FREERESULT($result);
144 // "Getter" for a network's data by provided id number
145 function getNetworkDataById ($id, $column = '') {
146 // Ids lower one are not accepted
148 // Not good, should be fixed
149 debug_report_bug(__FUNCTION__, __LINE__, 'Network id ' . $id . ' is smaller than 1.');
152 // Set current network id
153 setCurrentNetworkId($id);
156 if (!isset($GLOBALS['network_data'][$id])) {
157 // By default we have no data
158 $GLOBALS['network_data'][$id] = array();
160 // Query for the network data
161 $result = SQL_QUERY_ESC("SELECT
162 `network_id`, `network_short_name`, `network_title`, `network_reflink`, `network_data_seperator`, `network_row_seperator`, `network_request_type`, `network_charset`
164 `{?_MYSQL_PREFIX?}_network_data`
168 array(bigintval($id)), __FUNCTION__, __LINE__);
170 // Do we have an entry?
171 if (SQL_NUMROWS($result) == 1) {
173 $GLOBALS['network_data'][$id] = SQL_FETCHARRAY($result);
177 SQL_FREERESULT($result);
181 if (empty($column)) {
183 return $GLOBALS['network_data'][$id];
186 return $GLOBALS['network_data'][$id][$column];
190 // "Getter" for a network's data by provided type id number
191 function getNetworkDataByTypeId ($id, $column = '') {
192 // Ids lower one are not accepted
194 // Not good, should be fixed
195 debug_report_bug(__FUNCTION__, __LINE__, 'Network type id ' . $id . ' is smaller than 1.');
198 // Set current network id
199 setCurrentNetworkId($id);
202 if (!isset($GLOBALS['network_data'][$id])) {
203 // By default we have no data
204 $GLOBALS['network_data'][$id] = array();
206 // Query for the network data
207 $result = SQL_QUERY_ESC("SELECT
208 d.`network_id`, d.`network_short_name`, d.`network_title`, d.`network_reflink`, d.`network_data_seperator`, d.`network_row_seperator`, d.`network_request_type`, d.`network_charset`,
209 t.`network_type_handle`, t.`network_type_api_url`, t.`network_type_click_url`, t.`network_type_banner_url`
211 `{?_MYSQL_PREFIX?}_network_data` AS d
213 `{?_MYSQL_PREFIX?}_network_types` AS t
215 d.`network_id`=t.`network_id`
217 t.`network_type_id`=%s
219 array(bigintval($id)), __FUNCTION__, __LINE__);
221 // Do we have an entry?
222 if (SQL_NUMROWS($result) == 1) {
224 $GLOBALS['network_data'][$id] = SQL_FETCHARRAY($result);
228 SQL_FREERESULT($result);
232 if (empty($column)) {
234 return $GLOBALS['network_data'][$id];
237 return $GLOBALS['network_data'][$id][$column];
241 // "Getter" for a network type data by provided id number
242 function getNetworkTypeDataById ($id) {
243 // Ids lower one are not accepted
245 // Not good, should be fixed
246 debug_report_bug(__FUNCTION__, __LINE__, 'Network type id ' . $id . ' is smaller than 1.');
249 // By default we have no data
250 $GLOBALS['network_type_data'][$id] = array();
252 // Query for the network data
253 $result = SQL_QUERY_ESC("SELECT
254 `network_type_id`, `network_id`, `network_type_handle`, `network_type_api_url`, `network_type_click_url`, `network_type_banner_url`
256 `{?_MYSQL_PREFIX?}_network_types`
260 array(bigintval($id)), __FUNCTION__, __LINE__);
262 // Do we have an entry?
263 if (SQL_NUMROWS($result) == 1) {
265 $GLOBALS['network_type_data'][$id] = SQL_FETCHARRAY($result);
269 SQL_FREERESULT($result);
272 return $GLOBALS['network_type_data'][$id];
275 // "Getter" for a network request parameter data by provided id number
276 function getNetworkRequestParamsDataById ($id) {
277 // Ids lower one are not accepted
279 // Not good, should be fixed
280 debug_report_bug(__FUNCTION__, __LINE__, 'Network request parameter id ' . $id . ' is smaller than 1.');
283 // By default we have no data
284 $networkRequestData = array();
286 // Query for the network data
287 $result = SQL_QUERY_ESC("SELECT
288 `network_param_id`, `network_id`, `network_type_id`, `request_param_key`, `request_param_value`, `request_param_default`
290 `{?_MYSQL_PREFIX?}_network_request_params`
292 `network_param_id`=%s
294 array(bigintval($id)), __FUNCTION__, __LINE__);
296 // Do we have an entry?
297 if (SQL_NUMROWS($result) == 1) {
299 $networkRequestData = SQL_FETCHARRAY($result);
303 SQL_FREERESULT($result);
306 return $networkRequestData;
309 // Updates given network (id) with data from array
310 function doNetworkUpdateDataByArray ($id, $networkData) {
311 // Ids lower one are not accepted
313 // Not good, should be fixed
314 debug_report_bug(__FUNCTION__, __LINE__, 'Network id ' . $id . ' is smaller than 1.');
317 // Just call our inner method
318 return adminSaveSettings($networkData, '_network_data', sprintf("`network_id`=%s", bigintval($id)), array(), false, false);
321 // Updates given network type handler (id) with data from array
322 function doNetworkUpdateTypeByArray ($id, $networkTypeData) {
323 // Ids lower one are not accepted
325 // Not good, should be fixed
326 debug_report_bug(__FUNCTION__, __LINE__, 'Network type handler id ' . $id . ' is smaller than 1.');
329 // Just call our inner method
330 return adminSaveSettings($networkTypeData, '_network_types', sprintf("`network_type_id`=%s", bigintval($id)), array(), false, false);
333 // Updates given network request parameters (id) with data from array
334 function doNetworkUpdateParamsByArray ($id, $networkParamData) {
335 // Ids lower one are not accepted
337 // Not good, should be fixed
338 debug_report_bug(__FUNCTION__, __LINE__, 'Network request parameter id ' . $id . ' is smaller than 1.');
341 // Just call our inner method
342 return adminSaveSettings($networkParamData, '_network_request_params', sprintf("`network_param_id`=%s", bigintval($id)), array(), false, false);
345 // Removes given network entry
346 function doAdminRemoveNetworkEntry ($table, $column, $id, $limit = 1) {
348 SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_network_%s` WHERE `%s`=%s LIMIT %s",
349 array($table, $column, $id, $limit), __FUNCTION__, __LINE__);
351 // Return affected rows
352 return SQL_AFFECTEDROWS();
355 // Generates a list of networks for given script and returns it
356 function generateAdminNetworkList () {
360 // Query for all networks
361 $result = SQL_QUERY('SELECT
362 `network_id`, `network_short_name`, `network_title`
364 `{?_MYSQL_PREFIX?}_network_data`
366 `network_short_name` ASC', __FUNCTION__, __LINE__);
368 // Do we have entries?
369 if (!SQL_HASZERONUMS($result)) {
372 while ($row = SQL_FETCHARRAY($result)) {
373 // Is this valid, then add it
374 if ((is_array($row)) && (isset($row['network_id']))) {
376 $rows[$row['network_id']] = $row;
380 // Generate the selection box
381 $content = generateSelectionBoxFromArray($rows, 'network', 'network_id');
384 $content = loadTemplate('admin_settings_unsaved', false, '{--ADMIN_ENTRIES_404--}');
388 SQL_FREERESULT($result);
394 // Generator (somewhat getter) for a list of network types for given network id
395 function generateAdminNetworkTypeList ($networkId) {
399 // Query all types of this network
400 $result = SQL_QUERY_ESC("SELECT
401 `network_type_id`, `network_type_handle`
403 `{?_MYSQL_PREFIX?}_network_types`
407 `network_type_handle` ASC",
409 bigintval($networkId)
410 ), __FUNCTION__, __LINE__);
412 // Do we have entries?
413 if (!SQL_HASZERONUMS($result)) {
416 while ($row = SQL_FETCHARRAY($result)) {
417 // Is this valid, then add it
418 if ((is_array($row)) && (isset($row['network_type_id']))) {
420 $rows[$row['network_type_id']] = $row;
424 // Generate the selection box
425 $content = generateSelectionBoxFromArray($rows, 'network_type', 'network_type_id');
428 $content = loadTemplate('admin_settings_unsaved', false, '{--ADMIN_ENTRIES_404--}');
432 SQL_FREERESULT($result);
438 // Generator (somewhat getter) for a list of network types for all types
439 function generateAdminDistinctNetworkTypeList () {
443 // Query all types of this network
444 $result = SQL_QUERY('SELECT
445 t.`network_type_id`, t.`network_type_handle`, d.`network_title`
447 `{?_MYSQL_PREFIX?}_network_types` AS t
449 `{?_MYSQL_PREFIX?}_network_data` AS d
451 t.`network_id`=d.`network_id`
453 d.`network_short_name` ASC,
454 t.`network_type_handle` ASC', __FUNCTION__, __LINE__);
456 // Do we have entries?
457 if (!SQL_HASZERONUMS($result)) {
460 while ($row = SQL_FETCHARRAY($result)) {
461 // Is this valid, then add it
462 if ((is_array($row)) && (isset($row['network_type_id']))) {
464 $rows[$row['network_type_id']] = $row;
468 // Generate the selection box
469 $content = generateSelectionBoxFromArray($rows, 'network_type', 'network_type_id', '', '_title');
472 $content = loadTemplate('admin_settings_unsaved', false, '{--ADMIN_ENTRIES_404--}');
476 SQL_FREERESULT($result);
477 //* DEBUG: */ die('<pre>'.encodeEntities($content).'</pre>');
483 // Generator (somewhat getter) for network type options
484 function generateNetworkTypeOptions ($id) {
485 // Is this an array, then we just came back from edit/delete actions
486 if (is_array($id)) $id = '';
489 if (!isset($GLOBALS['network_type_options'][$id])) {
490 // Generate output and cache it
491 $GLOBALS['network_type_options'][$id] = generateOptionList(
494 'network_type_handle',
498 "WHERE `network_id`=%s",
499 bigintval(getRequestParameter('network'))
505 return $GLOBALS['network_type_options'][$id];
508 // Generator (somewhat getter) for request key options
509 function generateNetworkRequestKeyOptions ($key) {
511 if (!isset($GLOBALS['network_request_param_key'][$key])) {
512 // Generate and cache it
513 $GLOBALS['network_request_param_key'][$key] = generateOptionList(
532 '{--ADMIN_NETWORK_REQUEST_PARAMETER_ID--}',
533 '{--ADMIN_NETWORK_REQUEST_PARAMETER_SID--}',
534 '{--ADMIN_NETWORK_REQUEST_PARAMETER_HASH--}',
535 '{--ADMIN_NETWORK_REQUEST_PARAMETER_PASSWORD--}',
536 '{--ADMIN_NETWORK_REQUEST_PARAMETER_RELOAD--}',
537 '{--ADMIN_NETWORK_REQUEST_PARAMETER_MAXIMUM_STAY--}',
538 '{--ADMIN_NETWORK_REQUEST_PARAMETER_MINIMUM_STAY--}',
539 '{--ADMIN_NETWORK_REQUEST_PARAMETER_CURRENCY--}',
540 '{--ADMIN_NETWORK_REQUEST_PARAMETER_TYPE--}',
541 '{--ADMIN_NETWORK_REQUEST_PARAMETER_REMAIN--}',
542 '{--ADMIN_NETWORK_REQUEST_PARAMETER_REWARD--}',
543 '{--ADMIN_NETWORK_REQUEST_PARAMETER_SIZE--}',
544 '{--ADMIN_NETWORK_REQUEST_PARAMETER_EROTIC--}',
545 '{--ADMIN_NETWORK_REQUEST_PARAMETER_EXTRA--}'
549 $GLOBALS['network_params_disabled']
554 return $GLOBALS['network_request_param_key'][$key];
557 // Generator (somewhat getter) for (return) array translation
558 function generateNetworkTranslationOptions ($default = '') {
560 if (!isset($GLOBALS['network_translation'][$default])) {
561 // Generate and cache it
562 $GLOBALS['network_translation'][$default] = generateOptionList(
563 'network_translations',
564 'network_translation',
565 'network_translation',
568 sprintf("WHERE `network_type_id`=%s",
569 bigintval(getRequestParameter('network_type'))
571 $GLOBALS['network_translation_disabled'],
572 'ADMIN_NETWORK_ARRAY_TRANSLATION_'
577 return $GLOBALS['network_translation'][$default];
580 //------------------------------------------------------------------------------
581 // Call-back functions
582 //------------------------------------------------------------------------------
584 // Callback function to add new network
585 function doAdminNetworkProcessAddnetworkForm () {
586 // We can say here, the form is sent, so check if the network is already added
587 if (isNetworkNameValid(postRequestParameter('network_short_name'))) {
589 loadTemplate('admin_settings_unsaved', false, getMaskedMessage('ADMIN_NETWORK_ALREADY_ADDED', postRequestParameter('network_short_name')));
593 // Remove the 'ok' part
594 unsetPostRequestParameter('ok');
596 // Add the whole request to database
597 SQL_QUERY('INSERT INTO
598 `{?_MYSQL_PREFIX?}_network_data`
600 `' . implode('`,`', array_keys(postRequestArray())) . "`
602 '" . implode("','", array_values(postRequestArray())) . "'
603 )", __FUNCTION__, __LINE__);
605 // Add the id for output only
606 setPostRequestParameter('network_id', SQL_INSERTID());
609 if (SQL_AFFECTEDROWS() == 1) {
610 // Successfully added
611 loadTemplate('admin_network_added', false, postRequestArray());
614 loadTemplate('admin_settings_unsaved', false, getMaskedMessage('ADMIN_NETWORK_DATA_NOT_ADDED', postRequestParameter('network_short_name')));
618 // Displays selected networks for editing
619 function doAdminNetworkProcessHandlenetworkForm () {
620 // Do we have selections?
621 if (ifPostContainsSelections()) {
622 // Something has been selected, so start displaying one by one
624 foreach (postRequestParameter('sel') as $id => $sel) {
627 // Load this network's data
628 $networkData = getNetworkDataById($id);
630 // Do we have found the network?
631 if (count($networkData) > 0) {
632 if (isFormSent('edit')) {
633 // Make selection box for network_request_type
634 $networkData['network_request_type'] = generateOptionList(
641 '{--ADMIN_NETWORK_REQUEST_TYPE_GET--}',
642 '{--ADMIN_NETWORK_REQUEST_TYPE_POST--}'
644 $networkData['network_request_type']
647 // Add row template for editing
648 $OUT .= loadTemplate('admin_edit_networks_row', true, $networkData);
649 } elseif (isFormSent('del')) {
650 // Translate the request type
651 $networkData['network_request_type'] = '{--ADMIN_NETWORK_REQUEST_TYPE_' . $networkData['network_request_type'] . '--}';
653 // Add row template for deleting
654 $OUT .= loadTemplate('admin_del_networks_row', true, $networkData);
657 debug_report_bug(__FUNCTION__, __LINE__, 'Cannot detect edit/del.');
663 // If we have no rows, we don't need to display the edit form
665 // Output main template
666 if (isFormSent('edit')) {
667 loadTemplate('admin_edit_networks', false, $OUT);
668 } elseif (isFormSent('del')) {
669 loadTemplate('admin_del_networks', false, $OUT);
672 debug_report_bug(__FUNCTION__, __LINE__, 'Cannot detect edit/del.');
675 // Don't display the list/add new form
676 $GLOBALS['network_display'] = false;
678 // Nothing selected/found
679 loadTemplate('admin_settings_unsaved', false, '{--ADMIN_NETWORK_NOTHING_FOUND--}');
684 // Handle network type form
685 function doAdminNetworkProcessHandlenetworktypeForm () {
686 // Do we have selections?
687 if (ifPostContainsSelections()) {
689 $networkData = getNetworkDataById(getRequestParameter('network'));
691 // Something has been selected, so start displaying one by one
693 foreach (postRequestParameter('sel') as $id => $sel) {
696 // Load this network's data
697 $networkTypeData = getNetworkTypeDataById($id);
699 // Do we have found the network?
700 if (count($networkTypeData) > 0) {
701 if (isFormSent('edit')) {
702 // Add row template for deleting
703 $OUT .= loadTemplate('admin_edit_network_types_row', true, $networkTypeData);
704 } elseif (isFormSent('del')) {
705 // Add row template for deleting
706 $OUT .= loadTemplate('admin_del_network_types_row', true, $networkTypeData);
709 debug_report_bug(__FUNCTION__, __LINE__, 'Cannot detect edit/del.');
715 // If we have no rows, we don't need to display the edit form
717 // Output main template
718 if (isFormSent('edit')) {
719 loadTemplate('admin_edit_network_types', false, $OUT);
720 } elseif (isFormSent('del')) {
721 loadTemplate('admin_del_network_types', false, $OUT);
724 debug_report_bug(__FUNCTION__, __LINE__, 'Cannot detect edit/del.');
727 // Don't display the list/add new form
728 $GLOBALS['network_display'] = false;
730 // Nothing selected/found
731 loadTemplate('admin_settings_unsaved', false, '{--ADMIN_NETWORK_TYPES_NOTHING_FOUND--}');
736 // Handle network request parameter form
737 function doAdminNetworkProcessHandlerequestparamsForm () {
738 // Do we have selections?
739 if (ifPostContainsSelections()) {
741 $GLOBALS['network_params_disabled'] = array();
744 $networkData = getNetworkDataById(getRequestParameter('network'));
746 // Something has been selected, so start displaying one by one
748 foreach (postRequestParameter('sel') as $id => $sel) {
751 // Load this network's data
752 $networkRequestData = getNetworkRequestParamsDataById($id);
754 // Do we have found the network?
755 if (count($networkRequestData) > 0) {
756 if (isFormSent('edit')) {
757 // Add options list for network type
758 $networkRequestData['type_options'] = generateNetworkTypeOptions($networkRequestData['network_type_id']);
760 // Add options list for request key
761 $networkRequestData['key_options'] = generateNetworkRequestKeyOptions($networkRequestData['request_param_key']);
763 // Add row template for deleting
764 $OUT .= loadTemplate('admin_edit_network_params_row', true, $networkRequestData);
765 } elseif (isFormSent('del')) {
767 $networkRequestData['network_type_data'] = getNetworkTypeDataById($networkRequestData['network_type_id']);
769 // Add row template for deleting
770 $OUT .= loadTemplate('admin_del_network_params_row', true, $networkRequestData);
773 debug_report_bug(__FUNCTION__, __LINE__, 'Cannot detect edit/del.');
779 // If we have no rows, we don't need to display the edit form
781 // Output main template
782 if (isFormSent('edit')) {
783 loadTemplate('admin_edit_network_params', false, $OUT);
784 } elseif (isFormSent('del')) {
785 loadTemplate('admin_del_network_params', false, $OUT);
788 debug_report_bug(__FUNCTION__, __LINE__, 'Cannot detect edit/del.');
791 // Don't display the list/add new form
792 $GLOBALS['network_display'] = false;
794 // Nothing selected/found
795 loadTemplate('admin_settings_unsaved', false, '{--ADMIN_NETWORK_REQUEST_PARAMETER_NOTHING_FOUND--}');
800 // Changes given networks
801 function doAdminNetworkProcessChangenetworkForm () {
802 // Do we have selections?
803 if (ifPostContainsSelections()) {
804 // By default nothing is updated
807 // Something has been selected, so start updating them
808 foreach (postRequestParameter('sel') as $id => $sel) {
809 // Update this entry?
812 $networkData = array();
814 // Transfer whole array, except 'sel'
815 foreach (postRequestArray() as $key => $entry) {
816 // Skip 'sel' and submit button
817 if (in_array($key, array('sel', 'change'))) continue;
819 // Do we have this enty?
820 if (!isset($entry[$id])) {
821 // Not found, needs fixing
822 debug_report_bug(__FUNCTION__, __LINE__, 'No entry in key=' . $key . ', id=' . $id . ' found.');
826 $networkData[$key] = $entry[$id];
829 // Update the network data
830 $updated += doNetworkUpdateDataByArray($id, $networkData);
834 // Do we have updates?
837 loadTemplate('admin_settings_saved', false, getMaskedMessage('ADMIN_NETWORK_UPDATED', $updated));
840 loadTemplate('admin_settings_unsaved', false, '{--ADMIN_NETWORK_NOTHING_CHANGED--}');
845 // Removes given networks
846 function doAdminNetworkProcessRemovenetworkForm () {
847 // Do we have selections?
848 if (ifPostContainsSelections()) {
849 // By default nothing is removed
852 // Something has been selected, so start updating them
853 foreach (postRequestParameter('sel') as $id => $sel) {
854 // Update this entry?
857 $removed += doAdminRemoveNetworkEntry('data', 'network_id', $id);
861 // Do we have removes?
864 loadTemplate('admin_settings_saved', false, getMaskedMessage('ADMIN_NETWORK_REMOVED', $removed));
867 loadTemplate('admin_settings_unsaved', false, '{--ADMIN_NETWORK_NOTHING_REMOVED--}');
872 // Add a network type handler if not yet found
873 function doAdminNetworkProcessAddnetworktypeForm () {
874 // Is the network type handle already used with given network?
875 if (isNetworkTypeHandleValid(postRequestParameter('network_type_handle'), getRequestParameter('network'))) {
877 loadTemplate('admin_settings_unsaved', false, getMaskedMessage('ADMIN_NETWORK_TYPES_HANDLE_ALREADY_ADDED', postRequestParameter('network_type_handle')));
883 // Remove the 'ok' part
884 unsetPostRequestParameter('ok');
887 setPostRequestParameter('network_id', bigintval(getRequestParameter('network')));
889 // Is network_type_banner_url set?
890 if (postRequestParameter('network_type_banner_url') == '') {
891 // Remove empty value to get a NULL for an optional entry
892 unsetPostRequestParameter('network_type_banner_url');
895 // Add the whole request to database
896 SQL_QUERY("INSERT INTO
897 `{?_MYSQL_PREFIX?}_network_types`
899 `" . implode('`,`', array_keys(postRequestArray())) . "`
901 '" . implode("','", array_values(postRequestArray())) . "'
902 )", __FUNCTION__, __LINE__);
905 if (SQL_AFFECTEDROWS() == 1) {
906 // Successfully added
907 loadTemplate('admin_network_type_added', false, postRequestArray());
910 loadTemplate('admin_settings_unsaved', false, getMaskedMessage('ADMIN_NETWORK_TYPES_NOT_ADDED', postRequestParameter('network_type_handle')));
914 // Changes given network type handlers
915 function doAdminNetworkProcessChangenetworktypeForm () {
916 // Do we have selections?
917 if (ifPostContainsSelections()) {
918 // By default nothing is updated
921 // Something has been selected, so start updating them
922 foreach (postRequestParameter('sel') as $id => $sel) {
923 // Update this entry?
926 $networkTypeData = array();
928 // Transfer whole array, except 'sel'
929 foreach (postRequestArray() as $key => $entry) {
930 // Skip 'sel' and submit button
931 if (in_array($key, array('sel', 'change'))) continue;
933 // Do we have this enty?
934 if (!isset($entry[$id])) {
935 // Not found, needs fixing
936 debug_report_bug(__FUNCTION__, __LINE__, 'No entry in key=' . $key . ', id=' . $id . ' found.');
939 // Fix empty network_type_banner_url to NULL
940 if (($key == 'network_type_banner_url') && (trim($entry[$id]) == '')) {
946 $networkTypeData[$key] = $entry[$id];
949 // Update the network data
950 $updated += doNetworkUpdateTypeByArray($id, $networkTypeData);
954 // Do we have updates?
957 loadTemplate('admin_settings_saved', false, getMaskedMessage('ADMIN_NETWORK_TYPES_UPDATED', $updated));
960 loadTemplate('admin_settings_unsaved', false, '{--ADMIN_NETWORK_TYPES_NOTHING_CHANGED--}');
965 // Changes given network request parameters
966 function doAdminNetworkProcessChangenetworkparamForm () {
967 // Do we have selections?
968 if (ifPostContainsSelections()) {
969 // By default nothing is updated
972 // Something has been selected, so start updating them
973 foreach (postRequestParameter('sel') as $id => $sel) {
974 // Update this entry?
977 $networkParamsData = array();
979 // Transfer whole array, except 'sel'
980 foreach (postRequestArray() as $key => $entry) {
981 // Skip 'sel' and submit button
982 if (in_array($key, array('sel', 'change'))) continue;
984 // Do we have this enty?
985 if (!isset($entry[$id])) {
986 // Not found, needs fixing
987 debug_report_bug(__FUNCTION__, __LINE__, 'No entry in key=' . $key . ', id=' . $id . ' found.');
990 // Fix empty request_param_default to NULL
991 if (($key == 'request_param_default') && (trim($entry[$id]) == '')) {
997 $networkParamsData[$key] = $entry[$id];
1000 // Update the network data
1001 $updated += doNetworkUpdateParamsByArray($id, $networkParamsData);
1005 // Do we have updates?
1008 loadTemplate('admin_settings_saved', false, getMaskedMessage('ADMIN_NETWORK_REQUEST_PARAMETER_UPDATED', $updated));
1011 loadTemplate('admin_settings_unsaved', false, '{--ADMIN_NETWORK_REQUEST_PARAMETER_NOTHING_CHANGED--}');
1016 // Removes given network type handlers
1017 function doAdminNetworkProcessRemovenetworktypeForm () {
1018 // Do we have selections?
1019 if (ifPostContainsSelections()) {
1020 // By default nothing is removed
1023 // Something has been selected, so start updating them
1024 foreach (postRequestParameter('sel') as $id => $sel) {
1025 // Update this entry?
1027 // Remove this entry
1028 $removed += doAdminRemoveNetworkEntry('types', 'network_type_id', $id);
1032 // Do we have removes?
1035 loadTemplate('admin_settings_saved', false, getMaskedMessage('ADMIN_NETWORK_TYPES_REMOVED', $removed));
1038 loadTemplate('admin_settings_unsaved', false, '{--ADMIN_NETWORK_TYPES_NOTHING_REMOVED--}');
1043 // Removes given network request parameters
1044 function doAdminNetworkProcessRemovenetworkparamForm () {
1045 // Do we have selections?
1046 if (ifPostContainsSelections()) {
1047 // By default nothing is removed
1050 // Something has been selected, so start updating them
1051 foreach (postRequestParameter('sel') as $id => $sel) {
1052 // Update this entry?
1054 // Remove this entry
1055 $removed += doAdminRemoveNetworkEntry('request_params', 'network_param_id', $id);
1059 // Do we have removes?
1062 loadTemplate('admin_settings_saved', false, getMaskedMessage('ADMIN_NETWORK_REQUEST_PARAMETER_REMOVED', $removed));
1065 loadTemplate('admin_settings_unsaved', false, '{--ADMIN_NETWORK_REQUEST_PARAMETER_NOTHING_REMOVED--}');
1070 // Adds a request parameter to given network and type
1071 function doAdminNetworkProcessAddnetworkparamForm () {
1072 // Is the request parameter already used with given network?
1073 if (isNetworkRequestParameterValid(postRequestParameter('request_param_key'), postRequestParameter('network_type_id'), getRequestParameter('network'))) {
1075 loadTemplate('admin_settings_unsaved', false, getMaskedMessage('ADMIN_NETWORK_REQUEST_PARAMETER_ALREADY_ADDED', postRequestParameter('request_param_key')));
1077 // ... so abort here
1081 // Remove the 'ok' part
1082 unsetPostRequestParameter('ok');
1085 setPostRequestParameter('network_id', bigintval(getRequestParameter('network')));
1087 // Is request_param_default set?
1088 if (postRequestParameter('request_param_default') == '') {
1089 // Remove empty value to get a NULL for an optional entry
1090 unsetPostRequestParameter('request_param_default');
1093 // Add the whole request to database
1094 SQL_QUERY('INSERT INTO
1095 `{?_MYSQL_PREFIX?}_network_request_params`
1097 `' . implode('`,`', array_keys(postRequestArray())) . "`
1099 '" . implode("','", array_values(postRequestArray())) . "'
1100 )", __FUNCTION__, __LINE__);
1103 if (SQL_AFFECTEDROWS() == 1) {
1104 // Successfully added
1105 loadTemplate('admin_network_request_param_added', false, postRequestArray());
1108 loadTemplate('admin_settings_unsaved', false, getMaskedMessage('ADMIN_NETWORK_REQUEST_PARAMETER_NOT_ADDED', postRequestParameter('request_param_key')));
1112 // Do expression code for this extension
1113 function doExpressionNetwork ($data) {
1114 // Construct replacer
1115 $replacer = sprintf(
1116 "{DQUOTE} . %s(%s, '%s') . {DQUOTE}",
1118 $data['matches'][4][$data['key']],
1122 // Replace %network% with the current network id
1123 $replacer = str_replace('%network%', getCurrentNetworkId(), $replacer);
1126 $code = replaceExpressionCode($data, $replacer);