2019-06-16 19:42:13 +02:00
|
|
|
// gomuks - A terminal Matrix client written in Go.
|
2020-04-19 17:10:14 +02:00
|
|
|
// Copyright (C) 2020 Tulir Asokan
|
2019-06-16 19:42:13 +02:00
|
|
|
//
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Affero General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program 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 Affero General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
|
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
package messages
|
|
|
|
|
|
|
|
import (
|
2022-04-15 11:53:09 +02:00
|
|
|
"go.mau.fi/mauview"
|
|
|
|
"go.mau.fi/tcell"
|
|
|
|
|
2020-04-16 18:27:35 +02:00
|
|
|
"maunium.net/go/gomuks/matrix/muksevt"
|
2019-06-16 19:42:13 +02:00
|
|
|
|
|
|
|
"maunium.net/go/gomuks/config"
|
|
|
|
)
|
|
|
|
|
|
|
|
type RedactedMessage struct{}
|
|
|
|
|
2020-04-16 18:27:35 +02:00
|
|
|
func NewRedactedMessage(evt *muksevt.Event, displayname string) *UIMessage {
|
2019-06-17 11:27:31 +02:00
|
|
|
return newUIMessage(evt, displayname, &RedactedMessage{})
|
2019-06-16 19:42:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (msg *RedactedMessage) Clone() MessageRenderer {
|
|
|
|
return &RedactedMessage{}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (msg *RedactedMessage) NotificationContent() string {
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
func (msg *RedactedMessage) PlainText() string {
|
|
|
|
return "[redacted]"
|
|
|
|
}
|
|
|
|
|
|
|
|
func (msg *RedactedMessage) String() string {
|
|
|
|
return "&messages.RedactedMessage{}"
|
|
|
|
}
|
|
|
|
|
|
|
|
func (msg *RedactedMessage) CalculateBuffer(prefs config.UserPreferences, width int, uiMsg *UIMessage) {
|
|
|
|
}
|
|
|
|
|
|
|
|
func (msg *RedactedMessage) Height() int {
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
const RedactionChar = '█'
|
|
|
|
const RedactionMaxWidth = 40
|
2022-04-15 11:53:09 +02:00
|
|
|
|
2019-06-16 19:42:13 +02:00
|
|
|
var RedactionStyle = tcell.StyleDefault.Foreground(tcell.NewRGBColor(50, 0, 0))
|
|
|
|
|
2022-04-15 14:14:18 +02:00
|
|
|
func (msg *RedactedMessage) Draw(screen mauview.Screen, _ *UIMessage) {
|
2019-06-16 19:42:13 +02:00
|
|
|
w, _ := screen.Size()
|
|
|
|
for x := 0; x < w && x < RedactionMaxWidth; x++ {
|
|
|
|
screen.SetContent(x, 0, RedactionChar, nil, RedactionStyle)
|
|
|
|
}
|
|
|
|
}
|