2020-04-24 19:50:28 +00:00
using System ;
2019-04-26 15:14:20 +00:00
using System.Linq ;
2019-04-19 18:48:37 +00:00
using System.Threading.Tasks ;
2020-02-01 12:03:02 +00:00
2020-04-24 19:50:28 +00:00
using DSharpPlus ;
using DSharpPlus.Entities ;
2020-02-01 12:03:02 +00:00
2019-06-13 18:33:17 +00:00
using NodaTime ;
using NodaTime.Text ;
using NodaTime.TimeZones ;
2019-10-05 05:41:00 +00:00
2019-07-09 22:19:18 +00:00
using PluralKit.Core ;
2019-04-19 18:48:37 +00:00
2020-02-12 14:16:19 +00:00
namespace PluralKit.Bot
2019-04-19 18:48:37 +00:00
{
2020-02-01 12:03:02 +00:00
public class SystemEdit
2019-04-19 18:48:37 +00:00
{
2019-10-26 17:45:30 +00:00
private IDataStore _data ;
2019-10-05 05:41:00 +00:00
private EmbedService _embeds ;
2019-04-21 13:33:22 +00:00
2020-02-01 13:40:57 +00:00
public SystemEdit ( IDataStore data , EmbedService embeds )
2019-10-05 05:41:00 +00:00
{
2020-02-01 12:03:02 +00:00
_data = data ;
2019-10-05 05:41:00 +00:00
_embeds = embeds ;
2019-04-21 13:33:22 +00:00
}
2019-10-05 05:41:00 +00:00
public async Task Name ( Context ctx )
{
ctx . CheckSystem ( ) ;
2019-04-19 18:48:37 +00:00
2020-03-04 17:13:36 +00:00
if ( ctx . MatchFlag ( "c" , "clear" ) | | ctx . Match ( "clear" ) )
{
ctx . System . Name = null ;
await _data . SaveSystem ( ctx . System ) ;
await ctx . Reply ( $"{Emojis.Success} System name cleared." ) ;
return ;
}
2019-10-05 05:41:00 +00:00
var newSystemName = ctx . RemainderOrNull ( ) ;
2020-03-04 17:13:36 +00:00
if ( newSystemName = = null )
{
if ( ctx . System . Name ! = null )
await ctx . Reply ( $"Your system's name is currently **{ctx.System.Name.SanitizeMentions()}**. Type `pk;system name -clear` to clear it." ) ;
else
await ctx . Reply ( "Your system currently does not have a name. Type `pk;system name <name>` to set one." ) ;
return ;
}
2019-04-29 18:28:53 +00:00
if ( newSystemName ! = null & & newSystemName . Length > Limits . MaxSystemNameLength ) throw Errors . SystemNameTooLongError ( newSystemName . Length ) ;
2019-10-05 05:41:00 +00:00
ctx . System . Name = newSystemName ;
2019-10-26 17:45:30 +00:00
await _data . SaveSystem ( ctx . System ) ;
2020-03-04 17:13:36 +00:00
await ctx . Reply ( $"{Emojis.Success} System name changed." ) ;
2019-04-19 18:48:37 +00:00
}
2019-10-05 05:41:00 +00:00
public async Task Description ( Context ctx ) {
ctx . CheckSystem ( ) ;
2019-04-19 18:48:37 +00:00
2020-02-27 17:07:05 +00:00
if ( ctx . MatchFlag ( "c" , "clear" ) | | ctx . Match ( "clear" ) )
2020-02-23 11:45:05 +00:00
{
ctx . System . Description = null ;
await _data . SaveSystem ( ctx . System ) ;
await ctx . Reply ( $"{Emojis.Success} System description cleared." ) ;
return ;
}
2020-02-20 21:57:37 +00:00
var newDescription = ctx . RemainderOrNull ( ) ? . NormalizeLineEndSpacing ( ) ;
2020-02-23 11:45:05 +00:00
if ( newDescription = = null )
{
if ( ctx . System . Description = = null )
await ctx . Reply ( "Your system does not have a description set. To set one, type `pk;s description <description>`." ) ;
else if ( ctx . MatchFlag ( "r" , "raw" ) )
2020-03-04 17:13:36 +00:00
await ctx . Reply ( $"```\n{ctx.System.Description.SanitizeMentions()}\n```" ) ;
2020-02-23 11:45:05 +00:00
else
2020-04-24 19:50:28 +00:00
await ctx . Reply ( embed : new DiscordEmbedBuilder ( )
2020-02-23 11:45:05 +00:00
. WithTitle ( "System description" )
. WithDescription ( ctx . System . Description )
. WithFooter ( "To print the description with formatting, type `pk;s description -raw`. To clear it, type `pk;s description -clear`. To change it, type `pk;s description <new description>`." )
. Build ( ) ) ;
}
else
{
if ( newDescription . Length > Limits . MaxDescriptionLength ) throw Errors . DescriptionTooLongError ( newDescription . Length ) ;
ctx . System . Description = newDescription ;
await _data . SaveSystem ( ctx . System ) ;
await ctx . Reply ( $"{Emojis.Success} System description changed." ) ;
}
2019-04-19 18:48:37 +00:00
}
2019-10-05 05:41:00 +00:00
public async Task Tag ( Context ctx )
{
ctx . CheckSystem ( ) ;
2019-04-19 18:48:37 +00:00
2020-02-27 17:07:05 +00:00
if ( ctx . MatchFlag ( "c" , "clear" ) | | ctx . Match ( "clear" ) )
2020-02-22 23:52:28 +00:00
{
ctx . System . Tag = null ;
await _data . SaveSystem ( ctx . System ) ;
await ctx . Reply ( $"{Emojis.Success} System tag cleared." ) ;
} else if ( ! ctx . HasNext ( skipFlags : false ) )
{
if ( ctx . System . Tag = = null )
await ctx . Reply ( $"You currently have no system tag. To set one, type `pk;s tag <tag>`." ) ;
else
await ctx . Reply ( $"Your current system tag is `{ctx.System.Tag.SanitizeMentions()}`. To change it, type `pk;s tag <tag>`. To clear it, type `pk;s tag -clear`." ) ;
}
else
{
var newTag = ctx . RemainderOrNull ( skipFlags : false ) ;
if ( newTag ! = null )
if ( newTag . Length > Limits . MaxSystemTagLength )
throw Errors . SystemNameTooLongError ( newTag . Length ) ;
ctx . System . Tag = newTag ;
await _data . SaveSystem ( ctx . System ) ;
await ctx . Reply ( $"{Emojis.Success} System tag changed. Member names will now end with `{newTag.SanitizeMentions()}` when proxied." ) ;
}
2019-04-19 18:48:37 +00:00
}
2019-07-15 21:50:32 +00:00
2020-02-01 12:03:02 +00:00
public async Task Avatar ( Context ctx )
2019-07-19 12:21:16 +00:00
{
2019-10-05 05:41:00 +00:00
ctx . CheckSystem ( ) ;
2019-12-28 11:47:31 +00:00
2020-03-04 17:13:36 +00:00
if ( ctx . Match ( "clear" ) | | ctx . MatchFlag ( "c" , "clear" ) )
{
ctx . System . AvatarUrl = null ;
await _data . SaveSystem ( ctx . System ) ;
await ctx . Reply ( $"{Emojis.Success} System avatar cleared." ) ;
return ;
}
else if ( ctx . RemainderOrNull ( ) = = null & & ctx . Message . Attachments . Count = = 0 )
2019-12-28 11:47:31 +00:00
{
if ( ( ctx . System . AvatarUrl ? . Trim ( ) ? ? "" ) . Length > 0 )
{
2020-04-24 19:50:28 +00:00
var eb = new DiscordEmbedBuilder ( )
2019-12-28 11:47:31 +00:00
. WithTitle ( $"System avatar" )
. WithImageUrl ( ctx . System . AvatarUrl )
. WithDescription ( $"To clear, use `pk;system avatar clear`." ) ;
await ctx . Reply ( embed : eb . Build ( ) ) ;
}
else
throw new PKSyntaxError ( $"This system does not have an avatar set. Set one by attaching an image to this command, or by passing an image URL or @mention." ) ;
return ;
}
2019-10-05 05:41:00 +00:00
var member = await ctx . MatchUser ( ) ;
if ( member ! = null )
{
2020-05-01 15:38:16 +00:00
if ( member . AvatarHash = = null ) throw Errors . UserHasNoAvatar ;
2019-10-05 05:41:00 +00:00
ctx . System . AvatarUrl = member . GetAvatarUrl ( ImageFormat . Png , size : 256 ) ;
2019-10-26 17:45:30 +00:00
await _data . SaveSystem ( ctx . System ) ;
2019-07-19 12:21:16 +00:00
2020-04-24 19:50:28 +00:00
var embed = new DiscordEmbedBuilder ( ) . WithImageUrl ( ctx . System . AvatarUrl ) . Build ( ) ;
2019-10-05 05:41:00 +00:00
await ctx . Reply (
$"{Emojis.Success} System avatar changed to {member.Username}'s avatar! {Emojis.Warn} Please note that if {member.Username} changes their avatar, the system's avatar will need to be re-set." , embed : embed ) ;
}
else
{
2019-12-28 11:47:31 +00:00
// They can't both be null - otherwise we would've hit the conditional at the very top
2019-10-05 05:41:00 +00:00
string url = ctx . RemainderOrNull ( ) ? ? ctx . Message . Attachments . FirstOrDefault ( ) ? . ProxyUrl ;
2020-02-12 14:16:19 +00:00
await ctx . BusyIndicator ( ( ) = > AvatarUtils . VerifyAvatarOrThrow ( url ) ) ;
2019-10-05 05:41:00 +00:00
ctx . System . AvatarUrl = url ;
2019-10-26 17:45:30 +00:00
await _data . SaveSystem ( ctx . System ) ;
2019-10-05 05:41:00 +00:00
2020-04-24 19:50:28 +00:00
var embed = url ! = null ? new DiscordEmbedBuilder ( ) . WithImageUrl ( url ) . Build ( ) : null ;
2019-12-28 11:47:31 +00:00
await ctx . Reply ( $"{Emojis.Success} System avatar changed." , embed : embed ) ;
2019-10-05 05:41:00 +00:00
}
2019-07-19 12:21:16 +00:00
}
2019-10-05 05:41:00 +00:00
public async Task Delete ( Context ctx ) {
ctx . CheckSystem ( ) ;
2019-07-15 21:50:32 +00:00
2019-10-05 05:41:00 +00:00
var msg = await ctx . Reply ( $"{Emojis.Warn} Are you sure you want to delete your system? If so, reply to this message with your system's ID (`{ctx.System.Hid}`).\n**Note: this action is permanent.**" ) ;
var reply = await ctx . AwaitMessage ( ctx . Channel , ctx . Author , timeout : TimeSpan . FromMinutes ( 1 ) ) ;
if ( reply . Content ! = ctx . System . Hid ) throw new PKError ( $"System deletion cancelled. Note that you must reply with your system ID (`{ctx.System.Hid}`) *verbatim*." ) ;
2019-07-15 21:50:32 +00:00
2019-10-26 17:45:30 +00:00
await _data . DeleteSystem ( ctx . System ) ;
2019-10-05 05:41:00 +00:00
await ctx . Reply ( $"{Emojis.Success} System deleted." ) ;
2019-07-15 21:50:32 +00:00
}
2019-10-05 05:41:00 +00:00
2019-12-22 13:15:56 +00:00
public async Task SystemProxy ( Context ctx )
{
ctx . CheckSystem ( ) . CheckGuildContext ( ) ;
var gs = await _data . GetSystemGuildSettings ( ctx . System , ctx . Guild . Id ) ;
bool newValue ;
if ( ctx . Match ( "on" , "enabled" , "true" , "yes" ) ) newValue = true ;
else if ( ctx . Match ( "off" , "disabled" , "false" , "no" ) ) newValue = false ;
else if ( ctx . HasNext ( ) ) throw new PKSyntaxError ( "You must pass either \"on\" or \"off\"." ) ;
2020-02-27 17:06:13 +00:00
else
{
if ( gs . ProxyEnabled )
await ctx . Reply ( "Proxying in this server is currently **enabled** for your system. To disable it, type `pk;system proxy off`." ) ;
else
await ctx . Reply ( "Proxying in this server is currently **disabled** for your system. To enable it, type `pk;system proxy on`." ) ;
return ;
}
2019-12-22 13:15:56 +00:00
gs . ProxyEnabled = newValue ;
2019-12-26 19:39:47 +00:00
await _data . SetSystemGuildSettings ( ctx . System , ctx . Guild . Id , gs ) ;
2019-12-22 13:15:56 +00:00
if ( newValue )
await ctx . Reply ( $"Message proxying in this server ({ctx.Guild.Name.EscapeMarkdown()}) is now **enabled** for your system." ) ;
else
await ctx . Reply ( $"Message proxying in this server ({ctx.Guild.Name.EscapeMarkdown()}) is now **disabled** for your system." ) ;
}
2019-10-05 05:41:00 +00:00
2020-02-01 12:03:02 +00:00
public async Task SystemTimezone ( Context ctx )
2019-06-13 18:33:17 +00:00
{
2019-10-05 05:41:00 +00:00
if ( ctx . System = = null ) throw Errors . NoSystemError ;
2020-02-27 17:07:05 +00:00
if ( ctx . MatchFlag ( "c" , "clear" ) | | ctx . Match ( "clear" ) )
2019-06-13 18:33:17 +00:00
{
2019-10-05 05:41:00 +00:00
ctx . System . UiTz = "UTC" ;
2019-10-26 17:45:30 +00:00
await _data . SaveSystem ( ctx . System ) ;
2020-03-04 17:13:36 +00:00
await ctx . Reply ( $"{Emojis.Success} System time zone cleared (set to UTC)." ) ;
2019-06-13 18:33:17 +00:00
return ;
}
2020-02-22 23:57:46 +00:00
var zoneStr = ctx . RemainderOrNull ( ) ;
if ( zoneStr = = null )
{
await ctx . Reply (
$"Your current system time zone is set to **{ctx.System.UiTz}**. It is currently **{DateTimeFormats.ZonedDateTimeFormat.Format(SystemClock.Instance.GetCurrentInstant().InZone(ctx.System.Zone))}** in that time zone. To change your system time zone, type `pk;s tz <zone>`." ) ;
return ;
}
2019-06-13 18:33:17 +00:00
2019-10-05 05:41:00 +00:00
var zone = await FindTimeZone ( ctx , zoneStr ) ;
2019-06-13 18:33:17 +00:00
if ( zone = = null ) throw Errors . InvalidTimeZone ( zoneStr ) ;
var currentTime = SystemClock . Instance . GetCurrentInstant ( ) . InZone ( zone ) ;
2019-10-05 05:41:00 +00:00
var msg = await ctx . Reply (
2020-02-22 23:57:46 +00:00
$"This will change the system time zone to **{zone.Id}**. The current time is **{DateTimeFormats.ZonedDateTimeFormat.Format(currentTime)}**. Is this correct?" ) ;
2019-10-05 05:41:00 +00:00
if ( ! await ctx . PromptYesNo ( msg ) ) throw Errors . TimezoneChangeCancelled ;
ctx . System . UiTz = zone . Id ;
2019-10-26 17:45:30 +00:00
await _data . SaveSystem ( ctx . System ) ;
2019-06-13 18:33:17 +00:00
2020-02-22 23:57:46 +00:00
await ctx . Reply ( $"System time zone changed to **{zone.Id}**." ) ;
2019-06-13 18:33:17 +00:00
}
2020-01-11 15:49:20 +00:00
public async Task SystemPrivacy ( Context ctx )
{
ctx . CheckSystem ( ) ;
if ( ! ctx . HasNext ( ) )
{
string PrivacyLevelString ( PrivacyLevel level ) = > level switch
{
PrivacyLevel . Private = > "**Private** (visible only when queried by you)" ,
PrivacyLevel . Public = > "**Public** (visible to everyone)" ,
_ = > throw new ArgumentOutOfRangeException ( nameof ( level ) , level , null )
} ;
2020-04-24 19:50:28 +00:00
var eb = new DiscordEmbedBuilder ( )
2020-01-11 15:49:20 +00:00
. WithTitle ( "Current privacy settings for your system" )
. AddField ( "Description" , PrivacyLevelString ( ctx . System . DescriptionPrivacy ) )
. AddField ( "Member list" , PrivacyLevelString ( ctx . System . MemberListPrivacy ) )
. AddField ( "Current fronter(s)" , PrivacyLevelString ( ctx . System . FrontPrivacy ) )
. AddField ( "Front/switch history" , PrivacyLevelString ( ctx . System . FrontHistoryPrivacy ) )
. WithDescription ( "To edit privacy settings, use the command:\n`pk;system privacy <subject> <level>`\n\n- `subject` is one of `description`, `list`, `front` or `fronthistory`\n- `level` is either `public` or `private`." ) ;
await ctx . Reply ( embed : eb . Build ( ) ) ;
return ;
}
PrivacyLevel PopPrivacyLevel ( string subject , out string levelStr , out string levelExplanation )
{
if ( ctx . Match ( "public" , "show" , "shown" , "visible" ) )
{
levelStr = "public" ;
levelExplanation = "be able to query" ;
return PrivacyLevel . Public ;
}
if ( ctx . Match ( "private" , "hide" , "hidden" ) )
{
levelStr = "private" ;
levelExplanation = "*not* be able to query" ;
return PrivacyLevel . Private ;
}
if ( ! ctx . HasNext ( ) )
throw new PKSyntaxError ( $"You must pass a privacy level for `{subject}` (`public` or `private`)" ) ;
throw new PKSyntaxError ( $"Invalid privacy level `{ctx.PopArgument().SanitizeMentions()}` (must be `public` or `private`)." ) ;
}
string levelStr , levelExplanation , subjectStr ;
var subjectList = "`description`, `members`, `front` or `fronthistory`" ;
if ( ctx . Match ( "description" , "desc" , "text" , "info" ) )
{
subjectStr = "description" ;
ctx . System . DescriptionPrivacy = PopPrivacyLevel ( "description" , out levelStr , out levelExplanation ) ;
}
else if ( ctx . Match ( "members" , "memberlist" , "list" , "mlist" ) )
{
subjectStr = "member list" ;
ctx . System . MemberListPrivacy = PopPrivacyLevel ( "members" , out levelStr , out levelExplanation ) ;
}
else if ( ctx . Match ( "front" , "fronter" ) )
{
subjectStr = "fronter(s)" ;
ctx . System . FrontPrivacy = PopPrivacyLevel ( "front" , out levelStr , out levelExplanation ) ;
}
else if ( ctx . Match ( "switch" , "switches" , "fronthistory" , "fh" ) )
{
subjectStr = "front history" ;
ctx . System . FrontHistoryPrivacy = PopPrivacyLevel ( "fronthistory" , out levelStr , out levelExplanation ) ;
}
else
throw new PKSyntaxError ( $"Invalid privacy subject `{ctx.PopArgument().SanitizeMentions()}` (must be {subjectList})." ) ;
await _data . SaveSystem ( ctx . System ) ;
await ctx . Reply ( $"System {subjectStr} privacy has been set to **{levelStr}**. Other accounts will now {levelExplanation} your system {subjectStr}." ) ;
}
2019-10-05 05:41:00 +00:00
public async Task < DateTimeZone > FindTimeZone ( Context ctx , string zoneStr ) {
2019-06-13 21:42:39 +00:00
// First, if we're given a flag emoji, we extract the flag emoji code from it.
2020-02-12 14:16:19 +00:00
zoneStr = Core . StringUtils . ExtractCountryFlag ( zoneStr ) ? ? zoneStr ;
2019-06-13 21:42:39 +00:00
// Then, we find all *locations* matching either the given country code or the country name.
var locations = TzdbDateTimeZoneSource . Default . Zone1970Locations ;
var matchingLocations = locations . Where ( l = > l . Countries . Any ( c = >
string . Equals ( c . Code , zoneStr , StringComparison . InvariantCultureIgnoreCase ) | |
string . Equals ( c . Name , zoneStr , StringComparison . InvariantCultureIgnoreCase ) ) ) ;
// Then, we find all (unique) time zone IDs that match.
var matchingZones = matchingLocations . Select ( l = > DateTimeZoneProviders . Tzdb . GetZoneOrNull ( l . ZoneId ) )
. Distinct ( ) . ToList ( ) ;
// If the set of matching zones is empty (ie. we didn't find anything), we try a few other things.
if ( matchingZones . Count = = 0 )
{
// First, we try to just find the time zone given directly and return that.
var givenZone = DateTimeZoneProviders . Tzdb . GetZoneOrNull ( zoneStr ) ;
if ( givenZone ! = null ) return givenZone ;
// If we didn't find anything there either, we try parsing the string as an offset, then
// find all possible zones that match that offset. For an offset like UTC+2, this doesn't *quite*
// work, since there are 57(!) matching zones (as of 2019-06-13) - but for less populated time zones
// this could work nicely.
var inputWithoutUtc = zoneStr . Replace ( "UTC" , "" ) . Replace ( "GMT" , "" ) ;
var res = OffsetPattern . CreateWithInvariantCulture ( "+H" ) . Parse ( inputWithoutUtc ) ;
if ( ! res . Success ) res = OffsetPattern . CreateWithInvariantCulture ( "+H:mm" ) . Parse ( inputWithoutUtc ) ;
// If *this* didn't parse correctly, fuck it, bail.
if ( ! res . Success ) return null ;
var offset = res . Value ;
// To try to reduce the count, we go by locations from the 1970+ database instead of just the full database
// This elides regions that have been identical since 1970, omitting small distinctions due to Ancient History(tm).
var allZones = TzdbDateTimeZoneSource . Default . Zone1970Locations . Select ( l = > l . ZoneId ) . Distinct ( ) ;
matchingZones = allZones . Select ( z = > DateTimeZoneProviders . Tzdb . GetZoneOrNull ( z ) )
. Where ( z = > z . GetUtcOffset ( SystemClock . Instance . GetCurrentInstant ( ) ) = = offset ) . ToList ( ) ;
}
// If we have a list of viable time zones, we ask the user which is correct.
// If we only have one, return that one.
if ( matchingZones . Count = = 1 )
return matchingZones . First ( ) ;
// Otherwise, prompt and return!
2019-10-05 05:41:00 +00:00
return await ctx . Choose ( "There were multiple matches for your time zone query. Please select the region that matches you the closest:" , matchingZones ,
2019-06-13 21:42:39 +00:00
z = >
{
if ( TzdbDateTimeZoneSource . Default . Aliases . Contains ( z . Id ) )
return $"**{z.Id}**, {string.Join(" , ", TzdbDateTimeZoneSource.Default.Aliases[z.Id])}" ;
return $"**{z.Id}**" ;
} ) ;
2019-04-19 18:48:37 +00:00
}
}
2020-02-01 12:03:02 +00:00
}