// SPDX-FileCopyrightText: 2023 UnionTech Software Technology Co., Ltd. // // SPDX-License-Identifier: LGPL-3.0-or-later #include "desktopentry.h" #include "global.h" #include "desktopfileparser.h" #include #include #include #include #include #include #include #include #include #include QString DesktopFile::sourcePath() const noexcept { if (!m_fileSource) { return ""; } QFileInfo info(*m_fileSource); return info.absoluteFilePath(); } bool DesktopEntry::checkMainEntryValidation() const noexcept { auto it = m_entryMap.find(DesktopFileEntryKey); if (it == m_entryMap.end()) { return false; } if (auto name = it->find("Name"); name == it->end()) { qWarning() << "No Name."; return false; } auto type = it->find("Type"); if (type == it->end()) { qWarning() << "No Type."; for (auto tmp = it->constKeyValueBegin(); tmp != it->constKeyValueEnd(); ++tmp) { const auto &[k, v] = *tmp; qInfo() << "keyName:" << k; for (auto valIt = v.constKeyValueBegin(); valIt != v.constKeyValueEnd(); ++valIt) { const auto &[key, value] = *valIt; qInfo() << key << value; } } return false; } const auto &typeStr = *type->find(defaultKeyStr); if (typeStr == "Link") { if (it->find("URL") == it->end()) { return false; } } return true; } std::optional DesktopFile::createTemporaryDesktopFile(std::unique_ptr temporaryFile) noexcept { auto [ctime, mtime, _] = getFileTimeInfo(QFileInfo{*temporaryFile}); if (mtime == 0) { qWarning() << "create temporary file failed."; return std::nullopt; } return DesktopFile{std::move(temporaryFile), "", mtime, ctime}; } std::optional DesktopFile::createTemporaryDesktopFile(const QString &temporaryFile) noexcept { const static QString userTmp = QString{"/run/user/%1/"}.arg(getCurrentUID()); auto tempFile = std::make_unique(QString{userTmp + QUuid::createUuid().toString(QUuid::Id128) + ".desktop"}); if (!tempFile->open(QFile::NewOnly | QFile::WriteOnly | QFile::Text)) { qWarning() << "failed to create temporary desktop file:" << QFileInfo{*tempFile}.absoluteFilePath() << tempFile->errorString(); return std::nullopt; } auto content = temporaryFile.toLocal8Bit(); auto writeByte = tempFile->write(content); if (writeByte == -1 || writeByte != content.length()) { qWarning() << "write to temporary file failed:" << tempFile->errorString(); return std::nullopt; } tempFile->close(); return createTemporaryDesktopFile(std::move(tempFile)); } std::optional DesktopFile::searchDesktopFileByPath(const QString &desktopFile, ParserError &err) noexcept { decltype(auto) desktopSuffix = ".desktop"; if (!desktopFile.endsWith(desktopSuffix)) { qWarning() << "file isn't a desktop file:" << desktopFile; err = ParserError::MismatchedFile; return std::nullopt; } QFileInfo fileinfo{desktopFile}; if (!fileinfo.isAbsolute() or !fileinfo.exists()) { qWarning() << "desktop file not found."; err = ParserError::NotFound; return std::nullopt; } QString path{desktopFile}; QString id; const auto &XDGDataDirs = getDesktopFileDirs(); auto idGen = std::any_of(XDGDataDirs.cbegin(), XDGDataDirs.cend(), [&desktopFile](const QString &suffixPath) { return desktopFile.startsWith(suffixPath); }); if (idGen) { auto tmp = path.chopped(sizeof(desktopSuffix) - 1); auto components = tmp.split(QDir::separator()).toList(); auto it = std::find(components.cbegin(), components.cend(), "applications"); QString FileId; ++it; while (it != components.cend()) { FileId += (*(it++) + "-"); } id = FileId.chopped(1); // remove extra "-"" } auto filePtr = std::make_unique(std::move(path)); auto [ctime, mtime, _] = getFileTimeInfo(QFileInfo{*filePtr}); err = ParserError::NoError; return DesktopFile{std::move(filePtr), std::move(id), mtime, ctime}; } std::optional DesktopFile::searchDesktopFileById(const QString &appId, ParserError &err) noexcept { auto XDGDataDirs = getDesktopFileDirs(); constexpr auto desktopSuffix = u8".desktop"; for (const auto &dir : XDGDataDirs) { auto app = QFileInfo{dir + QDir::separator() + appId + desktopSuffix}; while (!app.exists()) { auto filePath = app.absoluteFilePath(); auto hyphenIndex = filePath.indexOf('-'); if (hyphenIndex == -1) { break; } filePath.replace(hyphenIndex, 1, QDir::separator()); app.setFile(filePath); } if (app.exists()) { return searchDesktopFileByPath(app.absoluteFilePath(), err); } } err = ParserError::NotFound; return std::nullopt; } bool DesktopFile::modified(qint64 time) const noexcept { return time != m_mtime; } ParserError DesktopEntry::parse(const DesktopFile &file) noexcept { DesktopFileGuard guard{file}; if (!guard.try_open()) { qWarning() << file.sourcePath() << "can't open."; return ParserError::OpenFailed; } QTextStream stream; stream.setDevice(file.sourceFile()); return parse(stream); } ParserError DesktopEntry::parse(QTextStream &stream) noexcept { if (m_parsed) { return ParserError::Parsed; } if (stream.atEnd()) { return ParserError::OpenFailed; } stream.setEncoding(QStringConverter::Utf8); ParserError err{ParserError::NoError}; DesktopFileParser p(stream); err = p.parse(m_entryMap); m_parsed = true; if (err != ParserError::NoError) { return err; } if (!checkMainEntryValidation()) { qWarning() << "invalid MainEntry, abort."; err = ParserError::MissingInfo; } return err; } std::optional> DesktopEntry::group(const QString &key) const noexcept { if (auto group = m_entryMap.find(key); group != m_entryMap.cend()) { return *group; } return std::nullopt; } std::optional DesktopEntry::value(const QString &groupKey, const QString &valueKey) const noexcept { const auto &destGroup = group(groupKey); if (!destGroup) { qDebug() << "group " << groupKey << " can't be found."; return std::nullopt; } auto it = destGroup->find(valueKey); if (it == destGroup->cend()) { qDebug() << "value " << valueKey << " can't be found."; return std::nullopt; } return *it; } QString DesktopEntry::Value::unescape(const QString &str) noexcept { QString unescapedStr; for (qsizetype i = 0; i < str.size(); ++i) { auto c = str.at(i); if (c != '\\') { unescapedStr.append(c); continue; } switch (str.at(i + 1).toLatin1()) { default: unescapedStr.append(c); break; case 'n': unescapedStr.append('\n'); ++i; break; case 't': unescapedStr.append('\t'); ++i; break; case 'r': unescapedStr.append('\r'); ++i; break; case '\\': unescapedStr.append('\\'); ++i; break; case ';': unescapedStr.append(';'); ++i; break; case 's': unescapedStr.append(' '); ++i; break; } } return unescapedStr; } QString DesktopEntry::Value::toString(bool &ok) const noexcept { ok = false; auto str = this->find(defaultKeyStr); if (str == this->end()) { qWarning() << "value not found."; return {}; } auto unescapedStr = unescape(*str); if (hasNonAsciiAndControlCharacters(unescapedStr)) { return {}; } ok = true; return unescapedStr; } QString DesktopEntry::Value::toLocaleString(const QLocale &locale, bool &ok) const noexcept { ok = false; for (auto it = this->constKeyValueBegin(); it != this->constKeyValueEnd(); ++it) { auto [a, b] = *it; if (QLocale{a}.name() == locale.name()) { ok = true; return unescape(b); } } return toString(ok); } QString DesktopEntry::Value::toIconString(bool &ok) const noexcept { return toString(ok); } bool DesktopEntry::Value::toBoolean(bool &ok) const noexcept { ok = false; const auto &str = (*this)[defaultKeyStr]; if (str == "true") { ok = true; return true; } if (str == "false") { ok = true; return false; } return false; } float DesktopEntry::Value::toNumeric(bool &ok) const noexcept { const auto &str = (*this)[defaultKeyStr]; QVariant v{str}; return v.toFloat(&ok); } bool operator==(const DesktopEntry &lhs, const DesktopEntry &rhs) { if (lhs.m_parsed != rhs.m_parsed) { return false; } if (lhs.m_entryMap != rhs.m_entryMap) { return false; } return true; } bool operator!=(const DesktopEntry &lhs, const DesktopEntry &rhs) { return !(lhs == rhs); } bool operator==(const DesktopFile &lhs, const DesktopFile &rhs) { if (lhs.m_desktopId != rhs.m_desktopId) { return false; } if (lhs.sourcePath() != rhs.sourcePath()) { return false; } if (lhs.m_ctime != rhs.m_ctime or lhs.m_mtime != rhs.m_mtime) { return false; } return true; } bool operator!=(const DesktopFile &lhs, const DesktopFile &rhs) { return !(lhs == rhs); } QDebug operator<<(QDebug debug, const DesktopEntry::Value &v) { QDebugStateSaver saver{debug}; debug << static_cast &>(v); return debug; }