Michael Vetter
900426025e
Put ifdef around tray.h functions
...
Only define in case we built with GTK support.
2019-10-29 21:03:39 +01:00
Michael Vetter
f5afedd171
Remove not neede gtk_init() in tray.c
...
gtk_init_check() already has that functionality.
2019-10-29 21:00:56 +01:00
Michael Vetter
81253cd2ca
Remove comments
2019-10-29 20:59:54 +01:00
Michael Vetter
a14dccc539
Merge pull request #1216 from profanity-im/feature/issue-156-clipboard
...
Paste command
2019-10-29 15:21:43 +01:00
Michael Vetter
5d6cb3c741
Dont use clipboard_init yet
...
For now we initialize gtk in tray_init().
Should maybe use a general function and check in tray_init and
clipboard_init whether gtk was already initialized.
2019-10-29 15:20:57 +01:00
Michael Vetter
291f9de1e9
Send clipboard via /paste
...
New command `/paste` that sends the clipboard in MUC, Chat etc windows.
Fix https://github.com/profanity-im/profanity/issues/156
2019-10-29 15:20:57 +01:00
Michael Vetter
900a0451a7
Adjust tray configure switch to also include clipboard
...
General GTK.
2019-10-29 15:20:57 +01:00
Michael Vetter
b46dbcc363
Add clipboard feature
...
Use GTK to take the text from the clipboard.
Add `/paste` command which pastes this text now to console window.
2019-10-29 15:20:57 +01:00
Michael Vetter
aa0c638394
Update chat_log_pgp_msg_out() usage
...
Fix build
2019-10-29 15:20:24 +01:00
Michael Vetter
6bfdc5422c
Adjust message stubs in unit tests
2019-10-29 11:55:27 +01:00
Michael Vetter
5a0a6c97e2
Two carbon logging changes
...
Add resourcepart to the outgoing carbon that is logged, so we use the
correct filenames for MUC PMs.
Dont log incoming carbons of MUC PMs as a workaround to faulty server
behaviour.
See https://wiki.xmpp.org/web/Multi-Session_Nicks#Private_Messages under
'Client-side workaround behavior'.
Regards https://github.com/profanity-im/profanity/issues/1214
2019-10-29 11:46:01 +01:00
Michael Vetter
9788410aaf
Also log sv_ev_delayed_private_message
2019-10-29 10:52:11 +01:00
Michael Vetter
7dd747b58d
Set mucuser in carbon case
...
Also we initialize mucuser properly.
Now in case of a carbon of a MUC PM we sv_ev_incoming_carbon() which
calls _sv_ev_incoming_plain() and then we log it via chat_log_msg_in()
in there.
But we also get the sv_ev_incoming_private_message() and call
chat_log_msg_in() in there too. So the incoming message get's logged
twice.
2019-10-29 10:41:07 +01:00
Michael Vetter
8c8c18c6fd
Actually log MUC PM messages
...
If I'm not mistaken MUC PMs have not been logged at all if there was no
other client sending carbons.
This should add MUC PM logging functionality.
We still need to make sure carbons log to the same file.
Regards https://github.com/profanity-im/profanity/issues/1214
2019-10-28 23:36:42 +01:00
Michael Vetter
f186eb94da
Remove not neede free
...
It's in the def == NULL case. So will always be noop.
2019-10-25 14:06:03 +02:00
Michael Vetter
6a88af6bc6
Remove /leave command
...
We have `/close` which does the same and more.
Regards https://github.com/profanity-im/profanity/issues/1116
2019-10-22 15:33:54 +02:00
Michael Vetter
47d8d210ab
Make forest theme more readable
2019-10-22 15:10:55 +02:00
Michael Vetter
8764e59650
Adjust stub for connection_get_profanity_identifier
2019-10-22 14:24:07 +02:00
Michael Vetter
22bf281399
Make prof_identifier const
2019-10-22 12:47:32 +02:00
Michael Vetter
6b75848f96
Display ownership of connection_get_profanity_identifier
2019-10-22 12:04:16 +02:00
Michael Vetter
f023eb8d72
Dont allow new issues
2019-10-22 11:13:41 +02:00
Michael Vetter
ba18752405
Use UUID in origin-id and id
...
Let's use UUID to have a more random string then just 10 alphanumeric
values.
2019-10-22 11:10:37 +02:00
Martin
b16426f66d
Change default text colors to default ( #1213 )
...
Change default themes text color
Using "default" instead of white makes the default better readable
when using a black/dark font on white/light background.
May fix #535
2019-10-22 08:13:39 +02:00
Michael Vetter
2292f15633
Make sure date vars are initialized
2019-10-21 16:19:35 +02:00
Michael Vetter
40d9dcae87
Properly display chatwin history
...
So far if one had enabled `/history` and did `/msg somenick` the history
was loaded from file and displayed like this:
```
04-04-17 15:23 - 3/4/2017:
01-01-00 10:30 - me: ....
01-01-00 10:31 - somebody: ....
01-01-00 10:32 - somebody: ....
```
So the first line contained the actual date. But the date used in each
line was always 01-01-2000. This date was for some reason hardcoded.
This commit now actually uses that date to build the proper GDateTime
instead of just printing it.
Fix https://github.com/profanity-im/profanity/issues/922
2019-10-21 15:26:40 +02:00
Michael Vetter
ef19b45e64
Remove old comment
...
It's not up to date.
Some time ago we changed from individual handlers to general ones.
2019-10-21 10:28:29 +02:00
Michael Vetter
c4a52b13e8
Merge pull request #1209 from jubalh/feature/xep-0359
...
XEP-0359
2019-10-21 09:56:15 +02:00
Michael Vetter
963ab841b4
Set prof_ident to NULL after free
...
This caused the bug mentioned in the PR comment:
```
It seems with the changes done here we get a crash in: src/xmpp/message.c message_handlers_init() when looking up handlers: ProfMessageHandler *handler = g_hash_table_lookup(pubsub_event_handlers, curr->data);.
Steps to reproduce:
open Profanity and connect
/autoping set 10
/autoping timeout 10
stop WiFi/connection
wait for Lost connection
restart wifi
/connect
```
2019-10-21 09:50:13 +02:00
Michael Vetter
8a5932b251
Rename _calculate_identifier to _compute_identifier
2019-10-20 00:01:19 +02:00
Michael Vetter
db4b55eee0
Rename random_bytes to profanity_instance_id
2019-10-19 23:27:19 +02:00
Michael Vetter
31014b5e51
Fix which message we want to log
2019-10-19 23:24:33 +02:00
Michael Vetter
2a4d1b8410
Free hmac and msgid
2019-10-19 08:18:37 +02:00
Michael Vetter
f190d2c5f2
Free prof_identifier in case of reconnect
...
Bedore we assign it new.
2019-10-19 07:40:59 +02:00
Michael Vetter
c3912df05b
Move ProfMessage and message_is_sent_by_us to xmpp
...
Not meant for internal usage only.
2019-10-19 06:36:47 +02:00
Michael Vetter
4d7a496ae2
Change origin-id/id algo
...
Hash twice.
Use HMAC SHA256 from glib.
2019-10-18 16:12:26 +02:00
Michael Vetter
72bdae1014
Add message_is_sent_by_us stub
2019-10-18 14:53:06 +02:00
Michael Vetter
06f300a42c
Move message sent by us logic in own function
2019-10-18 14:50:25 +02:00
Michael Vetter
3bd5c9f535
Remove accidentally added file
2019-10-18 12:24:34 +02:00
Michael Vetter
dfead6415f
sv_ev_room_message: log in all cases if not our client
...
Forgot to check what happens if the length is <= 10.
2019-10-18 11:59:39 +02:00
Michael Vetter
f7474cd72c
sv_ev_room_message: check if message->id is not NULL
2019-10-18 11:43:30 +02:00
Michael Vetter
5c6f5ba0f7
Add connection_get_profanity_identifier stub
...
And move defintion to xmpp.h
2019-10-18 11:23:30 +02:00
Michael Vetter
33083662d1
Add XEP-0359 to capabilities
...
We implement </origin-id> from [XEP-0359](https://xmpp.org/extensions/xep-0359.html ).
We already had this implemented for OMEMO. And now use it to check
whether MUC messages were sent from us
(https://github.com/profanity-im/profanity/issues/1201 ).
We don't implement </stanza-id> yet, but probably need to do so for MAM.
Anyways let's flag this as implementing the XEP.
Fix https://github.com/profanity-im/profanity/issues/1207
2019-10-18 10:46:06 +02:00
Michael Vetter
430b2eaa0d
Log incoming MUC messages if origin-id sais they dont come from us
...
Regards https://github.com/profanity-im/profanity/issues/1201
2019-10-18 10:40:24 +02:00
Michael Vetter
53640f6e97
Remove prefix from stanza id
...
We sent `prof_prefix_uuid` as id. Where the prefix was also optional.
We don't need this at all.
2019-10-17 15:40:40 +02:00
Michael Vetter
827af999b7
Change algo for connection_create_stanza_id()
2019-10-17 15:32:46 +02:00
Michael Vetter
8f5d1751b2
Change connection_create_stanza_id()
...
To return identifier and uuid together.
We can remove the prefix later on.
2019-10-17 09:23:11 +02:00
Michael Vetter
708bc83870
Calculate identifier upon connect
...
This will be needed so that we can later detect if messages (origin-in)
was sent by us.
Regards https://github.com/profanity-im/profanity/issues/1207
2019-10-16 15:53:28 +02:00
Michael Vetter
ee0541a262
Rename identification file
2019-10-16 10:54:05 +02:00
Michael Vetter
46f0304f89
Use random string for random-bytes identifier
...
And rename `instance` to `identifier`.
Regards https://github.com/profanity-im/profanity/issues/1207
2019-10-16 10:45:41 +02:00
Michael Vetter
f9eb302a59
Move code from jid_random_resource() into own function
...
Move the code that creates a random string into it's own function
+get_random_string().
2019-10-16 10:39:35 +02:00