~ruther/NosTale-Anonymizer

dc8f4e8b5cc4e48d7f686f226c2ad863db15e6e8 — František Boháček 2 years ago cbabc19
feat: add message filter
1 files changed, 27 insertions(+), 0 deletions(-)

A src/Anonymizer/Filters/MessageFilter.cs
A src/Anonymizer/Filters/MessageFilter.cs => src/Anonymizer/Filters/MessageFilter.cs +27 -0
@@ 0,0 1,27 @@
//
//  MessageFilter.cs
//
//  Copyright (c) František Boháček. All rights reserved.
//  Licensed under the MIT license. See LICENSE file in the project root for full license information.

using NosSmooth.PacketSerializer.Abstractions.Attributes;

namespace Anonymizer.Filters;

/// <summary>
/// Filters out sent messages.
/// </summary>
public class MessageFilter : IFilter
{
    /// <inheritdoc />
    public bool Filter(PacketInfo packetInfo)
    {
        if (packetInfo.Source == PacketSource.Client)
        {
            return !(packetInfo.Packet.StartsWith('/') || packetInfo.Packet.StartsWith
                (';') || packetInfo.Packet.StartsWith(":"));
        }

        return true;
    }
}
\ No newline at end of file

Do not follow this link