1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-09-22 19:45:54 -04:00

Start urlopen feature

Start https://github.com/profanity-im/profanity/issues/1340
This commit is contained in:
Michael Vetter 2020-05-16 21:52:30 +02:00
parent 7d7f0ef5a5
commit 083bf34a77
3 changed files with 39 additions and 0 deletions

View File

@ -54,6 +54,7 @@
#include "xmpp/muc.h"
#include "xmpp/xmpp.h"
#include "xmpp/roster_list.h"
#include "ui/buffer.h"
#ifdef HAVE_LIBGPGME
#include "pgp/gpg.h"
@ -122,6 +123,7 @@ static char* _avatar_autocomplete(ProfWin *window, const char *const input, gboo
static char* _correction_autocomplete(ProfWin *window, const char *const input, gboolean previous);
static char* _correct_autocomplete(ProfWin *window, const char *const input, gboolean previous);
static char* _software_autocomplete(ProfWin *window, const char *const input, gboolean previous);
static char* _urlopen_autocomplete(ProfWin *window, const char *const input, gboolean previous);
static char* _script_autocomplete_func(const char *const prefix, gboolean previous, void *context);
@ -1721,6 +1723,7 @@ _cmd_ac_complete_params(ProfWin *window, const char *const input, gboolean previ
g_hash_table_insert(ac_funcs, "/correction", _correction_autocomplete);
g_hash_table_insert(ac_funcs, "/correct", _correct_autocomplete);
g_hash_table_insert(ac_funcs, "/software", _software_autocomplete);
g_hash_table_insert(ac_funcs, "/urlopen", _urlopen_autocomplete);
int len = strlen(input);
char parsed[len+1];
@ -3912,3 +3915,23 @@ _software_autocomplete(ProfWin *window, const char *const input, gboolean previo
return result;
}
static char*
_urlopen_autocomplete(ProfWin *window, const char *const input, gboolean previous)
{
if (window->type == WIN_CONSOLE){
return NULL;
}
ProfBuffEntry *entry = buffer_get_url(window->layout->buffer, NULL);
if (entry && entry->message) {
GString *result_str = g_string_new("/urlopen ");
g_string_append(result_str, entry->message);
char *result = result_str->str;
g_string_free(result_str, FALSE);
return result;
}
return NULL;
}

View File

@ -162,6 +162,21 @@ buffer_get_entry_by_id(ProfBuff buffer, const char *const id)
return NULL;
}
ProfBuffEntry*
buffer_get_url(ProfBuff buffer, const char *const id)
{
GSList *entries = buffer->entries;
while (entries) {
ProfBuffEntry *entry = entries->data;
if (strstr(entry->message, "http://")) {
return entry;
}
entries = g_slist_next(entries);
}
return NULL;
}
static void
_free_entry(ProfBuffEntry *entry)
{

View File

@ -73,5 +73,6 @@ int buffer_size(ProfBuff buffer);
ProfBuffEntry* buffer_get_entry(ProfBuff buffer, int entry);
ProfBuffEntry* buffer_get_entry_by_id(ProfBuff buffer, const char *const id);
gboolean buffer_mark_received(ProfBuff buffer, const char *const id);
ProfBuffEntry* buffer_get_url(ProfBuff buffer, const char *const id);
#endif