using System;
using System.Collections.Generic;
using System.Linq;
namespace Wox.Plugin
{
public class Query
{
internal Query() { }
///
/// to allow unit tests for plug ins
///
public Query(string rawQuery, string search, string[] terms, string actionKeyword = "")
{
Search = search;
RawQuery = rawQuery;
Terms = terms;
ActionKeyword = actionKeyword;
}
///
/// Raw query, this includes action keyword if it has
/// We didn't recommend use this property directly. You should always use Search property.
///
public string RawQuery { get; internal set; }
///
/// Search part of a query.
/// This will not include action keyword if exclusive plugin gets it, otherwise it should be same as RawQuery.
/// Since we allow user to switch a exclusive plugin to generic plugin,
/// so this property will always give you the "real" query part of the query
///
public string Search { get; internal set; }
///
/// The raw query splited into a string array.
///
public string[] Terms { get; set; }
///
/// Query can be splited into multiple terms by whitespace
///
public const string TermSeperater = " ";
///
/// User can set multiple action keywords seperated by ';'
///
public const string ActionKeywordSeperater = ";";
///
/// '*' is used for System Plugin
///
public const string GlobalPluginWildcardSign = "*";
public string ActionKeyword { get; set; }
///
/// Return first search split by space if it has
///
public string FirstSearch => SplitSearch(0);
///
/// strings from second search (including) to last search
///
public string SecondToEndSearch
{
get
{
var index = string.IsNullOrEmpty(ActionKeyword) ? 1 : 2;
return string.Join(TermSeperater, Terms.Skip(index).ToArray());
}
}
///
/// Return second search split by space if it has
///
public string SecondSearch => SplitSearch(1);
///
/// Return third search split by space if it has
///
public string ThirdSearch => SplitSearch(2);
private string SplitSearch(int index)
{
try
{
return string.IsNullOrEmpty(ActionKeyword) ? Terms[index] : Terms[index + 1];
}
catch (IndexOutOfRangeException)
{
return string.Empty;
}
}
public override string ToString() => RawQuery;
[Obsolete("Use ActionKeyword, this property will be removed in v1.3.0")]
public string ActionName { get; internal set; }
[Obsolete("Use Search instead, this property will be removed in v1.3.0")]
public List ActionParameters { get; internal set; }
[Obsolete("Use Search instead, this method will be removed in v1.3.0")]
public string GetAllRemainingParameter() => Search;
}
}