!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 

uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/var/www/html/wincloud_gateway/node_modules/strapi-admin/admin/src/containers/Webhooks/EditView/   drwxr-xr-x
Free 13.16 GB of 57.97 GB (22.71%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     reducer.js (2.26 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
import { fromJS } from 'immutable';
import { get } from 'lodash';

const header = { key: '', value: '' };

const initialWebhook = {
  events: [],
  headers: [header],
  name: '',
  url: '',
};

const initialState = fromJS({
  formErrors: {},
  initialData: initialWebhook,
  isTriggering: false,
  modifiedData: initialWebhook,
  isLoading: true,
  triggerResponse: {},
});

const reducer = (state, action) => {
  switch (action.type) {
    case 'ADD_NEW_HEADER':
      return state.updateIn(['modifiedData', ...action.keys], arr => arr.push(fromJS(header)));
    case 'GET_DATA_SUCCEEDED': {
      const headers = get(action, ['data', 'headers'], {});
      let formattedHeaders = [header];

      if (Object.keys(headers).length > 0) {
        formattedHeaders = Object.keys(headers).map(key => {
          return { key, value: headers[key] };
        });
      }

      const data = fromJS(action.data).update('headers', () => fromJS(formattedHeaders));

      return state
        .update('isLoading', () => false)
        .update('initialData', () => data)
        .update('modifiedData', () => data);
    }
    case 'ON_CHANGE':
      return state.updateIn(['modifiedData', ...action.keys], () => action.value);
    case 'ON_HEADER_REMOVE': {
      return state.updateIn(['modifiedData', 'headers'], headers => {
        if (headers.size === 1) {
          return fromJS([header]);
        }

        return headers.remove(action.index);
      });
    }
    case 'ON_TRIGGER_CANCELED':
      return state.update('isTriggering', () => false).set('triggerResponse', fromJS({}));
    case 'RESET_FORM':
      return state.update('modifiedData', () => state.get('initialData'));
    case 'SET_ERRORS':
      return state.update('formErrors', () => fromJS(action.errors));
    case 'SET_IS_TRIGGERING':
      return state.update('isTriggering', isTriggering => !isTriggering);
    case 'SUBMIT_SUCCEEDED':
      return state.update('initialData', () => state.get('modifiedData'));
    case 'TRIGGER_SUCCEEDED':
      return state
        .update('triggerResponse', () => fromJS(action.response))
        .update('isTriggering', () => false);
    case 'UNSET_LOADER':
      return state.update('isLoading', () => false);
    default:
      return state;
  }
};

export default reducer;
export { initialState };

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0066 ]--