#include "difference.h" #include #include #include #include #include #include #include #include difference::difference( std::string configFile, std::mt19937& rng) : rng_(rng) { // Load the config file. YAML::Node config = YAML::LoadFile(configFile); // Set up the Twitter client. twitter::auth auth; auth.setConsumerKey(config["consumer_key"].as()); auth.setConsumerSecret(config["consumer_secret"].as()); auth.setAccessKey(config["access_key"].as()); auth.setAccessSecret(config["access_secret"].as()); client_ = std::unique_ptr(new twitter::client(auth)); // Set up the verbly database. database_ = std::unique_ptr( new verbly::database(config["verbly_datafile"].as())); fontfile_ = "@" + config["font"].as(); } void difference::run() const { for (;;) { std::cout << "Generating tweet..." << std::endl; try { // Find a noun to use as the pictured item. std::cout << "Choosing pictured noun..." << std::endl; verbly::word pictured = getPicturedNoun(); std::cout << "Noun: " << pictured.getBaseForm().getText() << std::endl; // Choose two pictures of that noun. std::cout << "Finding an image..." << std::endl; Magick::Image image1; Magick::Image image2; std::tie(image1, image2) = getImagesForNoun(pictured); // Choose two opposite words. std::cout << "Choosing two opposite words..." << std::endl; verbly::word word1; verbly::word word2; std::tie(word1, word2) = getOppositeIdentifiers(); // Compose the images and words. std::cout << "Composing image..." << std::endl; Magick::Image image = composeImage( std::move(image1), word1, std::move(image2), word2); // Generate the tweet text. std::cout << "Generating text..." << std::endl; std::string text = generateTweetText(std::move(word1), std::move(word2)); std::cout << "Tweet text: " << text << std::endl; // Send the tweet. std::cout << "Sending tweet..." << std::endl; sendTweet(std::move(text), std::move(image)); std::cout << "Tweeted!" << std::endl; // Wait. std::this_thread::sleep_for(std::chrono::hours(1)); } catch (const could_not_get_images& ex) { std::cout << ex.what() << std::endl; } catch (const Magick::ErrorImage& ex) { std::cout << "Image error: " << ex.what() << std::endl; } catch (const Magick::ErrorCorruptImage& ex) { std::cout << "Corrupt image: " << ex.what() << std::endl; } catch (const twitter::twitter_error& ex) { std::cout << "Twitter error: " << ex.what() << std::endl; std::this_thread::sleep_for(std::chrono::hours(1)); } std::cout << std::endl; } } verbly::word difference::getPicturedNoun() const { verbly::filter whitelist = (verbly::notion::wnid == 109287968) // Geological formations || (verbly::notion::wnid == 109208496) // Asterisms (collections of stars) || (verbly::notion::wnid == 109239740) // Celestial bodies || (verbly::notion::wnid == 109277686) // Exterrestrial objects (comets and meteroids) || (verbly::notion::wnid == 109403211) // Radiators (supposedly natural radiators but actually these are just pictures of radiators) || (verbly::notion::wnid == 109416076) // Rocks || (verbly::notion::wnid == 105442131) // Chromosomes || (verbly::notion::wnid == 100324978) // Tightrope walking || (verbly::notion::wnid == 100326094) // Rock climbing || (verbly::notion::wnid == 100433458) // Contact sports || (verbly::notion::wnid == 100433802) // Gymnastics || (verbly::notion::wnid == 100439826) // Track and field || (verbly::notion::wnid == 100440747) // Skiing || (verbly::notion::wnid == 100441824) // Water sport || (verbly::notion::wnid == 100445351) // Rowing || (verbly::notion::wnid == 100446980) // Archery // TODO: add more sports || (verbly::notion::wnid == 100021939) // Artifacts || (verbly::notion::wnid == 101471682) // Vertebrates ; verbly::filter blacklist = (verbly::notion::wnid == 106883725) // swastika || (verbly::notion::wnid == 104416901) // tetraskele || (verbly::notion::wnid == 102512053) // fish || (verbly::notion::wnid == 103575691) // instrument of execution || (verbly::notion::wnid == 103829563) // noose || (verbly::notion::wnid == 103663910) // life support ; verbly::query pictureQuery = database_->words( (verbly::notion::fullHypernyms %= whitelist) && !(verbly::notion::fullHypernyms %= blacklist) && (verbly::notion::partOfSpeech == verbly::part_of_speech::noun) && (verbly::notion::numOfImages >= 2)); verbly::word pictured = pictureQuery.first(); return pictured; } std::pair difference::getImagesForNoun(verbly::word pictured) const { int backoff = 0; std::cout << "Getting URLs..." << std::endl; std::string lstdata; while (lstdata.empty()) { std::ostringstream lstbuf; curl::curl_ios lstios(lstbuf); curl::curl_easy lsthandle(lstios); std::string lsturl = pictured.getNotion().getImageNetUrl(); lsthandle.add(lsturl.c_str()); try { lsthandle.perform(); } catch (const curl::curl_easy_exception& e) { e.print_traceback(); backoff++; std::cout << "Waiting for " << backoff << " seconds..." << std::endl; std::this_thread::sleep_for(std::chrono::seconds(backoff)); continue; } backoff = 0; if (lsthandle.get_info().get() != 200) { throw could_not_get_images(); } std::cout << "Got URLs." << std::endl; lstdata = lstbuf.str(); } std::vector lstvec = verbly::split>(lstdata, "\r\n"); if (lstvec.size() < 2) { throw could_not_get_images(); } std::shuffle(std::begin(lstvec), std::end(lstvec), rng_); std::deque urls; for (std::string& url : lstvec) { urls.push_back(url); } Magick::Image image1; bool success = false; while (!urls.empty()) { std::string url = urls.front(); urls.pop_front(); try { image1 = getImageAtUrl(url); success = true; break; } catch (const could_not_get_images& ex) { // Just try the next one. } } if (!success) { throw could_not_get_images(); } Magick::Image image2; success = false; while (!urls.empty()) { std::string url = urls.front(); urls.pop_front(); try { image2 = getImageAtUrl(url); success = true; break; } catch (const could_not_get_images& ex) { // Just try the next one. } } if (!success) { throw could_not_get_images(); } return {std::move(image1), std::move(image2)}; } Magick::Image difference::getImageAtUrl(std::string url) const { // willyfogg.com is a thumbnail generator known to return 200 even if the target image no longer exists if (url.find("willyfogg.com/thumb.php") != std::string::npos) { throw could_not_get_images(); } // Accept string from Google Chrome std::string accept = "Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8"; curl::curl_header headers; headers.add(accept); std::ostringstream imgbuf; curl::curl_ios imgios(imgbuf); curl::curl_easy imghandle(imgios); imghandle.add(headers.get()); imghandle.add(url.c_str()); imghandle.add(30); try { imghandle.perform(); } catch (const curl::curl_easy_exception& error) { error.print_traceback(); throw could_not_get_images(); } if (imghandle.get_info().get() != 200) { throw could_not_get_images(); } std::string content_type = imghandle.get_info().get(); if (content_type.substr(0, 6) != "image/") { throw could_not_get_images(); } std::string imgstr = imgbuf.str(); Magick::Blob img(imgstr.c_str(), imgstr.length()); Magick::Image pic; try { pic.read(img); if ((pic.rows() > 0) && (pic.columns() >= 800)) { std::cout << url << std::endl; } } catch (const Magick::ErrorOption& e) { // Occurs when the the data downloaded from the server is malformed std::cout << "Magick: " << e.what() << std::endl; throw could_not_get_images(); } return pic; } std::pair difference::getOppositeIdentifiers() const { verbly::part_of_speech pos; if (std::bernoulli_distribution(1.0/2.0)(rng_)) { pos = verbly::part_of_speech::noun; } else { pos = verbly::part_of_speech::adjective; } verbly::word w1 = database_->words( (verbly::notion::partOfSpeech == pos) && (verbly::word::antonyms)).first(); verbly::word w2 = database_->words( (verbly::notion::partOfSpeech == pos) && (verbly::word::antonyms %= w1)).first(); return {std::move(w1), std::move(w2)}; } Magick::Image difference::composeImage( Magick::Image image1, verbly::word word1, Magick::Image image2, verbly::word word2) const { if (image1.columns() < 320) { image1.zoom(Magick::Geometry(320, image1.rows() * 320 / image1.columns(), 0, 0)); } if (image2.columns() < 320) { image2.zoom(Magick::Geometry(320, image2.rows() * 320 / image2.columns(), 0, 0)); } int width = std::min(image1.columns(), image2.columns()); int height = std::min(image1.rows(), image2.rows()); Magick::Geometry geo1(width, height, image1.columns()/2 - width/2, image1.rows()/2 - height/2); Magick::Geometry geo2(width, height, image2.columns()/2 - width/2, image2.rows()/2 - height/2); image1.crop(geo1); image2.crop(geo2); Magick::Image composite(Magick::Geometry(width*2, height, 0, 0), "white"); composite.draw(Magick::DrawableCompositeImage(0, 0, image1)); composite.draw(Magick::DrawableCompositeImage(width, 0, image2)); composite.font(fontfile_); std::string ant1 = word1.getBaseForm().getText(); std::string ant2 = word2.getBaseForm().getText(); double fontsize = 72; for (;;) { composite.fontPointsize(fontsize); Magick::TypeMetric metric; composite.fontTypeMetrics(ant1, &metric); if (metric.textWidth() > 300) { fontsize -= 0.5; continue; } composite.fontTypeMetrics(ant2, &metric); if (metric.textWidth() > 300) { fontsize -= 0.5; continue; } break; } Magick::TypeMetric metric; composite.fontTypeMetrics(ant1, &metric); std::uniform_int_distribution rowdist(20, (int)(composite.rows() - 19 - metric.textHeight())); int y = rowdist(rng_); y = composite.rows() - y; int x1 = (width - 40 - metric.textWidth())/2+20; composite.fontTypeMetrics(ant2, &metric); int x2 = (width - 40 - metric.textWidth())/2+20+width; composite.strokeColor("white"); composite.strokeWidth(2); composite.antiAlias(false); composite.draw(Magick::DrawableText(x1, y, ant1)); composite.draw(Magick::DrawableText(x2, y, ant2)); composite.magick("png"); return composite; } std::string difference::generateTweetText( verbly::word word1, verbly::word word2) const { verbly::token result { verbly::token::capitalize(verbly::token::casing::capitalize, word1), "vs.", verbly::token::capitalize(verbly::token::casing::capitalize, word2) }; return result.compile(); } void difference::sendTweet(std::string text, Magick::Image image) const { Magick::Blob outputBlob; image.magick("png"); image.write(&outputBlob); long media_id = client_->uploadMedia("image/png", (const char*) outputBlob.data(), outputBlob.length()); client_->updateStatus(std::move(text), {media_id}); }