load->model('user_model'); if(!$this->user_model->authorize(99)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } $data['results'] = $this->user_model->users(); $data['page_title'] = __("User Accounts"); $this->load->view('interface_assets/header', $data); $this->load->view('user/main'); $this->load->view('interface_assets/footer'); } function add() { $this->load->model('user_model'); if(!$this->user_model->authorize(99)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } $data['existing_languages'] = $this->config->item('languages'); $this->load->model('bands'); $this->load->library('form_validation'); $this->load->library('Genfunctions'); $this->form_validation->set_rules('user_name', 'Username', 'required'); $this->form_validation->set_rules('user_email', 'E-mail', 'required'); $this->form_validation->set_rules('user_password', 'Password', 'required'); $this->form_validation->set_rules('user_type', 'Type', 'required'); $this->form_validation->set_rules('user_firstname', 'First name', 'required'); $this->form_validation->set_rules('user_lastname', 'Last name', 'required'); $this->form_validation->set_rules('user_callsign', 'Callsign', 'required'); $this->form_validation->set_rules('user_locator', 'Locator', 'required'); $this->form_validation->set_rules('user_locator', 'Locator', 'callback_check_locator'); $this->form_validation->set_rules('user_timezone', 'Timezone', 'required'); $data['user_add'] = true; $data['user_form_action'] = site_url('user/add'); $data['bands'] = $this->bands->get_user_bands(); // Get themes list $data['themes'] = $this->user_model->getThemes(); // Get timezones $data['timezones'] = $this->user_model->timezones(); $data['user_language'] = 'english'; if ($this->form_validation->run() == FALSE) { $data['page_title'] = __("Add User"); $data['measurement_base'] = $this->config->item('measurement_base'); $this->load->view('interface_assets/header', $data); if($this->input->post('user_name')) { $data['user_name'] = $this->input->post('user_name'); $data['user_email'] = $this->input->post('user_email'); $data['user_password'] = $this->input->post('user_password'); $data['user_type'] = $this->input->post('user_type'); $data['user_firstname'] = $this->input->post('user_firstname'); $data['user_lastname'] = $this->input->post('user_lastname'); $data['user_callsign'] = $this->input->post('user_callsign'); $data['user_locator'] = $this->input->post('user_locator'); $data['user_timezone'] = $this->input->post('user_timezone'); $data['user_measurement_base'] = $this->input->post('user_measurement_base'); $data['user_stylesheet'] = $this->input->post('user_stylesheet'); $data['user_qth_lookup'] = $this->input->post('user_qth_lookup'); $data['user_sota_lookup'] = $this->input->post('user_sota_lookup'); $data['user_wwff_lookup'] = $this->input->post('user_wwff_lookup'); $data['user_pota_lookup'] = $this->input->post('user_pota_lookup'); $data['user_show_notes'] = $this->input->post('user_show_notes'); $data['user_column1'] = $this->input->post('user_column1'); $data['user_column2'] = $this->input->post('user_column2'); $data['user_column3'] = $this->input->post('user_column3'); $data['user_column4'] = $this->input->post('user_column4'); $data['user_column5'] = $this->input->post('user_column5'); $data['user_show_profile_image'] = $this->input->post('user_show_profile_image'); $data['user_previous_qsl_type'] = $this->input->post('user_previous_qsl_type'); $data['user_amsat_status_upload'] = $this->input->post('user_amsat_status_upload'); $data['user_mastodon_url'] = $this->input->post('user_mastodon_url'); $data['user_default_band'] = $this->input->post('user_default_band'); $data['user_default_confirmation'] = ($this->input->post('user_default_confirmation_qsl') !== null ? 'Q' : '').($this->input->post('user_default_confirmation_lotw') !== null ? 'L' : '').($this->input->post('user_default_confirmation_eqsl') !== null ? 'E' : '').($this->input->post('user_default_confirmation_qrz') !== null ? 'Z' : '').($this->input->post('user_default_confirmation_clublog') !== null ? 'C' : ''); $data['user_qso_end_times'] = $this->input->post('user_qso_end_times'); $data['user_quicklog'] = $this->input->post('user_quicklog'); $data['user_quicklog_enter'] = $this->input->post('user_quicklog_enter'); $data['user_hamsat_key'] = $this->input->post('user_hamsat_key'); $data['user_hamsat_workable_only'] = $this->input->post('user_hamsat_workable_only'); $data['user_iota_to_qso_tab'] = $this->input->post('user_iota_to_qso_tab'); $data['user_sota_to_qso_tab'] = $this->input->post('user_sota_to_qso_tab'); $data['user_wwff_to_qso_tab'] = $this->input->post('user_wwff_to_qso_tab'); $data['user_pota_to_qso_tab'] = $this->input->post('user_pota_to_qso_tab'); $data['user_sig_to_qso_tab'] = $this->input->post('user_sig_to_qso_tab'); $data['user_dok_to_qso_tab'] = $this->input->post('user_dok_to_qso_tab'); $data['user_language'] = $this->input->post('user_language'); $this->load->view('user/edit', $data); } else { $this->load->view('user/edit', $data); } $this->load->view('interface_assets/footer'); } else { switch($this->user_model->add($this->input->post('user_name'), $this->input->post('user_password'), $this->input->post('user_email'), $this->input->post('user_type'), $this->input->post('user_firstname'), $this->input->post('user_lastname'), $this->input->post('user_callsign'), $this->input->post('user_locator'), $this->input->post('user_timezone'), $this->input->post('user_measurement_base'), $this->input->post('user_date_format'), $this->input->post('user_stylesheet'), $this->input->post('user_qth_lookup'), $this->input->post('user_sota_lookup'), $this->input->post('user_wwff_lookup'), $this->input->post('user_pota_lookup'), $this->input->post('user_show_notes'), $this->input->post('user_column1'), $this->input->post('user_column2'), $this->input->post('user_column3'), $this->input->post('user_column4'), $this->input->post('user_column5'), $this->input->post('user_show_profile_image'), $this->input->post('user_previous_qsl_type'), $this->input->post('user_amsat_status_upload'), $this->input->post('user_mastodon_url'), $this->input->post('user_default_band'), ($this->input->post('user_default_confirmation_qsl') !== null ? 'Q' : '').($this->input->post('user_default_confirmation_lotw') !== null ? 'L' : '').($this->input->post('user_default_confirmation_eqsl') !== null ? 'E' : '').($this->input->post('user_default_confirmation_qrz') !== null ? 'Z' : '').($this->input->post('user_default_confirmation_clublog') !== null ? 'C' : ''), $this->input->post('user_qso_end_times'), $this->input->post('user_quicklog'), $this->input->post('user_quicklog_enter'), $this->input->post('user_language'), $this->input->post('user_hamsat_key'), $this->input->post('user_hamsat_workable_only'), $this->input->post('user_iota_to_qso_tab'), $this->input->post('user_sota_to_qso_tab'), $this->input->post('user_wwff_to_qso_tab'), $this->input->post('user_pota_to_qso_tab'), $this->input->post('user_sig_to_qso_tab'), $this->input->post('user_dok_to_qso_tab'), $this->input->post('user_lotw_name'), $this->input->post('user_lotw_password'), $this->input->post('user_eqsl_name'), $this->input->post('user_eqsl_password'), $this->input->post('user_clublog_name'), $this->input->post('user_clublog_password'), $this->input->post('user_winkey') )) { // Check for errors case EUSERNAMEEXISTS: $data['username_error'] = 'Username '.$this->input->post('user_name').' already in use!'; break; case EEMAILEXISTS: $data['email_error'] = 'E-mail address '.$this->input->post('user_email').' already in use!'; break; case EPASSWORDINVALID: $data['password_error'] = 'Invalid password!'; break; // All okay, return to user screen case OK: $this->session->set_flashdata('notice', 'User '.$this->input->post('user_name').' added'); redirect('user'); return; } $data['page_title'] = __("Users"); $this->load->view('interface_assets/header', $data); $data['user_name'] = $this->input->post('user_name'); $data['user_email'] = $this->input->post('user_email'); $data['user_password'] = $this->input->post('user_password'); $data['user_type'] = $this->input->post('user_type'); $data['user_firstname'] = $this->input->post('user_firstname'); $data['user_lastname'] = $this->input->post('user_lastname'); $data['user_callsign'] = $this->input->post('user_callsign'); $data['user_locator'] = $this->input->post('user_locator'); $data['user_measurement_base'] = $this->input->post('user_measurement_base'); $data['user_stylesheet'] = $this->input->post('user_stylesheet'); $data['user_qth_lookup'] = $this->input->post('user_qth_lookup'); $data['user_sota_lookup'] = $this->input->post('user_sota_lookup'); $data['user_wwff_lookup'] = $this->input->post('user_wwff_lookup'); $data['user_pota_lookup'] = $this->input->post('user_pota_lookup'); $data['user_show_notes'] = $this->input->post('user_show_notes'); $data['user_column1'] = $this->input->post('user_column1'); $data['user_column2'] = $this->input->post('user_column2'); $data['user_column3'] = $this->input->post('user_column3'); $data['user_column4'] = $this->input->post('user_column4'); $data['user_column5'] = $this->input->post('user_column5'); $data['user_show_profile_image'] = $this->input->post('user_show_profile_image'); $data['user_previous_qsl_type'] = $this->input->post('user_previous_qsl_type'); $data['user_amsat_status_upload'] = $this->input->post('user_amsat_status_upload'); $data['user_mastodon_url'] = $this->input->post('user_mastodon_url'); $data['user_default_band'] = $this->input->post('user_default_band'); $data['user_default_confirmation'] = ($this->input->post('user_default_confirmation_qsl') !== null ? 'Q' : '').($this->input->post('user_default_confirmation_lotw') !== null ? 'L' : '').($this->input->post('user_default_confirmation_eqsl') !== null ? 'E' : '').($this->input->post('user_default_confirmation_qrz') !== null ? 'Z' : '').($this->input->post('user_default_confirmation_clublog') !== null ? 'C' : ''); $data['user_qso_end_times'] = $this->input->post('user_qso_end_times'); $data['user_quicklog'] = $this->input->post('user_quicklog'); $data['user_quicklog_enter'] = $this->input->post('user_quicklog_enter'); $data['user_language'] = $this->input->post('user_language'); $this->load->view('user/edit', $data); $this->load->view('interface_assets/footer'); } } function edit() { $this->load->model('user_model'); if ( ($this->session->userdata('user_id') == '') || ((!$this->user_model->authorize(99)) && ($this->session->userdata('user_id') != $this->uri->segment(3))) ) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } if ( $this->config->item('special_callsign') && $this->session->userdata('user_type') != '99' && $this->config->item('sc_hide_usermenu') ) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } $query = $this->user_model->get_by_id($this->uri->segment(3)); $data['existing_languages'] = $this->config->item('languages'); $pwd_placeholder = '**********'; $this->load->model('bands'); $this->load->library('form_validation'); $this->load->library('Genfunctions'); $this->form_validation->set_rules('user_name', 'Username', 'required|xss_clean'); $this->form_validation->set_rules('user_email', 'E-mail', 'required|xss_clean'); if($this->session->userdata('user_type') == 99) { $this->form_validation->set_rules('user_type', 'Type', 'required|xss_clean'); } $this->form_validation->set_rules('user_firstname', 'First name', 'required|xss_clean'); $this->form_validation->set_rules('user_lastname', 'Last name', 'required|xss_clean'); $this->form_validation->set_rules('user_callsign', 'Callsign', 'trim|required|xss_clean'); $this->form_validation->set_rules('user_locator', 'Locator', 'callback_check_locator'); $this->form_validation->set_rules('user_timezone', 'Timezone', 'required'); $data['user_form_action'] = site_url('user/edit')."/".$this->uri->segment(3);; $data['bands'] = $this->bands->get_user_bands(); // Get themes list $data['themes'] = $this->user_model->getThemes(); // Get timezones $data['timezones'] = $this->user_model->timezones(); if ($this->form_validation->run() == FALSE) { $data['page_title'] = __("Edit User"); $q = $query->row(); $data['id'] = $q->user_id; if($this->input->post('user_name', true)) { $data['user_name'] = $this->input->post('user_name', true); } else { $data['user_name'] = $q->user_name; } if($this->input->post('user_email', true)) { $data['user_email'] = $this->input->post('user_email', true); } else { $data['user_email'] = $q->user_email; } if($this->input->post('user_password', true)) { $data['user_password'] = $this->input->post('user_password',true); } else { if ($q->user_password !== '' && $q->user_password !== null) { $data['user_password'] = $pwd_placeholder; } else { $data['user_password'] = ''; } } if($this->input->post('user_type', true)) { $data['user_type'] = $this->input->post('user_type',true); } else { $data['user_type'] = $q->user_type; } if($this->input->post('user_callsign', true)) { $data['user_callsign'] = $this->input->post('user_callsign', true); } else { $data['user_callsign'] = $q->user_callsign; } if($this->input->post('user_locator', true)) { $data['user_locator'] = $this->input->post('user_locator', true); } else { $data['user_locator'] = $q->user_locator; } if($this->input->post('user_firstname', true)) { $data['user_firstname'] = $this->input->post('user_firstname', true); } else { $data['user_firstname'] = $q->user_firstname; } if($this->input->post('user_lastname', true)) { $data['user_lastname'] = $this->input->post('user_lastname', true); } else { $data['user_lastname'] = $q->user_lastname; } if($this->input->post('user_callsign', true)) { $data['user_callsign'] = $this->input->post('user_callsign', true); } else { $data['user_callsign'] = $q->user_callsign; } if($this->input->post('user_locator', true)) { $data['user_locator'] = $this->input->post('user_locator', true); } else { $data['user_locator'] = $q->user_locator; } if($this->input->post('user_timezone')) { $data['user_timezone'] = $this->input->post('user_timezone', true); } else { $data['user_timezone'] = $q->user_timezone; } if($this->input->post('user_lotw_name')) { $data['user_lotw_name'] = $this->input->post('user_lotw_name', true); } else { $data['user_lotw_name'] = $q->user_lotw_name; } if($this->input->post('user_clublog_name')) { $data['user_clublog_name'] = $this->input->post('user_clublog_name', true); } else { $data['user_clublog_name'] = $q->user_clublog_name; } if($this->input->post('user_clublog_password')) { $data['user_clublog_password'] = $this->input->post('user_clublog_password', true); } else { if ($q->user_clublog_password !== '' && $q->user_clublog_password !== null) { $data['user_clublog_password'] = $pwd_placeholder; } else { $data['user_clublog_password'] = ''; } } if($this->input->post('user_lotw_password')) { $data['user_lotw_password'] = $this->input->post('user_lotw_password', true); } else { if ($q->user_lotw_password !== '' && $q->user_lotw_password !== null) { $data['user_lotw_password'] = $pwd_placeholder; } else { $data['user_lotw_password'] = ''; } } if($this->input->post('user_eqsl_name')) { $data['user_eqsl_name'] = $this->input->post('user_eqsl_name', true); } else { $data['user_eqsl_name'] = $q->user_eqsl_name; } if($this->input->post('user_eqsl_password')) { $data['user_eqsl_password'] = $this->input->post('user_eqsl_password', true); } else { if ($q->user_eqsl_password !== '' && $q->user_eqsl_password !== null) { $data['user_eqsl_password'] = $pwd_placeholder; } else { $data['user_eqsl_password'] = ''; } } if($this->input->post('user_measurement_base')) { $data['user_measurement_base'] = $this->input->post('user_measurement_base', true); } else { $data['user_measurement_base'] = $q->user_measurement_base; } if($this->input->post('user_date_format')) { $data['user_date_format'] = $this->input->post('user_date_format', true); } else { $data['user_date_format'] = $q->user_date_format; } if($this->input->post('user_language')) { $data['user_language'] = $this->input->post('user_language', true); } else { $data['user_language'] = $q->user_language; } if($this->input->post('user_stylesheet')) { $data['user_stylesheet'] = $this->input->post('user_stylesheet', true); } else { $data['user_stylesheet'] = $q->user_stylesheet; } if($this->input->post('user_qth_lookup')) { $data['user_qth_lookup'] = $this->input->post('user_qth_lookup', true); } else { $data['user_qth_lookup'] = $q->user_qth_lookup; } if($this->input->post('user_sota_lookup')) { $data['user_sota_lookup'] = $this->input->post('user_sota_lookup', true); } else { $data['user_sota_lookup'] = $q->user_sota_lookup; } if($this->input->post('user_wwff_lookup')) { $data['user_wwff_lookup'] = $this->input->post('user_wwff_lookup', true); } else { $data['user_wwff_lookup'] = $q->user_wwff_lookup; } if($this->input->post('user_pota_lookup')) { $data['user_pota_lookup'] = $this->input->post('user_pota_lookup', true); } else { $data['user_pota_lookup'] = $q->user_pota_lookup; } if($this->input->post('user_show_notes')) { $data['user_show_notes'] = $this->input->post('user_show_notes', true); } else { $data['user_show_notes'] = $q->user_show_notes; } if($this->input->post('user_qso_end_times')) { $data['user_qso_end_times'] = $this->input->post('user_qso_end_times', true); } else { $data['user_qso_end_times'] = $q->user_qso_end_times; } if($this->input->post('user_quicklog')) { $data['user_quicklog'] = $this->input->post('user_quicklog', true); } else { $data['user_quicklog'] = $q->user_quicklog; } if($this->input->post('user_quicklog_enter')) { $data['user_quicklog_enter'] = $this->input->post('user_quicklog_enter', true); } else { $data['user_quicklog_enter'] = $q->user_quicklog_enter; } if($this->input->post('user_show_profile_image')) { $data['user_show_profile_image'] = $this->input->post('user_show_profile_image', false); } else { $data['user_show_profile_image'] = $q->user_show_profile_image; } if($this->input->post('user_previous_qsl_type')) { $data['user_previous_qsl_type'] = $this->input->post('user_previous_qsl_type', false); } else { $data['user_previous_qsl_type'] = $q->user_previous_qsl_type; } if($this->input->post('user_amsat_status_upload')) { $data['user_amsat_status_upload'] = $this->input->post('user_amsat_status_upload', false); } else { $data['user_amsat_status_upload'] = $q->user_amsat_status_upload; } if($this->input->post('user_mastodon_url')) { $data['user_mastodon_url'] = $this->input->post('user_mastodon_url', false); } else { $data['user_mastodon_url'] = $q->user_mastodon_url; } if($this->input->post('user_default_band')) { $data['user_default_band'] = $this->input->post('user_default_band', false); } else { $data['user_default_band'] = $q->user_default_band; } if($this->input->post('user_default_confirmation')) { $data['user_default_confirmation'] = ($this->input->post('user_default_confirmation_qsl') !== null ? 'Q' : '').($this->input->post('user_default_confirmation_lotw') !== null ? 'L' : '').($this->input->post('user_default_confirmation_eqsl') !== null ? 'E' : '').($this->input->post('user_default_confirmation_qrz') !== null ? 'Z' : '').($this->input->post('user_default_confirmation_clublog') !== null ? 'C' : ''); } else { $data['user_default_confirmation'] = $q->user_default_confirmation; } if($this->input->post('user_column1')) { $data['user_column1'] = $this->input->post('user_column1', true); } else { $data['user_column1'] = $q->user_column1; } if($this->input->post('user_column2')) { $data['user_column2'] = $this->input->post('user_column2', true); } else { $data['user_column2'] = $q->user_column2; } if($this->input->post('user_column3')) { $data['user_column3'] = $this->input->post('user_column3', true); } else { $data['user_column3'] = $q->user_column3; } if($this->input->post('user_column4')) { $data['user_column4'] = $this->input->post('user_column4', true); } else { $data['user_column4'] = $q->user_column4; } if($this->input->post('user_column5')) { $data['user_column5'] = $this->input->post('user_column5', true); } else { $data['user_column5'] = $q->user_column5; } if($this->input->post('user_winkey')) { $data['user_winkey'] = $this->input->post('user_winkey', true); } else { $data['user_winkey'] = $q->winkey; } if($this->input->post('user_hamsat_key', true)) { $data['user_hamsat_key'] = $this->input->post('user_hamsat_key', true); } else { $hkey_opt=$this->user_options_model->get_options('hamsat',array('option_name'=>'hamsat_key','option_key'=>'api'), $this->uri->segment(3))->result(); if (count($hkey_opt)>0) { $data['user_hamsat_key'] = $hkey_opt[0]->option_value; } else { $data['user_hamsat_key'] = ''; } } if($this->input->post('user_hamsat_workable_only')) { $data['user_hamsat_workable_only'] = $this->input->post('user_hamsat_workable_only', false); } else { $hkey_opt=$this->user_options_model->get_options('hamsat',array('option_name'=>'hamsat_key','option_key'=>'workable'), $this->uri->segment(3))->result(); if (count($hkey_opt)>0) { $data['user_hamsat_workable_only'] = $hkey_opt[0]->option_value; } } if($this->input->post('user_iota_to_qso_tab')) { $data['user_iota_to_qso_tab'] = $this->input->post('user_iota_to_qso_tab', false); } else { $qkey_opt=$this->user_options_model->get_options('qso_tab',array('option_name'=>'iota','option_key'=>'show'), $this->uri->segment(3))->result(); if (count($qkey_opt)>0) { $data['user_iota_to_qso_tab'] = $qkey_opt[0]->option_value; } } if($this->input->post('user_sota_to_qso_tab')) { $data['user_sota_to_qso_tab'] = $this->input->post('user_sota_to_qso_tab', false); } else { $qkey_opt=$this->user_options_model->get_options('qso_tab',array('option_name'=>'sota','option_key'=>'show'), $this->uri->segment(3))->result(); if (count($qkey_opt)>0) { $data['user_sota_to_qso_tab'] = $qkey_opt[0]->option_value; } } if($this->input->post('user_wwff_to_qso_tab')) { $data['user_wwff_to_qso_tab'] = $this->input->post('user_wwff_to_qso_tab', false); } else { $qkey_opt=$this->user_options_model->get_options('qso_tab',array('option_name'=>'wwff','option_key'=>'show'), $this->uri->segment(3))->result(); if (count($qkey_opt)>0) { $data['user_wwff_to_qso_tab'] = $qkey_opt[0]->option_value; } } if($this->input->post('user_pota_to_qso_tab')) { $data['user_pota_to_qso_tab'] = $this->input->post('user_pota_to_qso_tab', false); } else { $qkey_opt=$this->user_options_model->get_options('qso_tab',array('option_name'=>'pota','option_key'=>'show'), $this->uri->segment(3))->result(); if (count($qkey_opt)>0) { $data['user_pota_to_qso_tab'] = $qkey_opt[0]->option_value; } } if($this->input->post('user_sig_to_qso_tab')) { $data['user_sig_to_qso_tab'] = $this->input->post('user_sig_to_qso_tab', false); } else { $qkey_opt=$this->user_options_model->get_options('qso_tab',array('option_name'=>'sig','option_key'=>'show'), $this->uri->segment(3))->result(); if (count($qkey_opt)>0) { $data['user_sig_to_qso_tab'] = $qkey_opt[0]->option_value; } } if($this->input->post('user_dok_to_qso_tab')) { $data['user_dok_to_qso_tab'] = $this->input->post('user_dok_to_qso_tab', false); } else { $qkey_opt=$this->user_options_model->get_options('qso_tab',array('option_name'=>'dok','option_key'=>'show'), $this->uri->segment(3))->result(); if (count($qkey_opt)>0) { $data['user_dok_to_qso_tab'] = $qkey_opt[0]->option_value; } } // [MAP Custom] GET user options // $options_object = $this->user_options_model->get_options('map_custom')->result(); if (count($options_object)>0) { foreach ($options_object as $row) { if ($row->option_name=='icon') { $option_value = json_decode($row->option_value,true); foreach ($option_value as $ktype => $vtype) { if($this->input->post('user_map_'.$row->option_key.'_icon')) { $data['user_map_'.$row->option_key.'_'.$ktype] = $this->input->post('user_map_'.$row->option_key.'_'.$ktype, true); } else { $data['user_map_'.$row->option_key.'_'.$ktype] = $vtype; } } } else { $data['user_map_'.$row->option_name.'_'.$row->option_key] = $row->option_value; } } } else { $data['user_map_qso_icon'] = "fas fa-dot-circle"; $data['user_map_qso_color'] = "#FF0000"; $data['user_map_station_icon'] = "0"; $data['user_map_station_color'] = "#0000FF"; $data['user_map_qsoconfirm_icon'] = "0"; $data['user_map_qsoconfirm_color'] = "#00AA00"; $data['user_map_gridsquare_show'] = "0"; } $data['map_icon_select'] = array( 'station'=>array('0', 'fas fa-home', 'fas fa-broadcast-tower', 'fas fa-user', 'fas fa-dot-circle' ), 'qso'=>array('fas fa-broadcast-tower', 'fas fa-user', 'fas fa-dot-circle' ), 'qsoconfirm'=>array('0', 'fas fa-broadcast-tower', 'fas fa-user', 'fas fa-dot-circle', 'fas fa-check-circle' )); $data['user_locations_quickswitch'] = ($this->user_options_model->get_options('header_menu', array('option_name'=>'locations_quickswitch'), $this->uri->segment(3))->row()->option_value ?? 'false'); $data['user_utc_headermenu'] = ($this->user_options_model->get_options('header_menu', array('option_name'=>'utc_headermenu'), $this->uri->segment(3))->row()->option_value ?? 'false'); $this->load->view('interface_assets/header', $data); $this->load->view('user/edit', $data); $this->load->view('interface_assets/footer'); } else { unset($data); switch($this->user_model->edit($this->input->post())) { // Check for errors case EUSERNAMEEXISTS: $data['username_error'] = 'Username '.$this->input->post('user_name', true).' already in use!'; break; case EEMAILEXISTS: $data['email_error'] = 'E-mail address '.$this->input->post('user_email', true).' already in use!'; break; case EPASSWORDINVALID: $data['password_error'] = 'Invalid password!'; break; // All okay, return to user screen case OK: if ($this->session->userdata('user_id') == $this->uri->segment(3)) { // Editing own User? Set cookie! $cookie= array( 'name' => $this->config->item('gettext_cookie', 'gettext'), 'value' => $this->input->post('user_language', true), 'expire' => time()+1000, 'secure' => FALSE ); $this->input->set_cookie($cookie); } if($this->session->userdata('user_id') == $this->input->post('id', true)) { // [MAP Custom] ADD to user options // $array_icon = array('station','qso','qsoconfirm'); foreach ($array_icon as $icon) { $data_options['user_map_'.$icon.'_icon'] = xss_clean($this->input->post('user_map_'.$icon.'_icon', true)); $data_options['user_map_'.$icon.'_color'] = xss_clean($this->input->post('user_map_'.$icon.'_color', true)); } if (!empty($data_options['user_map_qso_icon'])) { foreach ($array_icon as $icon) { $json = json_encode(array('icon'=>$data_options['user_map_'.$icon.'_icon'], 'color'=>$data_options['user_map_'.$icon.'_color'])); $this->user_options_model->set_option('map_custom','icon',array($icon=>$json)); } $this->user_options_model->set_option('map_custom','gridsquare',array('show'=>xss_clean($this->input->post('user_map_gridsquare_show', true)))); } else { $this->user_options_model->del_option('map_custom','icon'); $this->user_options_model->del_option('map_custom','gridsquare'); } $this->user_options_model->set_option('header_menu', 'locations_quickswitch', array('boolean'=>xss_clean($this->input->post('user_locations_quickswitch', true)))); $this->user_options_model->set_option('header_menu', 'utc_headermenu', array('boolean'=>xss_clean($this->input->post('user_utc_headermenu', true)))); $this->session->set_flashdata('success', __("User").' '.$this->input->post('user_name', true).' '.__("edited")); redirect('user/edit/'.$this->uri->segment(3)); } else { $this->session->set_flashdata('success', __("User").' '.$this->input->post('user_name', true).' '.__("edited")); redirect('user'); } return; } $data['page_title'] = __("Edit User"); $this->load->view('interface_assets/header', $data); $data['user_name'] = $this->input->post('user_name', true); $data['user_email'] = $this->input->post('user_email', true); $data['user_password'] = $this->input->post('user_password', true); $data['user_type'] = $this->input->post('user_type', true); $data['user_firstname'] = $this->input->post('user_firstname', true); $data['user_lastname'] = $this->input->post('user_lastname', true); $data['user_callsign'] = $this->input->post('user_callsign', true); $data['user_locator'] = $this->input->post('user_locator', true); $data['user_timezone'] = $this->input->post('user_timezone', true); $data['user_stylesheet'] = $this->input->post('user_stylesheet'); $data['user_qth_lookup'] = $this->input->post('user_qth_lookup'); $data['user_sota_lookup'] = $this->input->post('user_sota_lookup'); $data['user_wwff_lookup'] = $this->input->post('user_wwff_lookup'); $data['user_pota_lookup'] = $this->input->post('user_pota_lookup'); $data['user_show_notes'] = $this->input->post('user_show_notes'); $data['user_column1'] = $this->input->post('user_column1'); $data['user_column2'] = $this->input->post('user_column2'); $data['user_column3'] = $this->input->post('user_column3'); $data['user_column4'] = $this->input->post('user_column4'); $data['user_column4'] = $this->input->post('user_column4'); $data['user_column5'] = $this->input->post('user_column5'); $data['user_show_profile_image'] = $this->input->post('user_show_profile_image'); $data['user_previous_qsl_type'] = $this->input->post('user_previous_qsl_type'); $data['user_amsat_status_upload'] = $this->input->post('user_amsat_status_upload'); $data['user_mastodon_url'] = $this->input->post('user_mastodon_url'); $data['user_default_band'] = $this->input->post('user_default_band'); $data['user_default_confirmation'] = ($this->input->post('user_default_confirmation_qsl') !== null ? 'Q' : '').($this->input->post('user_default_confirmation_lotw') !== null ? 'L' : '').($this->input->post('user_default_confirmation_eqsl') !== null ? 'E' : '').($this->input->post('user_default_confirmation_qrz') !== null ? 'Z' : '').($this->input->post('user_default_confirmation_clublog') !== null ? 'C' : ''); $data['user_qso_end_times'] = $this->input->post('user_qso_end_times'); $data['user_quicklog'] = $this->input->post('user_quicklog'); $data['user_quicklog_enter'] = $this->input->post('user_quicklog_enter'); $data['user_locations_quickswitch'] = $this->input->post('user_locations_quickswitch', true); $data['user_utc_headermenu'] = $this->input->post('user_utc_headermenu', true); $data['user_language'] = $this->input->post('user_language'); $data['user_winkey'] = $this->input->post('user_winkey'); $data['user_hamsat_key'] = $this->input->post('user_hamsat_key'); $data['user_hamsat_workable_only'] = $this->input->post('user_hamsat_workable_only'); $this->load->view('user/edit'); $this->load->view('interface_assets/footer'); } } function profile() { $this->load->model('user_model'); if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } $query = $this->user_model->get_by_id($this->session->userdata('user_id')); $q = $query->row(); $data['page_title'] = __("Profile"); $data['user_name'] = $q->user_name; $data['user_type'] = $q->user_type; $data['user_email'] = $q->user_email; $data['user_firstname'] = $q->user_firstname; $data['user_lastname'] = $q->user_lastname; $data['user_callsign'] = $q->user_callsign; $data['user_locator'] = $q->user_locator; $this->load->view('interface_assets/header', $data); $this->load->view('user/profile'); $this->load->view('interface_assets/footer'); } function delete() { $this->load->model('user_model'); if(!$this->user_model->authorize(99)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } $query = $this->user_model->get_by_id($this->uri->segment(3)); $this->load->library('form_validation'); $this->form_validation->set_rules('id', 'user_id', 'required'); $data = $query->row(); $data->page_title = "Delete User"; if ($this->form_validation->run() == FALSE) { $this->load->view('interface_assets/header', $data); $this->load->view('user/delete'); $this->load->view('interface_assets/footer'); } else { if($this->user_model->delete($data->user_id)) { $this->session->set_flashdata('notice', 'User deleted'); redirect('user'); } else { $this->session->set_flashdata('notice', 'Database error: Could not delete user!'); redirect('user'); } } } function login($firstlogin = false) { // Check our version and run any migrations if (!$this->load->is_loaded('Migration')) { $this->load->library('Migration'); } if (!$this->load->is_loaded('Encryption')) { $this->load->library('Encryption'); } $this->migration->current(); if($firstlogin == true) { $this->session->set_flashdata('success', __("Congrats! Wavelog was successfully installed. You can now login for the first time.")); } $this->load->model('user_model'); $query = $this->user_model->get($this->input->post('user_name', true)); $this->load->library('form_validation'); $this->form_validation->set_rules('user_name', 'Username', 'required'); $this->form_validation->set_rules('user_password', 'Password', 'required'); $data['user'] = $query->row(); // Read the cookie keep_login and allow the login if ($this->input->cookie(config_item('cookie_prefix') . 'keep_login')) { try { if ($this->config->item('encryption_key') == 'flossie1234555541') { throw new Exception("Encryption Key is still default. Change config['encryption_key'] to another value then flossie..."); } // process the incoming string $incoming_string = $this->input->cookie(config_item('cookie_prefix') . 'keep_login'); $i_str_parts_a = explode(base64_encode($this->config->item('base_url')), $incoming_string); $uid = base64_decode($i_str_parts_a[1]); $a = $i_str_parts_a[0]; // process the string to compare with $compare_string = $this->user_model->keep_cookie_hash($uid); $i_str_parts_b = explode(base64_encode($this->config->item('base_url')), $compare_string); $b = $i_str_parts_b[0]; $user = $this->user_model->get_by_id($uid)->row(); $user_type = $user->user_type; // compare both strings the hard way and log in if they match if ($this->user_model->check_keep_hash($a, $b)) { // check if maintenance mode is active or the user is an admin if (ENVIRONMENT != 'maintenance' || $user_type == 99) { // if everything is fine we can log in the user $this->user_model->update_session($uid); $this->user_model->set_last_seen($uid); log_message('debug', "User ID: [$uid] logged in successfully with 'Keep Login'."); redirect('dashboard'); } else { // user not allowed to log in log_message('debug', "User ID: [$uid] Login rejected because of an active maintenance mode (and he is no admin)."); // Delete keep_login cookie $this->input->set_cookie('keep_login', '', time() - 3600, ''); redirect('user/login'); } } else { // user not allowed to log in log_message('debug', "User ID: [$uid] Login rejected because of non matching hash key ('Keep Login')."); // Delete keep_login cookie $this->input->set_cookie('keep_login', '', time() - 3600, ''); $this->session->set_flashdata('error', __("Login failed. Try again.")); redirect('user/login'); } } catch (Exception $e) { // Something went wrong with the cookie log_message('error', "User ID: [".$uid."]; 'Keep Login' failed. Cookie deleted. Message: ".$e); // Delete keep_login cookie $this->input->set_cookie('keep_login', '', time() - 3600, ''); $this->session->set_flashdata('error', __("Login failed. Try again.")); redirect('user/login'); } } if ($this->form_validation->run() == FALSE) { $data['page_title'] = __("Login"); $data['https_check'] = $this->https_check(); $this->load->view('interface_assets/mini_header', $data); $this->load->view('user/login'); $this->load->view('interface_assets/footer'); } else { if($this->user_model->login() == 1) { $this->session->set_flashdata('notice', __("User logged in")); $this->user_model->update_session($data['user']->user_id); $cookie= array( 'name' => $this->config->item('gettext_cookie', 'gettext'), 'value' => $data['user']->user_language, 'expire' => time()+1000, 'secure' => FALSE ); $this->input->set_cookie($cookie); // Create a keep_login cookie if ($this->input->post('keep_login') == '1') { $encrypted_string = $this->user_model->keep_cookie_hash($data['user']->user_id); $cookie = array( 'name' => 'keep_login', 'value' => $encrypted_string, 'expire' => '2592000', // 30 days 'secure' => TRUE, 'httponly' => TRUE ); $this->input->set_cookie($cookie); } $this->user_model->set_last_seen($data['user']->user_id); redirect('dashboard'); } else { if(ENVIRONMENT == 'maintenance') { $this->session->set_flashdata('notice', __("Sorry. This instance is currently in maintenance mode. If this message appears unexpectedly or keeps showing up, please contact an administrator. Only administrators are currently allowed to log in.")); redirect('user/login'); } else { $this->session->set_flashdata('error', __("Incorrect username or password!")); redirect('user/login'); } } } } function logout() { $this->load->model('user_model'); $user_name = $this->session->userdata('user_name'); // Delete keep_login cookie $this->input->set_cookie('keep_login', '', time() - 3600, ''); $this->user_model->clear_session(); $this->session->set_flashdata('notice', sprintf(__("User %s logged out."), $user_name)); redirect('user/login'); } /** * Function: forgot_password * * Allows users to input an email address and a password will be sent to that address. * */ function forgot_password() { if (file_exists('.demo')) { $this->session->set_flashdata('error', __("Password Reset is disabled on the Demo!")); redirect('user/login'); } else { $this->load->helper(array('form', 'url')); $this->load->library('form_validation'); $this->form_validation->set_rules('email', 'Email', 'required'); if ($this->form_validation->run() == FALSE) { $data['page_title'] = __("Forgot Password"); $this->load->view('interface_assets/mini_header', $data); $this->load->view('user/forgot_password'); $this->load->view('interface_assets/footer'); } else { // Check email address exists $this->load->model('user_model'); $check_email = $this->user_model->check_email_address($this->input->post('email', true)); if($check_email == TRUE) { // Generate password reset code 50 characters long $this->load->helper('string'); $reset_code = random_string('alnum', 50); $this->user_model->set_password_reset_code($this->input->post('email', true), $reset_code); // Send email with reset code $this->data['reset_code'] = $reset_code; $this->load->library('email'); if($this->optionslib->get_option('emailProtocol') == "smtp") { $config = Array( 'protocol' => $this->optionslib->get_option('emailProtocol'), 'smtp_crypto' => $this->optionslib->get_option('smtpEncryption'), 'smtp_host' => $this->optionslib->get_option('smtpHost'), 'smtp_port' => $this->optionslib->get_option('smtpPort'), 'smtp_user' => $this->optionslib->get_option('smtpUsername'), 'smtp_pass' => $this->optionslib->get_option('smtpPassword'), 'crlf' => "\r\n", 'newline' => "\r\n" ); $this->email->initialize($config); } $message = $this->load->view('email/forgot_password', $this->data, TRUE); $this->email->from($this->optionslib->get_option('emailAddress'), $this->optionslib->get_option('emailSenderName')); $this->email->to($this->input->post('email', true)); $this->email->subject('Wavelog Account Password Reset'); $this->email->message($message); if (! $this->email->send()) { // Redirect to login page with message $this->session->set_flashdata('warning', __("Email settings are incorrect.")); redirect('user/login'); } else { // Redirect to login page with message $this->session->set_flashdata('notice', __("Password Reset Processed.")); redirect('user/login'); } } else { // No account found just return to login page $this->session->set_flashdata('notice', __("Password Reset Processed.")); redirect('user/login'); } } } } // Send an E-Mail to the user. Function is similar to forgot_password() but will be called by an AJAX public function admin_send_password_reset() { header('Content-Type: application/json'); if ($this->input->is_ajax_request()) { // just additional, to make sure request is from ajax if ($this->input->post('submit_allowed')) { $this->load->model('user_model'); if(!$this->user_model->authorize(99)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } $query = $this->user_model->get_by_id($this->input->post('user_id')); $this->load->library('form_validation'); $this->form_validation->set_rules('id', 'user_id', 'required'); $data = $query->row(); if ($this->form_validation->run() != FALSE) { $this->session->set_flashdata('notice', 'Something went wrong! User has no user_id.'); redirect('user'); } else { // Check email address exists $this->load->model('user_model'); $check_email = $this->user_model->check_email_address($data->user_email); if($check_email == TRUE) { // Generate password reset code 50 characters long $this->load->helper('string'); $reset_code = random_string('alnum', 50); $this->user_model->set_password_reset_code(($data->user_email), $reset_code); // Send email with reset code and first Name of the User $this->data['reset_code'] = $reset_code; $this->data['user_firstname'] = $data->user_firstname; // We can call the user by his first name in the E-Mail $this->data['user_callsign'] = $data->user_callsign; $this->data['user_name'] = $data->user_name; $this->load->library('email'); if($this->optionslib->get_option('emailProtocol') == "smtp") { $config = Array( 'protocol' => $this->optionslib->get_option('emailProtocol'), 'smtp_crypto' => $this->optionslib->get_option('smtpEncryption'), 'smtp_host' => $this->optionslib->get_option('smtpHost'), 'smtp_port' => $this->optionslib->get_option('smtpPort'), 'smtp_user' => $this->optionslib->get_option('smtpUsername'), 'smtp_pass' => $this->optionslib->get_option('smtpPassword'), 'crlf' => "\r\n", 'newline' => "\r\n" ); $this->email->initialize($config); } $message = $this->load->view('email/admin_reset_password', $this->data, TRUE); $this->email->from($this->optionslib->get_option('emailAddress'), $this->optionslib->get_option('emailSenderName')); $this->email->to($data->user_email); $this->email->subject('Wavelog Account Password Reset'); $this->email->message($message); if (! $this->email->send()) { echo json_encode(false); } else { echo json_encode(true); } } else { echo json_encode(false); } } } } } function reset_password($reset_code = NULL) { $data['reset_code'] = $reset_code; if($reset_code != NULL) { $this->load->helper(array('form', 'url')); $this->load->library('form_validation'); $this->form_validation->set_rules('password', 'Password', 'required'); $this->form_validation->set_rules('password_confirm', 'Password Confirmation', 'required|matches[password]'); if ($this->form_validation->run() == FALSE) { $data['page_title'] = __("Reset Password"); $this->load->view('interface_assets/mini_header', $data); $this->load->view('user/reset_password'); $this->load->view('interface_assets/footer'); } else { // Lets reset the password! $this->load->model('user_model'); $this->user_model->reset_password($this->input->post('password', true), $reset_code); $this->session->set_flashdata('notice', 'Password Reset.'); redirect('user/login'); } } else { redirect('user/login'); } } function check_locator($grid) { $grid = $this->input->post('user_locator'); // Allow empty locator if (preg_match('/^$/', $grid)) return true; // Allow 6-digit locator if (preg_match('/^[A-Ra-r]{2}[0-9]{2}[A-Za-z]{2}$/', $grid)) return true; // Allow 4-digit locator else if (preg_match('/^[A-Ra-r]{2}[0-9]{2}$/', $grid)) return true; // Allow 4-digit grid line else if (preg_match('/^[A-Ra-r]{2}[0-9]{2},[A-Ra-r]{2}[0-9]{2}$/', $grid)) return true; // Allow 4-digit grid corner else if (preg_match('/^[A-Ra-r]{2}[0-9]{2},[A-Ra-r]{2}[0-9]{2},[A-Ra-r]{2}[0-9]{2},[A-Ra-r]{2}[0-9]{2}$/', $grid)) return true; // Allow 2-digit locator else if (preg_match('/^[A-Ra-r]{2}$/', $grid)) return true; // Allow 8-digit locator else if (preg_match('/^[A-Ra-r]{2}[0-9]{2}[A-Za-z]{2}[0-9]{2}$/', $grid)) return true; else { $this->form_validation->set_message('check_locator', 'Please check value for grid locator ('.strtoupper($grid).').'); return false; } } function https_check() { if (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] === 'on') { return true; } if (!empty($_SERVER['HTTP_X_FORWARDED_PROTO']) && $_SERVER['HTTP_X_FORWARDED_PROTO'] === 'https') { return true; } if (!empty($_SERVER['HTTP_X_FORWARDED_SSL']) && $_SERVER['HTTP_X_FORWARDED_SSL'] === 'on') { return true; } return false; } function impersonate() { // Load the user model $this->load->model('user_model'); // before we can impersonate a user, we need to make sure the current user is an admin // TODO: authorize from additional datatable aswell if(!$this->user_model->authorize(99)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } // get the user_id from the postdata $user_id = $this->input->get('user_id', TRUE); // TODO: easier to test with GET parameter, switch back to POST later -> TEST -> URL/impersonate?user_id=[user_id] // make sure the user_id is a number if (!is_numeric($user_id)) { $this->session->set_flashdata('notice', 'Invalid User ID'); redirect('dashboard'); } // TODO: Later implementation for special callsigns: // We need to check if the user is allowed to "become" this particular user_id // Update the session with the new user_id $this->user_model->update_session($user_id); // Redirect to the dashboard redirect('dashboard'); } }