2018-11-21 16:15:10 +08:00
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
2018-04-14 19:32:48 +08:00
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using System ;
using System.Collections.Generic ;
using System.Collections.ObjectModel ;
using System.Linq ;
using osu.Framework.Allocation ;
using osu.Framework.Configuration ;
using osu.Framework.Graphics ;
using osu.Framework.Logging ;
using osu.Framework.Threading ;
using osu.Game.Online.API ;
using osu.Game.Online.API.Requests ;
using osu.Game.Users ;
namespace osu.Game.Online.Chat
{
/// <summary>
/// Manages everything channel related
/// </summary>
public class ChannelManager : Component , IOnlineComponent
{
/// <summary>
/// The channels the player joins on startup
/// </summary>
private readonly string [ ] defaultChannels =
{
@"#lazer" ,
@"#osu" ,
@"#lobby"
} ;
/// <summary>
/// The currently opened channel
/// </summary>
public Bindable < Channel > CurrentChannel { get ; } = new Bindable < Channel > ( ) ;
/// <summary>
/// The Channels the player has joined
/// </summary>
2018-11-13 14:20:40 +08:00
public ObservableCollection < Channel > JoinedChannels { get ; } = new ObservableCollection < Channel > ( ) ; //todo: should be publicly readonly
2018-04-14 19:32:48 +08:00
/// <summary>
/// The channels available for the player to join
/// </summary>
2018-11-13 14:20:40 +08:00
public ObservableCollection < Channel > AvailableChannels { get ; } = new ObservableCollection < Channel > ( ) ; //todo: should be publicly readonly
2018-04-14 19:32:48 +08:00
2018-04-19 02:46:42 +08:00
private IAPIProvider api ;
2018-04-14 19:32:48 +08:00
private ScheduledDelegate fetchMessagesScheduleder ;
2018-09-14 11:06:04 +08:00
public ChannelManager ( )
{
CurrentChannel . ValueChanged + = currentChannelChanged ;
}
2018-07-24 10:54:11 +08:00
/// <summary>
/// Opens a channel or switches to the channel if already opened.
/// </summary>
/// <exception cref="ChannelNotFoundException">If the name of the specifed channel was not found this exception will be thrown.</exception>
/// <param name="name"></param>
2018-04-14 19:32:48 +08:00
public void OpenChannel ( string name )
{
if ( name = = null )
throw new ArgumentNullException ( nameof ( name ) ) ;
2018-11-14 12:19:20 +08:00
CurrentChannel . Value = AvailableChannels . FirstOrDefault ( c = > c . Name = = name ) ? ? throw new ChannelNotFoundException ( name ) ;
2018-04-14 19:32:48 +08:00
}
2018-07-24 10:54:11 +08:00
/// <summary>
/// Opens a new private channel.
/// </summary>
2018-07-24 11:14:33 +08:00
/// <param name="user">The user the private channel is opened with.</param>
2018-07-24 10:54:11 +08:00
public void OpenPrivateChannel ( User user )
2018-04-14 19:32:48 +08:00
{
if ( user = = null )
throw new ArgumentNullException ( nameof ( user ) ) ;
2018-11-13 14:20:40 +08:00
CurrentChannel . Value = JoinedChannels . FirstOrDefault ( c = > c . Type = = ChannelType . PM & & c . Users . Count = = 1 & & c . Users . Any ( u = > u . Id = = user . Id ) )
2018-11-21 19:31:47 +08:00
? ? new Channel { Name = user . Username , Users = { user } , Type = ChannelType . PM } ;
2018-04-14 19:32:48 +08:00
}
2018-11-14 12:19:20 +08:00
private void currentChannelChanged ( Channel channel ) = > JoinChannel ( channel ) ;
2018-11-13 16:24:11 +08:00
/// <summary>
/// Ensure we run post actions in sequence, once at a time.
/// </summary>
private readonly Queue < Action > postQueue = new Queue < Action > ( ) ;
2018-04-14 19:32:48 +08:00
/// <summary>
/// Posts a message to the currently opened channel.
/// </summary>
/// <param name="text">The message text that is going to be posted</param>
/// <param name="isAction">Is true if the message is an action, e.g.: user is currently eating </param>
public void PostMessage ( string text , bool isAction = false )
{
if ( CurrentChannel . Value = = null )
return ;
2018-07-10 03:00:39 +08:00
var currentChannel = CurrentChannel . Value ;
2018-11-13 16:24:11 +08:00
void dequeueAndRun ( )
2018-04-14 19:32:48 +08:00
{
2018-11-13 16:24:11 +08:00
if ( postQueue . Count > 0 )
postQueue . Dequeue ( ) . Invoke ( ) ;
2018-04-14 19:32:48 +08:00
}
2018-11-13 16:24:11 +08:00
postQueue . Enqueue ( ( ) = >
2018-04-14 19:32:48 +08:00
{
2018-11-13 16:24:11 +08:00
if ( ! api . IsLoggedIn )
{
currentChannel . AddNewMessages ( new ErrorMessage ( "Please sign in to participate in chat!" ) ) ;
return ;
}
2018-04-14 19:32:48 +08:00
2018-11-13 16:24:11 +08:00
var message = new LocalEchoMessage
{
Sender = api . LocalUser . Value ,
Timestamp = DateTimeOffset . Now ,
ChannelId = CurrentChannel . Value . Id ,
IsAction = isAction ,
Content = text
} ;
2018-04-14 19:32:48 +08:00
2018-11-13 16:24:11 +08:00
currentChannel . AddLocalEcho ( message ) ;
// if this is a PM and the first message, we need to do a special request to create the PM channel
if ( currentChannel . Type = = ChannelType . PM & & ! currentChannel . Joined )
{
var createNewPrivateMessageRequest = new CreateNewPrivateMessageRequest ( currentChannel . Users . First ( ) , message ) ;
2018-11-14 12:59:02 +08:00
2018-11-13 16:24:11 +08:00
createNewPrivateMessageRequest . Success + = createRes = >
{
currentChannel . Id = createRes . ChannelID ;
currentChannel . ReplaceMessage ( message , createRes . Message ) ;
dequeueAndRun ( ) ;
} ;
2018-11-14 12:59:02 +08:00
2018-11-13 16:24:11 +08:00
createNewPrivateMessageRequest . Failure + = exception = >
{
Logger . Error ( exception , "Posting message failed." ) ;
currentChannel . ReplaceMessage ( message , null ) ;
dequeueAndRun ( ) ;
} ;
api . Queue ( createNewPrivateMessageRequest ) ;
return ;
}
var req = new PostMessageRequest ( message ) ;
2018-11-14 12:59:02 +08:00
2018-11-13 16:24:11 +08:00
req . Success + = m = >
{
currentChannel . ReplaceMessage ( message , m ) ;
dequeueAndRun ( ) ;
} ;
2018-11-14 12:59:02 +08:00
2018-11-13 16:24:11 +08:00
req . Failure + = exception = >
{
Logger . Error ( exception , "Posting message failed." ) ;
currentChannel . ReplaceMessage ( message , null ) ;
dequeueAndRun ( ) ;
} ;
2018-11-14 12:59:02 +08:00
2018-11-13 16:24:11 +08:00
api . Queue ( req ) ;
} ) ;
// always run if the queue is empty
if ( postQueue . Count = = 1 )
dequeueAndRun ( ) ;
2018-04-14 19:32:48 +08:00
}
2018-07-24 11:14:33 +08:00
/// <summary>
/// Posts a command locally. Commands like /help will result in a help message written in the current channel.
/// </summary>
/// <param name="text">the text containing the command identifier and command parameters.</param>
2018-04-14 19:32:48 +08:00
public void PostCommand ( string text )
{
if ( CurrentChannel . Value = = null )
return ;
var parameters = text . Split ( new [ ] { ' ' } , 2 ) ;
string command = parameters [ 0 ] ;
string content = parameters . Length = = 2 ? parameters [ 1 ] : string . Empty ;
switch ( command )
{
case "me" :
if ( string . IsNullOrWhiteSpace ( content ) )
{
CurrentChannel . Value . AddNewMessages ( new ErrorMessage ( "Usage: /me [action]" ) ) ;
break ;
}
PostMessage ( content , true ) ;
break ;
case "help" :
CurrentChannel . Value . AddNewMessages ( new InfoMessage ( "Supported commands: /help, /me [action]" ) ) ;
break ;
default :
CurrentChannel . Value . AddNewMessages ( new ErrorMessage ( $@"""/{command}"" is not supported! For a list of supported commands see /help" ) ) ;
break ;
}
}
private void handleChannelMessages ( IEnumerable < Message > messages )
{
var channels = JoinedChannels . ToList ( ) ;
2018-11-12 19:41:10 +08:00
foreach ( var group in messages . GroupBy ( m = > m . ChannelId ) )
2018-04-14 19:32:48 +08:00
channels . Find ( c = > c . Id = = group . Key ) ? . AddNewMessages ( group . ToArray ( ) ) ;
}
2018-11-13 16:24:11 +08:00
private void initializeChannels ( )
2018-04-14 19:32:48 +08:00
{
var req = new ListChannelsRequest ( ) ;
2018-11-13 16:24:11 +08:00
var joinDefaults = JoinedChannels . Count = = 0 ;
2018-11-13 14:20:40 +08:00
2018-04-14 19:32:48 +08:00
req . Success + = channels = >
{
2018-07-24 23:51:20 +08:00
foreach ( var channel in channels )
{
2018-11-21 16:15:10 +08:00
var ch = getChannel ( channel , addToAvailable : true ) ;
2018-07-24 23:51:20 +08:00
// join any channels classified as "defaults"
2018-11-13 16:24:11 +08:00
if ( joinDefaults & & defaultChannels . Any ( c = > c . Equals ( channel . Name , StringComparison . OrdinalIgnoreCase ) ) )
2018-11-21 16:15:10 +08:00
JoinChannel ( ch ) ;
2018-07-24 23:51:20 +08:00
}
2018-04-14 19:32:48 +08:00
} ;
2018-07-24 10:54:11 +08:00
req . Failure + = error = >
{
Logger . Error ( error , "Fetching channel list failed" ) ;
2018-11-13 16:24:11 +08:00
initializeChannels ( ) ;
2018-07-24 10:54:11 +08:00
} ;
2018-04-14 19:32:48 +08:00
api . Queue ( req ) ;
}
2018-07-30 03:40:43 +08:00
/// <summary>
/// Fetches inital messages of a channel
///
/// TODO: remove this when the API supports returning initial fetch messages for more than one channel by specifying the last message id per channel instead of one last message id globally.
/// right now it caps out at 50 messages and therefore only returns one channel's worth of content.
/// </summary>
/// <param name="channel">The channel </param>
2018-11-13 14:20:40 +08:00
private void fetchInitalMessages ( Channel channel )
2018-07-30 03:40:43 +08:00
{
2018-11-13 16:24:11 +08:00
if ( channel . Id < = 0 ) return ;
2018-11-12 19:41:10 +08:00
var fetchInitialMsgReq = new GetMessagesRequest ( channel ) ;
2018-11-13 16:24:11 +08:00
fetchInitialMsgReq . Success + = messages = >
{
handleChannelMessages ( messages ) ;
2018-11-14 12:19:20 +08:00
channel . MessagesLoaded = true ; // this will mark the channel as having received messages even if there were none.
2018-11-13 16:24:11 +08:00
} ;
2018-07-30 03:40:43 +08:00
api . Queue ( fetchInitialMsgReq ) ;
}
2018-11-21 16:15:10 +08:00
/// <summary>
/// Find an existing channel instance for the provided channel. Lookup is performed basd on ID.
/// The provided channel may be used if an existing instance is not found.
/// </summary>
/// <param name="lookup">A candidate channel to be used for lookup or permanently on lookup failure.</param>
/// <param name="addToAvailable">Whether the channel should be added to <see cref="AvailableChannels"/> if not already.</param>
/// <param name="addToJoined">Whether the channel should be added to <see cref="JoinedChannels"/> if not already.</param>
/// <returns>The found channel.</returns>
private Channel getChannel ( Channel lookup , bool addToAvailable = false , bool addToJoined = false )
2018-11-13 14:20:40 +08:00
{
2018-11-21 16:15:10 +08:00
Channel found = null ;
2018-11-13 14:20:40 +08:00
2018-11-21 16:15:10 +08:00
var available = AvailableChannels . FirstOrDefault ( c = > c . Id = = lookup . Id ) ;
if ( available ! = null )
found = available ;
2018-11-13 14:20:40 +08:00
2018-11-21 16:15:10 +08:00
var joined = JoinedChannels . FirstOrDefault ( c = > c . Id = = lookup . Id ) ;
if ( found = = null & & joined ! = null )
found = joined ;
if ( found = = null )
2018-11-13 14:20:40 +08:00
{
2018-11-21 16:15:10 +08:00
found = lookup ;
// if we're using a channel object from the server, we want to remove ourselves from the users list.
// this is because we check the first user in the channel to display a name/icon on tabs for now.
var foundSelf = found . Users . FirstOrDefault ( u = > u . Id = = api . LocalUser . Value . Id ) ;
2018-11-13 14:20:40 +08:00
if ( foundSelf ! = null )
2018-11-21 16:15:10 +08:00
found . Users . Remove ( foundSelf ) ;
}
if ( joined = = null & & addToJoined ) JoinedChannels . Add ( found ) ;
if ( available = = null & & addToAvailable ) AvailableChannels . Add ( found ) ;
return found ;
}
2018-11-13 14:20:40 +08:00
2018-11-21 16:15:10 +08:00
/// <summary>
/// Joins a channel if it has not already been joined.
/// </summary>
/// <param name="channel">The channel to join.</param>
/// <param name="alreadyJoined">Whether the channel has already been joined server-side. Will skip a join request.</param>
/// <returns>The joined channel. Note that this may not match the parameter channel as it is a backed object.</returns>
public Channel JoinChannel ( Channel channel , bool alreadyJoined = false )
{
if ( channel = = null ) return null ;
2018-11-13 14:20:40 +08:00
2018-11-21 16:15:10 +08:00
channel = getChannel ( channel , addToJoined : true ) ;
// ensure we are joined to the channel
if ( ! channel . Joined . Value )
{
if ( ! alreadyJoined & & channel . Type = = ChannelType . Public )
2018-11-13 14:20:40 +08:00
{
var req = new JoinChannelRequest ( channel , api . LocalUser ) ;
2018-11-21 16:15:10 +08:00
req . Success + = ( ) = > JoinChannel ( channel , true ) ;
2018-11-13 14:20:40 +08:00
req . Failure + = ex = > LeaveChannel ( channel ) ;
api . Queue ( req ) ;
2018-11-21 16:15:10 +08:00
return channel ;
2018-11-13 14:20:40 +08:00
}
2018-11-21 16:15:10 +08:00
channel . Joined . Value = true ;
2018-11-13 14:20:40 +08:00
}
if ( CurrentChannel . Value = = null )
CurrentChannel . Value = channel ;
2018-11-13 16:24:11 +08:00
if ( ! channel . MessagesLoaded )
2018-11-13 14:20:40 +08:00
{
// let's fetch a small number of messages to bring us up-to-date with the backlog.
fetchInitalMessages ( channel ) ;
}
2018-11-21 16:15:10 +08:00
return channel ;
2018-11-13 14:20:40 +08:00
}
public void LeaveChannel ( Channel channel )
{
if ( channel = = null ) return ;
if ( channel = = CurrentChannel . Value ) CurrentChannel . Value = null ;
JoinedChannels . Remove ( channel ) ;
if ( channel . Joined . Value )
{
api . Queue ( new LeaveChannelRequest ( channel , api . LocalUser ) ) ;
channel . Joined . Value = false ;
}
}
2018-04-14 19:32:48 +08:00
public void APIStateChanged ( APIAccess api , APIState state )
{
switch ( state )
{
case APIState . Online :
2018-11-13 14:20:40 +08:00
fetchUpdates ( ) ;
2018-04-14 19:32:48 +08:00
break ;
default :
fetchMessagesScheduleder ? . Cancel ( ) ;
2018-07-24 10:54:11 +08:00
fetchMessagesScheduleder = null ;
2018-04-14 19:32:48 +08:00
break ;
}
}
2018-11-13 14:20:40 +08:00
private long lastMessageId ;
private const int update_poll_interval = 1000 ;
2018-11-13 16:24:11 +08:00
private bool channelsInitialised ;
2018-11-13 14:20:40 +08:00
private void fetchUpdates ( )
{
fetchMessagesScheduleder ? . Cancel ( ) ;
fetchMessagesScheduleder = Scheduler . AddDelayed ( ( ) = >
{
var fetchReq = new GetUpdatesRequest ( lastMessageId ) ;
fetchReq . Success + = updates = >
{
if ( updates ? . Presence ! = null )
{
foreach ( var channel in updates . Presence )
{
2018-11-21 16:15:10 +08:00
// we received this from the server so should mark the channel already joined.
JoinChannel ( channel , true ) ;
2018-11-13 16:24:11 +08:00
}
2018-11-13 14:20:40 +08:00
//todo: handle left channels
handleChannelMessages ( updates . Messages ) ;
foreach ( var group in updates . Messages . GroupBy ( m = > m . ChannelId ) )
JoinedChannels . FirstOrDefault ( c = > c . Id = = group . Key ) ? . AddNewMessages ( group . ToArray ( ) ) ;
lastMessageId = updates . Messages . LastOrDefault ( ) ? . Id ? ? lastMessageId ;
}
2018-11-21 16:14:48 +08:00
if ( ! channelsInitialised )
{
channelsInitialised = true ;
// we want this to run after the first presence so we can see if the user is in any channels already.
initializeChannels ( ) ;
}
2018-11-13 14:20:40 +08:00
fetchUpdates ( ) ;
} ;
fetchReq . Failure + = delegate { fetchUpdates ( ) ; } ;
api . Queue ( fetchReq ) ;
} , update_poll_interval ) ;
}
2018-04-14 19:32:48 +08:00
[BackgroundDependencyLoader]
private void load ( IAPIProvider api )
{
2018-04-19 02:46:42 +08:00
this . api = api ;
2018-04-14 19:32:48 +08:00
api . Register ( this ) ;
}
}
2018-07-10 00:45:11 +08:00
2018-07-24 11:14:33 +08:00
/// <summary>
/// An exception thrown when a channel could not been found.
/// </summary>
2018-07-10 00:45:11 +08:00
public class ChannelNotFoundException : Exception
{
public ChannelNotFoundException ( string channelName )
: base ( $"A channel with the name {channelName} could not be found." )
{
}
}
2018-04-14 19:32:48 +08:00
}