/* * This file Copyright (C) 2012-2014 Mnemosyne LLC * * It may be used under the GNU GPL versions 2 or 3 * or any future license endorsed by Mnemosyne LLC. * */ #include #include /* fprintf() */ #include /* EXIT_FAILURE */ #include #include #include #include #include #include #include #include #include #include static char constexpr MyName[] = "transmission-edit"; static char constexpr Usage[] = "Usage: transmission-edit [options] torrent-file(s)"; struct app_options { std::vector files; char const* add = nullptr; char const* deleteme = nullptr; std::array replace; bool show_version = false; }; static auto constexpr Options = std::array{ { { 'a', "add", "Add a tracker's announce URL", "a", true, "" }, { 'd', "delete", "Delete a tracker's announce URL", "d", true, "" }, { 'r', "replace", "Search and replace a substring in the announce URLs", "r", true, " " }, { 'V', "version", "Show version number and exit", "V", false, nullptr }, { 0, nullptr, nullptr, nullptr, false, nullptr } } }; static int parseCommandLine(app_options& opts, int argc, char const* const* argv) { int c; char const* optarg; while ((c = tr_getopt(Usage, argc, argv, std::data(Options), &optarg)) != TR_OPT_DONE) { switch (c) { case 'a': opts.add = optarg; break; case 'd': opts.deleteme = optarg; break; case 'r': opts.replace[0] = optarg; c = tr_getopt(Usage, argc, argv, std::data(Options), &optarg); if (c != TR_OPT_UNK) { return 1; } opts.replace[1] = optarg; break; case 'V': opts.show_version = true; break; case TR_OPT_UNK: opts.files.push_back(optarg); break; default: return 1; } } return 0; } static bool removeURL(tr_variant* metainfo, std::string_view url) { auto sv = std::string_view{}; tr_variant* announce_list; bool changed = false; if (tr_variantDictFindStrView(metainfo, TR_KEY_announce, &sv) && url == sv) { printf("\tRemoved \"%" TR_PRIsv "\" from \"announce\"\n", TR_PRIsv_ARG(sv)); tr_variantDictRemove(metainfo, TR_KEY_announce); changed = true; } if (tr_variantDictFindList(metainfo, TR_KEY_announce_list, &announce_list)) { tr_variant* tier; int tierIndex = 0; while ((tier = tr_variantListChild(announce_list, tierIndex)) != nullptr) { int nodeIndex = 0; tr_variant const* node; while ((node = tr_variantListChild(tier, nodeIndex)) != nullptr) { if (tr_variantGetStrView(node, &sv) && url == sv) { printf("\tRemoved \"%" TR_PRIsv "\" from \"announce-list\" tier #%d\n", TR_PRIsv_ARG(sv), tierIndex + 1); tr_variantListRemove(tier, nodeIndex); changed = true; } else { ++nodeIndex; } } if (tr_variantListSize(tier) == 0) { printf("\tNo URLs left in tier #%d... removing tier\n", tierIndex + 1); tr_variantListRemove(announce_list, tierIndex); } else { ++tierIndex; } } if (tr_variantListSize(announce_list) == 0) { printf("\tNo tiers left... removing announce-list\n"); tr_variantDictRemove(metainfo, TR_KEY_announce_list); } } /* if we removed the "announce" field and there's still another track left, * use it as the "announce" field */ if (changed && !tr_variantDictFindStrView(metainfo, TR_KEY_announce, &sv)) { tr_variant* const tier = tr_variantListChild(announce_list, 0); if (tier != nullptr) { tr_variant const* const node = tr_variantListChild(tier, 0); if ((node != nullptr) && tr_variantGetStrView(node, &sv)) { tr_variantDictAddStr(metainfo, TR_KEY_announce, sv); printf("\tAdded \"%" TR_PRIsv "\" to announce\n", TR_PRIsv_ARG(sv)); } } } return changed; } static std::string replaceSubstr(std::string_view str, std::string_view oldval, std::string_view newval) { auto ret = std::string{}; while (!std::empty(str)) { auto const pos = str.find(oldval); ret += str.substr(0, pos); if (pos == str.npos) { break; } ret += newval; str.remove_prefix(pos + std::size(oldval)); } return ret; } static bool replaceURL(tr_variant* metainfo, std::string_view oldval, std::string_view newval) { auto sv = std::string_view{}; tr_variant* announce_list; bool changed = false; if (tr_variantDictFindStrView(metainfo, TR_KEY_announce, &sv) && tr_strvContains(sv, oldval)) { auto const newstr = replaceSubstr(sv, oldval, newval); printf("\tReplaced in \"announce\": \"%" TR_PRIsv "\" --> \"%s\"\n", TR_PRIsv_ARG(sv), newstr.c_str()); tr_variantDictAddStr(metainfo, TR_KEY_announce, newstr); changed = true; } if (tr_variantDictFindList(metainfo, TR_KEY_announce_list, &announce_list)) { tr_variant* tier; int tierCount = 0; while ((tier = tr_variantListChild(announce_list, tierCount)) != nullptr) { tr_variant* node; int nodeCount = 0; while ((node = tr_variantListChild(tier, nodeCount)) != nullptr) { if (tr_variantGetStrView(node, &sv) && tr_strvContains(sv, oldval)) { auto const newstr = replaceSubstr(sv, oldval, newval); printf( "\tReplaced in \"announce-list\" tier %d: \"%" TR_PRIsv "\" --> \"%s\"\n", tierCount + 1, TR_PRIsv_ARG(sv), newstr.c_str()); tr_variantFree(node); tr_variantInitStr(node, newstr); changed = true; } ++nodeCount; } ++tierCount; } } return changed; } static bool announce_list_has_url(tr_variant* announce_list, char const* url) { int tierCount = 0; tr_variant* tier; while ((tier = tr_variantListChild(announce_list, tierCount)) != nullptr) { int nodeCount = 0; tr_variant const* node; while ((node = tr_variantListChild(tier, nodeCount)) != nullptr) { auto sv = std::string_view{}; if (tr_variantGetStrView(node, &sv) && sv == url) { return true; } ++nodeCount; } ++tierCount; } return false; } static bool addURL(tr_variant* metainfo, char const* url) { auto announce = std::string_view{}; tr_variant* announce_list = nullptr; bool changed = false; bool const had_announce = tr_variantDictFindStrView(metainfo, TR_KEY_announce, &announce); bool const had_announce_list = tr_variantDictFindList(metainfo, TR_KEY_announce_list, &announce_list); if (!had_announce && !had_announce_list) { /* this new tracker is the only one, so add it to "announce"... */ printf("\tAdded \"%s\" in \"announce\"\n", url); tr_variantDictAddStr(metainfo, TR_KEY_announce, url); changed = true; } else { if (!had_announce_list) { announce_list = tr_variantDictAddList(metainfo, TR_KEY_announce_list, 2); if (had_announce) { /* we're moving from an 'announce' to an 'announce-list', * so copy the old announce URL to the list */ tr_variant* tier = tr_variantListAddList(announce_list, 1); tr_variantListAddStr(tier, announce); changed = true; } } /* If the user-specified URL isn't in the announce list yet, add it */ if (!announce_list_has_url(announce_list, url)) { tr_variant* tier = tr_variantListAddList(announce_list, 1); tr_variantListAddStr(tier, url); printf("\tAdded \"%s\" to \"announce-list\" tier %zu\n", url, tr_variantListSize(announce_list)); changed = true; } } return changed; } int tr_main(int argc, char* argv[]) { int changedCount = 0; tr_logSetLevel(TR_LOG_ERROR); auto options = app_options{}; if (parseCommandLine(options, argc, (char const* const*)argv) != 0) { return EXIT_FAILURE; } if (options.show_version) { fprintf(stderr, "%s %s\n", MyName, LONG_VERSION_STRING); return EXIT_SUCCESS; } if (std::empty(options.files)) { fprintf(stderr, "ERROR: No torrent files specified.\n"); tr_getopt_usage(MyName, Usage, std::data(Options)); fprintf(stderr, "\n"); return EXIT_FAILURE; } if (options.add == nullptr && options.deleteme == nullptr && options.replace[0] == 0) { fprintf(stderr, "ERROR: Must specify -a, -d or -r\n"); tr_getopt_usage(MyName, Usage, std::data(Options)); fprintf(stderr, "\n"); return EXIT_FAILURE; } for (auto const& filename : options.files) { tr_variant top; bool changed = false; tr_error* error = nullptr; printf("%s\n", filename); if (!tr_variantFromFile(&top, TR_VARIANT_PARSE_BENC, filename, &error)) { printf("\tError reading file: %s\n", error->message); tr_error_free(error); continue; } if (options.deleteme != nullptr) { changed |= removeURL(&top, options.deleteme); } if (options.add != nullptr) { changed = addURL(&top, options.add); } if (options.replace[0] != nullptr && options.replace[1] != nullptr) { changed |= replaceURL(&top, options.replace[0], options.replace[1]); } if (changed) { ++changedCount; tr_variantToFile(&top, TR_VARIANT_FMT_BENC, filename); } tr_variantFree(&top); } printf("Changed %d files\n", changedCount); return EXIT_SUCCESS; }