// Copyright (c) 2007-2017 ppy Pty Ltd . // Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE using System.Collections.Generic; using System.Linq; using osu.Framework.IO.Network; using osu.Game.Online.Chat; namespace osu.Game.Online.API.Requests { public class GetMessagesRequest : APIRequest> { private readonly List channels; private long? since; public GetMessagesRequest(List channels, long? sinceId) { this.channels = channels; since = sinceId; } protected override WebRequest CreateWebRequest() { string channelString = string.Join(",", channels.Select(x => x.Id)); var req = base.CreateWebRequest(); req.AddParameter(@"channels", channelString); if (since.HasValue) req.AddParameter(@"since", since.Value.ToString()); return req; } protected override string Target => @"chat/messages"; } }