summaryrefslogtreecommitdiff
path: root/DiscordBot/Commands/FileHandler.cs
blob: e3cd82d723f7b952691cc76ed3bc85a1622ca4ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
using System;
using System.Linq;
using Discord.Commands;

namespace DiscordBot.Commands
{
    public class FileHandler : ModuleBase
    {
        //[Command("send"), Summary("fügt Helden hinzu")]
        public void AddChar()
        {
            var msg = Context.Message;
            if (msg.Attachments == null) throw new ArgumentException("Es wurde keine Datei angehängt");

            var attachments = msg.Attachments.ToList();

            if (!attachments.Any(x => x.Filename.EndsWith(".xml")))
                throw new ArgumentException("Es wurde kein xml Held mitgeschickt");

            foreach (var attachment in attachments.Where(x => x.Filename.EndsWith(".xml")))
                throw new NotImplementedException("send File to Server");
        }
    }
}