mirror of
https://github.com/1f349/dendrite.git
synced 2024-11-09 22:42:58 +00:00
e5e3350ce1
* Syncapi presence * Clientapi http presence handler * Why is this here? * Missing files * FederationAPI presence implementation * Add new presence stream * Pinecone update * Pinecone update * Add passing tests * Make linter happy * Add presence producer * Add presence config option * Set user to unavailable after x minutes * Only set currently_active if online Avoid unneeded presence updates when syncing * Tweaks * Query devices for last_active_ts Fixes & tweaks * Export SharedUsers/SharedUsers * Presence stream in MemoryStorage * Remove status_msg_nil * Fix sytest crashes * Make presence types const and use stringer for it * Change options to allow inbound/outbound presence * Fix option & typo * Update configs Co-authored-by: Neil Alexander <neilalexander@users.noreply.github.com>
76 lines
2.4 KiB
Go
76 lines
2.4 KiB
Go
// Copyright 2022 The Matrix.org Foundation C.I.C.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package types
|
|
|
|
import (
|
|
"strings"
|
|
"time"
|
|
|
|
"github.com/matrix-org/gomatrixserverlib"
|
|
)
|
|
|
|
//go:generate stringer -type=Presence -linecomment
|
|
type Presence uint8
|
|
|
|
const (
|
|
PresenceUnavailable Presence = iota + 1 // unavailable
|
|
PresenceOnline // online
|
|
PresenceOffline // offline
|
|
)
|
|
|
|
// PresenceFromString returns the integer representation of the given input presence.
|
|
// Returns false for ok, if input is not a valid presence value.
|
|
func PresenceFromString(input string) (p Presence, ok bool) {
|
|
for i := 0; i < len(_Presence_index)-1; i++ {
|
|
l, r := _Presence_index[i], _Presence_index[i+1]
|
|
if strings.EqualFold(input, _Presence_name[l:r]) {
|
|
return Presence(i + 1), true
|
|
}
|
|
}
|
|
return 0, false
|
|
}
|
|
|
|
type PresenceInternal struct {
|
|
ClientFields PresenceClientResponse
|
|
StreamPos StreamPosition `json:"-"`
|
|
UserID string `json:"-"`
|
|
LastActiveTS gomatrixserverlib.Timestamp `json:"-"`
|
|
Presence Presence `json:"-"`
|
|
}
|
|
|
|
// Equals compares p1 with p2.
|
|
func (p1 *PresenceInternal) Equals(p2 *PresenceInternal) bool {
|
|
return p1.ClientFields.Presence == p2.ClientFields.Presence &&
|
|
p1.ClientFields.StatusMsg == p2.ClientFields.StatusMsg &&
|
|
p1.UserID == p2.UserID
|
|
}
|
|
|
|
// CurrentlyActive returns the current active state.
|
|
func (p *PresenceInternal) CurrentlyActive() bool {
|
|
return time.Since(p.LastActiveTS.Time()).Minutes() < 5
|
|
}
|
|
|
|
// LastActiveAgo returns the time since the LastActiveTS in milliseconds.
|
|
func (p *PresenceInternal) LastActiveAgo() int64 {
|
|
return time.Since(p.LastActiveTS.Time()).Milliseconds()
|
|
}
|
|
|
|
type PresenceClientResponse struct {
|
|
CurrentlyActive *bool `json:"currently_active,omitempty"`
|
|
LastActiveAgo int64 `json:"last_active_ago,omitempty"`
|
|
Presence string `json:"presence"`
|
|
StatusMsg *string `json:"status_msg,omitempty"`
|
|
}
|