2018-04-13 17:19:50 +08:00
|
|
|
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using OpenTK;
|
|
|
|
|
using OpenTK.Graphics;
|
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Framework.Configuration;
|
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
|
using osu.Framework.Graphics.Shapes;
|
|
|
|
|
using osu.Framework.Graphics.UserInterface;
|
2018-10-02 11:02:47 +08:00
|
|
|
|
using osu.Framework.Input.Events;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Framework.Threading;
|
|
|
|
|
using osu.Game.Configuration;
|
|
|
|
|
using osu.Game.Graphics;
|
|
|
|
|
using osu.Game.Graphics.Containers;
|
|
|
|
|
using osu.Game.Graphics.UserInterface;
|
|
|
|
|
using osu.Game.Online.API;
|
|
|
|
|
using osu.Game.Online.API.Requests;
|
|
|
|
|
using osu.Game.Online.Chat;
|
|
|
|
|
using osu.Game.Overlays.Chat;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Overlays
|
|
|
|
|
{
|
|
|
|
|
public class ChatOverlay : OsuFocusedOverlayContainer, IOnlineComponent
|
|
|
|
|
{
|
|
|
|
|
private const float textbox_height = 60;
|
|
|
|
|
private const float channel_selection_min_height = 0.3f;
|
|
|
|
|
|
|
|
|
|
private ScheduledDelegate messageRequest;
|
|
|
|
|
|
|
|
|
|
private readonly Container<DrawableChannel> currentChannelContainer;
|
|
|
|
|
|
|
|
|
|
private readonly LoadingAnimation loading;
|
|
|
|
|
|
|
|
|
|
private readonly FocusedTextBox textbox;
|
|
|
|
|
|
|
|
|
|
private APIAccess api;
|
|
|
|
|
|
|
|
|
|
private const int transition_length = 500;
|
|
|
|
|
|
|
|
|
|
public const float DEFAULT_HEIGHT = 0.4f;
|
|
|
|
|
|
|
|
|
|
public const float TAB_AREA_HEIGHT = 50;
|
|
|
|
|
|
2018-09-25 19:53:24 +08:00
|
|
|
|
private GetUpdatesRequest fetchReq;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
private readonly ChatTabControl channelTabs;
|
|
|
|
|
|
|
|
|
|
private readonly Container chatContainer;
|
|
|
|
|
private readonly Container tabsArea;
|
|
|
|
|
private readonly Box chatBackground;
|
|
|
|
|
private readonly Box tabBackground;
|
|
|
|
|
|
|
|
|
|
public Bindable<double> ChatHeight { get; set; }
|
|
|
|
|
|
|
|
|
|
public List<Channel> AvailableChannels { get; private set; } = new List<Channel>();
|
|
|
|
|
private readonly Container channelSelectionContainer;
|
|
|
|
|
private readonly ChannelSelectionOverlay channelSelection;
|
|
|
|
|
|
2018-09-26 13:01:15 +08:00
|
|
|
|
public override bool Contains(Vector2 screenSpacePos) => chatContainer.ReceivePositionalInputAt(screenSpacePos) || channelSelection.State == Visibility.Visible && channelSelection.ReceivePositionalInputAt(screenSpacePos);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
public ChatOverlay()
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both;
|
|
|
|
|
RelativePositionAxes = Axes.Both;
|
|
|
|
|
Anchor = Anchor.BottomLeft;
|
|
|
|
|
Origin = Anchor.BottomLeft;
|
|
|
|
|
|
|
|
|
|
const float padding = 5;
|
|
|
|
|
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
channelSelectionContainer = new Container
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Height = 1f - DEFAULT_HEIGHT,
|
|
|
|
|
Masking = true,
|
|
|
|
|
Children = new[]
|
|
|
|
|
{
|
|
|
|
|
channelSelection = new ChannelSelectionOverlay
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
chatContainer = new Container
|
|
|
|
|
{
|
|
|
|
|
Name = @"chat container",
|
|
|
|
|
Anchor = Anchor.BottomLeft,
|
|
|
|
|
Origin = Anchor.BottomLeft,
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Height = DEFAULT_HEIGHT,
|
|
|
|
|
Children = new[]
|
|
|
|
|
{
|
|
|
|
|
new Container
|
|
|
|
|
{
|
|
|
|
|
Name = @"chat area",
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Padding = new MarginPadding { Top = TAB_AREA_HEIGHT },
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
chatBackground = new Box
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
},
|
|
|
|
|
currentChannelContainer = new Container<DrawableChannel>
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Padding = new MarginPadding
|
|
|
|
|
{
|
|
|
|
|
Bottom = textbox_height
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
new Container
|
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.BottomLeft,
|
|
|
|
|
Origin = Anchor.BottomLeft,
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
Height = textbox_height,
|
|
|
|
|
Padding = new MarginPadding
|
|
|
|
|
{
|
|
|
|
|
Top = padding * 2,
|
|
|
|
|
Bottom = padding * 2,
|
|
|
|
|
Left = ChatLine.LEFT_PADDING + padding * 2,
|
|
|
|
|
Right = padding * 2,
|
|
|
|
|
},
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
textbox = new FocusedTextBox
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Height = 1,
|
|
|
|
|
PlaceholderText = "type your message",
|
|
|
|
|
Exit = () => State = Visibility.Hidden,
|
|
|
|
|
OnCommit = postMessage,
|
|
|
|
|
ReleaseFocusOnCommit = false,
|
|
|
|
|
HoldFocus = true,
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
loading = new LoadingAnimation(),
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
tabsArea = new Container
|
|
|
|
|
{
|
|
|
|
|
Name = @"tabs area",
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
Height = TAB_AREA_HEIGHT,
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
tabBackground = new Box
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Colour = Color4.Black,
|
|
|
|
|
},
|
|
|
|
|
channelTabs = new ChatTabControl
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
OnRequestLeave = removeChannel,
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
channelTabs.Current.ValueChanged += newChannel => CurrentChannel = newChannel;
|
|
|
|
|
channelTabs.ChannelSelectorActive.ValueChanged += value => channelSelection.State = value ? Visibility.Visible : Visibility.Hidden;
|
|
|
|
|
channelSelection.StateChanged += state =>
|
|
|
|
|
{
|
|
|
|
|
channelTabs.ChannelSelectorActive.Value = state == Visibility.Visible;
|
|
|
|
|
|
|
|
|
|
if (state == Visibility.Visible)
|
|
|
|
|
{
|
|
|
|
|
textbox.HoldFocus = false;
|
|
|
|
|
if (1f - ChatHeight.Value < channel_selection_min_height)
|
2018-05-02 17:26:23 +08:00
|
|
|
|
this.TransformBindableTo(ChatHeight, 1f - channel_selection_min_height, 800, Easing.OutQuint);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
textbox.HoldFocus = true;
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private double startDragChatHeight;
|
|
|
|
|
private bool isDragging;
|
|
|
|
|
|
|
|
|
|
public void OpenChannel(Channel channel) => addChannel(channel);
|
|
|
|
|
|
2018-10-02 11:02:47 +08:00
|
|
|
|
protected override bool OnDragStart(DragStartEvent e)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
isDragging = tabsArea.IsHovered;
|
|
|
|
|
|
|
|
|
|
if (!isDragging)
|
2018-10-02 11:02:47 +08:00
|
|
|
|
return base.OnDragStart(e);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
startDragChatHeight = ChatHeight.Value;
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2018-10-02 11:02:47 +08:00
|
|
|
|
protected override bool OnDrag(DragEvent e)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
if (isDragging)
|
|
|
|
|
{
|
2018-09-19 19:52:57 +08:00
|
|
|
|
double targetChatHeight = startDragChatHeight - (e.MousePosition.Y - e.MouseDownPosition.Y) / Parent.DrawSize.Y;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
// If the channel selection screen is shown, mind its minimum height
|
|
|
|
|
if (channelSelection.State == Visibility.Visible && targetChatHeight > 1f - channel_selection_min_height)
|
|
|
|
|
targetChatHeight = 1f - channel_selection_min_height;
|
|
|
|
|
|
|
|
|
|
ChatHeight.Value = targetChatHeight;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2018-10-02 11:02:47 +08:00
|
|
|
|
protected override bool OnDragEnd(DragEndEvent e)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
isDragging = false;
|
2018-10-02 11:02:47 +08:00
|
|
|
|
return base.OnDragEnd(e);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void APIStateChanged(APIAccess api, APIState state)
|
|
|
|
|
{
|
|
|
|
|
switch (state)
|
|
|
|
|
{
|
|
|
|
|
case APIState.Online:
|
|
|
|
|
initializeChannels();
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
messageRequest?.Cancel();
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override bool AcceptsFocus => true;
|
|
|
|
|
|
2018-10-02 11:02:47 +08:00
|
|
|
|
protected override void OnFocus(FocusEvent e)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
//this is necessary as textbox is masked away and therefore can't get focus :(
|
|
|
|
|
GetContainingInputManager().ChangeFocus(textbox);
|
2018-10-02 11:02:47 +08:00
|
|
|
|
base.OnFocus(e);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void PopIn()
|
|
|
|
|
{
|
|
|
|
|
this.MoveToY(0, transition_length, Easing.OutQuint);
|
|
|
|
|
this.FadeIn(transition_length, Easing.OutQuint);
|
|
|
|
|
|
|
|
|
|
textbox.HoldFocus = true;
|
|
|
|
|
base.PopIn();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void PopOut()
|
|
|
|
|
{
|
|
|
|
|
this.MoveToY(Height, transition_length, Easing.InSine);
|
|
|
|
|
this.FadeOut(transition_length, Easing.InSine);
|
|
|
|
|
|
|
|
|
|
textbox.HoldFocus = false;
|
|
|
|
|
base.PopOut();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(APIAccess api, OsuConfigManager config, OsuColour colours)
|
|
|
|
|
{
|
|
|
|
|
this.api = api;
|
|
|
|
|
api.Register(this);
|
|
|
|
|
|
|
|
|
|
ChatHeight = config.GetBindable<double>(OsuSetting.ChatDisplayHeight);
|
|
|
|
|
ChatHeight.ValueChanged += h =>
|
|
|
|
|
{
|
|
|
|
|
chatContainer.Height = (float)h;
|
|
|
|
|
channelSelectionContainer.Height = 1f - (float)h;
|
|
|
|
|
tabBackground.FadeTo(h == 1 ? 1 : 0.8f, 200);
|
|
|
|
|
};
|
|
|
|
|
ChatHeight.TriggerChange();
|
|
|
|
|
|
|
|
|
|
chatBackground.Colour = colours.ChatBlue;
|
|
|
|
|
}
|
|
|
|
|
|
2018-09-25 19:53:24 +08:00
|
|
|
|
private long lastMessageId;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
private readonly List<Channel> careChannels = new List<Channel>();
|
|
|
|
|
|
|
|
|
|
private readonly List<DrawableChannel> loadedChannels = new List<DrawableChannel>();
|
|
|
|
|
|
|
|
|
|
private void initializeChannels()
|
|
|
|
|
{
|
|
|
|
|
loading.Show();
|
|
|
|
|
|
|
|
|
|
messageRequest?.Cancel();
|
|
|
|
|
|
|
|
|
|
ListChannelsRequest req = new ListChannelsRequest();
|
|
|
|
|
req.Success += delegate (List<Channel> channels)
|
|
|
|
|
{
|
|
|
|
|
AvailableChannels = channels;
|
|
|
|
|
|
|
|
|
|
Scheduler.Add(delegate
|
|
|
|
|
{
|
2018-09-28 09:01:25 +08:00
|
|
|
|
//todo: decide how to handle default channels for a user now that they are saved server-side.
|
2018-09-28 18:33:35 +08:00
|
|
|
|
addChannel(channels.Find(c => c.Name == @"#lazer"));
|
|
|
|
|
addChannel(channels.Find(c => c.Name == @"#osu"));
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
channelSelection.OnRequestJoin = addChannel;
|
|
|
|
|
channelSelection.OnRequestLeave = removeChannel;
|
|
|
|
|
channelSelection.Sections = new[]
|
|
|
|
|
{
|
|
|
|
|
new ChannelSection
|
|
|
|
|
{
|
|
|
|
|
Header = "All Channels",
|
|
|
|
|
Channels = channels,
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
});
|
|
|
|
|
|
2018-09-25 19:53:24 +08:00
|
|
|
|
messageRequest = Scheduler.AddDelayed(fetchUpdates, 1000, true);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
api.Queue(req);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private Channel currentChannel;
|
|
|
|
|
|
|
|
|
|
protected Channel CurrentChannel
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return currentChannel;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
if (currentChannel == value) return;
|
|
|
|
|
|
|
|
|
|
if (value == null)
|
|
|
|
|
{
|
|
|
|
|
currentChannel = null;
|
|
|
|
|
textbox.Current.Disabled = true;
|
|
|
|
|
currentChannelContainer.Clear(false);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
currentChannel = value;
|
|
|
|
|
|
|
|
|
|
textbox.Current.Disabled = currentChannel.ReadOnly;
|
|
|
|
|
channelTabs.Current.Value = value;
|
|
|
|
|
|
|
|
|
|
var loaded = loadedChannels.Find(d => d.Channel == value);
|
|
|
|
|
if (loaded == null)
|
|
|
|
|
{
|
|
|
|
|
currentChannelContainer.FadeOut(500, Easing.OutQuint);
|
|
|
|
|
loading.Show();
|
|
|
|
|
|
|
|
|
|
loaded = new DrawableChannel(currentChannel);
|
|
|
|
|
loadedChannels.Add(loaded);
|
|
|
|
|
LoadComponentAsync(loaded, l =>
|
|
|
|
|
{
|
2018-09-26 18:15:02 +08:00
|
|
|
|
if (currentChannel.MessagesLoaded)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
loading.Hide();
|
|
|
|
|
|
|
|
|
|
currentChannelContainer.Clear(false);
|
|
|
|
|
currentChannelContainer.Add(loaded);
|
|
|
|
|
currentChannelContainer.FadeIn(500, Easing.OutQuint);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
currentChannelContainer.Clear(false);
|
|
|
|
|
currentChannelContainer.Add(loaded);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void addChannel(Channel channel)
|
|
|
|
|
{
|
|
|
|
|
if (channel == null) return;
|
|
|
|
|
|
|
|
|
|
// ReSharper disable once AccessToModifiedClosure
|
|
|
|
|
var existing = careChannels.Find(c => c.Id == channel.Id);
|
|
|
|
|
|
|
|
|
|
if (existing != null)
|
|
|
|
|
{
|
|
|
|
|
// if we already have this channel loaded, we don't want to make a second one.
|
|
|
|
|
channel = existing;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
careChannels.Add(channel);
|
|
|
|
|
channelTabs.AddItem(channel);
|
2018-09-25 19:53:24 +08:00
|
|
|
|
|
|
|
|
|
if (channel.Type == ChannelType.Public && !channel.Joined)
|
|
|
|
|
{
|
|
|
|
|
var req = new JoinChannelRequest(channel, api.LocalUser);
|
2018-09-26 18:15:02 +08:00
|
|
|
|
req.Success += () => addChannel(channel);
|
2018-09-25 19:53:24 +08:00
|
|
|
|
req.Failure += ex => removeChannel(channel);
|
|
|
|
|
api.Queue(req);
|
|
|
|
|
return;
|
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// let's fetch a small number of messages to bring us up-to-date with the backlog.
|
|
|
|
|
fetchInitialMessages(channel);
|
|
|
|
|
|
|
|
|
|
if (CurrentChannel == null)
|
|
|
|
|
CurrentChannel = channel;
|
|
|
|
|
|
|
|
|
|
channel.Joined.Value = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void removeChannel(Channel channel)
|
|
|
|
|
{
|
|
|
|
|
if (channel == null) return;
|
|
|
|
|
|
|
|
|
|
if (channel == CurrentChannel) CurrentChannel = null;
|
|
|
|
|
|
|
|
|
|
careChannels.Remove(channel);
|
|
|
|
|
loadedChannels.Remove(loadedChannels.Find(c => c.Channel == channel));
|
|
|
|
|
channelTabs.RemoveItem(channel);
|
|
|
|
|
|
2018-09-25 19:53:24 +08:00
|
|
|
|
api.Queue(new LeaveChannelRequest(channel, api.LocalUser));
|
2018-04-13 17:19:50 +08:00
|
|
|
|
channel.Joined.Value = false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void fetchInitialMessages(Channel channel)
|
|
|
|
|
{
|
2018-09-25 19:53:24 +08:00
|
|
|
|
var req = new GetMessagesRequest(channel);
|
|
|
|
|
req.Success += messages =>
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
channel.AddNewMessages(messages.ToArray());
|
2018-09-26 18:15:02 +08:00
|
|
|
|
if (channel == currentChannel)
|
|
|
|
|
loading.Hide();
|
2018-04-13 17:19:50 +08:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
api.Queue(req);
|
|
|
|
|
}
|
|
|
|
|
|
2018-09-25 19:53:24 +08:00
|
|
|
|
private void fetchUpdates()
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
if (fetchReq != null) return;
|
|
|
|
|
|
2018-09-25 19:53:24 +08:00
|
|
|
|
fetchReq = new GetUpdatesRequest(lastMessageId);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2018-09-25 19:53:24 +08:00
|
|
|
|
fetchReq.Success += updates =>
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2018-09-25 19:53:24 +08:00
|
|
|
|
if (updates?.Presence != null)
|
|
|
|
|
{
|
|
|
|
|
foreach (var channel in updates.Presence)
|
|
|
|
|
{
|
2018-09-27 19:04:22 +08:00
|
|
|
|
if (careChannels.Find(c => c.Id == channel.Id) == null)
|
|
|
|
|
{
|
|
|
|
|
channel.Joined.Value = true;
|
|
|
|
|
addChannel(channel);
|
|
|
|
|
}
|
2018-09-25 19:53:24 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-09-28 18:33:19 +08:00
|
|
|
|
foreach (var group in updates.Messages.GroupBy(m => m.ChannelId))
|
2018-09-25 19:53:24 +08:00
|
|
|
|
careChannels.Find(c => c.Id == group.Key)?.AddNewMessages(group.ToArray());
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2018-09-25 19:53:24 +08:00
|
|
|
|
lastMessageId = updates.Messages.LastOrDefault()?.Id ?? lastMessageId;
|
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
fetchReq = null;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
fetchReq.Failure += delegate
|
|
|
|
|
{
|
|
|
|
|
fetchReq = null;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
api.Queue(fetchReq);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void postMessage(TextBox textbox, bool newText)
|
|
|
|
|
{
|
|
|
|
|
var postText = textbox.Text;
|
|
|
|
|
|
|
|
|
|
textbox.Text = string.Empty;
|
|
|
|
|
|
|
|
|
|
if (string.IsNullOrWhiteSpace(postText))
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
var target = currentChannel;
|
|
|
|
|
|
|
|
|
|
if (target == null) return;
|
|
|
|
|
|
|
|
|
|
if (!api.IsLoggedIn)
|
|
|
|
|
{
|
|
|
|
|
target.AddNewMessages(new ErrorMessage("Please sign in to participate in chat!"));
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool isAction = false;
|
|
|
|
|
|
|
|
|
|
if (postText[0] == '/')
|
|
|
|
|
{
|
|
|
|
|
string[] parameters = postText.Substring(1).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.AddNewMessages(new ErrorMessage("Usage: /me [action]"));
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
isAction = true;
|
|
|
|
|
postText = content;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case "help":
|
|
|
|
|
currentChannel.AddNewMessages(new InfoMessage("Supported commands: /help, /me [action]"));
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
currentChannel.AddNewMessages(new ErrorMessage($@"""/{command}"" is not supported! For a list of supported commands see /help"));
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var message = new LocalEchoMessage
|
|
|
|
|
{
|
|
|
|
|
Sender = api.LocalUser.Value,
|
|
|
|
|
Timestamp = DateTimeOffset.Now,
|
2018-09-28 18:33:19 +08:00
|
|
|
|
ChannelId = target.Id,
|
2018-04-13 17:19:50 +08:00
|
|
|
|
IsAction = isAction,
|
|
|
|
|
Content = postText
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
var req = new PostMessageRequest(message);
|
|
|
|
|
|
|
|
|
|
target.AddLocalEcho(message);
|
|
|
|
|
req.Failure += e => target.ReplaceMessage(message, null);
|
|
|
|
|
req.Success += m => target.ReplaceMessage(message, m);
|
|
|
|
|
|
|
|
|
|
api.Queue(req);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|