-
Notifications
You must be signed in to change notification settings - Fork 231
Implement draft/message-redaction #2065
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
2182b1d
Makefile: Add dependencies between targets
96c2440
Implement draft/message-redaction for channels
9fb2cff
Error when the given targetmsg does not exist
78cd9c9
gofmt
8039586
Add CanDelete enum type
cc11d0f
gofmt
f0c8989
Add support for PMs
e84a92d
Fix documentation of allow-individual-delete.
fd2f5b7
Remove 'TODO: add configurable fallback'
5707ed7
Revert "Makefile: Add dependencies between targets"
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2663,6 +2663,97 @@ fail: | |
| return false | ||
| } | ||
|
|
||
| // REDACT <target> <targetmsgid> [:<reason>] | ||
| func redactHandler(server *Server, client *Client, msg ircmsg.Message, rb *ResponseBuffer) bool { | ||
| target := msg.Params[0] | ||
| targetmsgid := msg.Params[1] | ||
| //clientOnlyTags := msg.ClientOnlyTags() | ||
| var reason string | ||
| if len(msg.Params) > 2 { | ||
| reason = msg.Params[2] | ||
| } | ||
| var members []*Client // members of a channel, or both parties of a PM | ||
| var canDelete CanDelete | ||
|
|
||
| msgid := utils.GenerateSecretToken() | ||
| time := time.Now().UTC().Round(0) | ||
| details := client.Details() | ||
| isBot := client.HasMode(modes.Bot) | ||
|
|
||
| if target[0] == '#' { | ||
| channel := server.channels.Get(target) | ||
| if channel == nil { | ||
| rb.Add(nil, server.name, ERR_NOSUCHCHANNEL, client.Nick(), utils.SafeErrorParam(target), client.t("No such channel")) | ||
| return false | ||
| } | ||
| members = channel.Members() | ||
| canDelete = deletionPolicy(server, client, target) | ||
| } else { | ||
| targetClient := server.clients.Get(target) | ||
| if targetClient == nil { | ||
| rb.Add(nil, server.name, ERR_NOSUCHNICK, client.Nick(), target, "No such nick") | ||
| return false | ||
| } | ||
| members = []*Client{client, targetClient} | ||
| canDelete = canDeleteSelf | ||
| } | ||
|
|
||
| if canDelete == canDeleteNone { | ||
| rb.Add(nil, server.name, "FAIL", "REDACT", "REDACT_FORBIDDEN", utils.SafeErrorParam(target), utils.SafeErrorParam(targetmsgid), client.t("You are not authorized to delete messages")) | ||
| return false | ||
| } | ||
| accountName := "*" | ||
| if canDelete == canDeleteSelf { | ||
| accountName = client.AccountName() | ||
| if accountName == "*" { | ||
| rb.Add(nil, server.name, "FAIL", "REDACT", "REDACT_FORBIDDEN", utils.SafeErrorParam(target), utils.SafeErrorParam(targetmsgid), client.t("You are not authorized to delete because you are logged out")) | ||
| return false | ||
| } | ||
| } | ||
|
|
||
| err := server.DeleteMessage(target, targetmsgid, accountName) | ||
| if err == errNoop { | ||
| rb.Add(nil, server.name, "FAIL", "REDACT", "UNKNOWN_MSGID", utils.SafeErrorParam(target), utils.SafeErrorParam(targetmsgid), client.t("This message does not exist or is too old")) | ||
| return false | ||
| } else if err != nil { | ||
| isOper := client.HasRoleCapabs("history") | ||
| if isOper { | ||
| rb.Add(nil, server.name, "FAIL", "REDACT", "REDACT_FORBIDDEN", utils.SafeErrorParam(target), utils.SafeErrorParam(targetmsgid), fmt.Sprintf(client.t("Error deleting message: %v"), err)) | ||
| } else { | ||
| rb.Add(nil, server.name, "FAIL", "REDACT", "REDACT_FORBIDDEN", utils.SafeErrorParam(target), utils.SafeErrorParam(targetmsgid), client.t("Could not delete message")) | ||
| } | ||
| return false | ||
| } | ||
|
|
||
| if target[0] != '#' { | ||
| // If this is a PM, we just removed the message from the buffer of the other party; | ||
| // now we have to remove it from the buffer of the client who sent the REDACT command | ||
|
Comment on lines
+2729
to
+2730
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Good catch |
||
| err := server.DeleteMessage(client.Nick(), targetmsgid, accountName) | ||
|
|
||
| if err != nil { | ||
| client.server.logger.Error("internal", fmt.Sprintf("Private message %s is not deletable by %s from their own buffer's even though we just deleted it from %s's. This is a bug, please report it in details.", targetmsgid, client.Nick(), target), client.Nick()) | ||
| isOper := client.HasRoleCapabs("history") | ||
| if isOper { | ||
| rb.Add(nil, server.name, "FAIL", "REDACT", "REDACT_FORBIDDEN", utils.SafeErrorParam(target), utils.SafeErrorParam(targetmsgid), fmt.Sprintf(client.t("Error deleting message: %v"), err)) | ||
| } else { | ||
| rb.Add(nil, server.name, "FAIL", "REDACT", "REDACT_FORBIDDEN", utils.SafeErrorParam(target), utils.SafeErrorParam(targetmsgid), client.t("Error deleting message")) | ||
| } | ||
| } | ||
| } | ||
|
|
||
| for _, member := range members { | ||
| for _, session := range member.Sessions() { | ||
| if session.capabilities.Has(caps.MessageRedaction) { | ||
| session.sendFromClientInternal(false, time, msgid, details.nickMask, details.accountName, isBot, nil, "REDACT", target, targetmsgid, reason) | ||
| } else { | ||
| // If we wanted to send a fallback to clients which do not support | ||
| // draft/message-redaction, we would do it from here. | ||
| } | ||
| } | ||
| } | ||
| return false | ||
| } | ||
|
|
||
| func reportPersistenceStatus(client *Client, rb *ResponseBuffer, broadcast bool) { | ||
| settings := client.AccountSettings() | ||
| serverSetting := client.server.Config().Accounts.Multiclient.AlwaysOn | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🎉