X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcommon%2Futil.h;h=0db903e4679105471a94e64599b521b140b719ce;hp=8b312f93649103c8715262c1339bb7c2851a1f30;hb=4ce53949ab7d52a49ae79b8817bd3aa50fada0d1;hpb=d261638f2e30aa47a08f1c3f43372da0c0e8d13f diff --git a/src/common/util.h b/src/common/util.h index 8b312f93..0db903e4 100644 --- a/src/common/util.h +++ b/src/common/util.h @@ -80,24 +80,26 @@ QByteArray prettyDigest(const QByteArray &digest); */ QString formatCurrentDateTimeInString(const QString &formatStr); -/** Check if a scope rule matches a string - * - * When isRegEx is false: - * Checks that the string does NOT match ANY inverted rules (prefixed by '!'), then checks that - * it matches AT LEAST one normal (non-inverted) rule. +/** + * Try to localize a given date/time in seconds from Unix epoch, pass through string if invalid * - * If only inverted rules are specified, it'll match so long as the string does not match any - * inverted rules (implicit wildcard). + * Allows compatibility with date/time fields that may or may not be in Unix epoch format, + * localizing if possible, leaving alone if not. * - * When isRegEx is true: - * Checks that the string matches the entire scopeRule as a regular expression. If scopeRule starts - * with a '!', check that the string does NOT match the regular expression. + * @param possibleEpochDate Date/time that might be in seconds since Unix epoch format + * @param dateFormat Desired format of the date/time string + * @param useUTC If true, use UTC timezone, otherwise use local time + * @return Localized date/time if parse succeeded, otherwise the source string + */ +QString tryFormatUnixEpoch(const QString &possibleEpochDate, + Qt::DateFormat dateFormat = Qt::DateFormat::TextDate, + bool useUTC = false); + + +/** + * Format the given date/time in ISO 8601 format with timezone offset * - * @param string String to test, e.g. network/channel name - * @param scopeRule ';'-separated list of wildcard expressions, prefix of '!' inverts subrule - * @param isRegEx If true, treat entire scope rule as regular expression, not wildcards - * @param isCaseSensitive If true, treat as case-sensitive, else case-insensitive - * @return True if matches, otherwise false + * @param dateTime Date/time of interest + * @return Date/time in ISO 8601 format with timezone offset */ -bool scopeMatch(const QString &string, const QString &scopeRule, - const bool &isRegEx = false, const bool &isCaseSensitive = false); +QString formatDateTimeToOffsetISO(const QDateTime &dateTime);