Some checks failed
CI Code / Check spelling (pull_request) Successful in 21s
CI Code / Check coding style (pull_request) Failing after 32s
CI Code / Code Coverage (pull_request) Successful in 4m50s
CI Code / Linux (debian) (pull_request) Successful in 6m13s
CI Code / Linux (ubuntu) (pull_request) Successful in 7m14s
CI Code / Linux (arch) (pull_request) Successful in 11m2s
Build system:
- Add --without-sqlite configure flag (AM_CONDITIONAL BUILD_SQLITE)
- Guard database_sqlite.c with HAVE_SQLITE in Makefile.am, database.c,
database.h and stub_database.c
- Fall back to flatfile when SQLite not compiled in
Security (database_flatfile.c):
- MAM dedup: skip incoming messages with duplicate stanza-id (archive_id)
- LMC sender validation: reject corrections from mismatched JIDs
- Add flock() advisory locking to prevent interleaved writes from
concurrent instances
- Check fprintf return when writing file header
Autocomplete (cmd_ac.c):
- Add 'flatfile' to /privacy logging autocomplete
- Add dedicated /history autocomplete with on/off/verify (was boolean-only)
Code quality:
- Fix fwrite return type: size_t not ssize_t (database_flatfile_parser.c)
- Fix mixed allocators in ff_readline: use malloc() consistently for
overlength-line fallback instead of g_strdup()
- Fix index alignment in _ff_state_extend: use local counter so index
step doesn't depend on total_lines from initial build
Documentation:
- Fix page: correct directory structure (history.log not per-day files)
- Fix page: add aid:{archive_id} to line format example
- Fix page: missing newline before .SH BUGS
82 lines
1.9 KiB
C
82 lines
1.9 KiB
C
/*
|
|
* stub_database.c
|
|
*
|
|
* Copyright (C) 2020 - 2025 Michael Vetter <jubalh@iodoru.org>
|
|
*
|
|
* This file is part of Profanity.
|
|
*
|
|
* Profanity is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* Profanity is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with Profanity. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
|
|
#include <glib.h>
|
|
#include "prof_cmocka.h"
|
|
|
|
#include "config.h"
|
|
#include "database.h"
|
|
|
|
db_backend_t* active_db_backend = NULL;
|
|
|
|
gboolean
|
|
log_database_init(ProfAccount* account)
|
|
{
|
|
return TRUE;
|
|
}
|
|
void
|
|
log_database_add_incoming(ProfMessage* message)
|
|
{
|
|
}
|
|
void
|
|
log_database_add_outgoing_chat(const char* const id, const char* const barejid, const char* const message, const char* const replace_id, prof_enc_t enc)
|
|
{
|
|
}
|
|
void
|
|
log_database_add_outgoing_muc(const char* const id, const char* const barejid, const char* const message, const char* const replace_id, prof_enc_t enc)
|
|
{
|
|
}
|
|
void
|
|
log_database_add_outgoing_muc_pm(const char* const id, const char* const barejid, const char* const message, const char* const replace_id, prof_enc_t enc)
|
|
{
|
|
}
|
|
void
|
|
log_database_close(void)
|
|
{
|
|
}
|
|
GSList*
|
|
log_database_verify_integrity(const gchar* const contact_barejid)
|
|
{
|
|
return NULL;
|
|
}
|
|
void
|
|
integrity_issue_free(integrity_issue_t* issue)
|
|
{
|
|
if (issue) {
|
|
g_free(issue->file);
|
|
g_free(issue->message);
|
|
g_free(issue);
|
|
}
|
|
}
|
|
#ifdef HAVE_SQLITE
|
|
db_backend_t*
|
|
db_backend_sqlite(void)
|
|
{
|
|
return NULL;
|
|
}
|
|
#endif
|
|
db_backend_t*
|
|
db_backend_flatfile(void)
|
|
{
|
|
return NULL;
|
|
}
|