From 599cccd293035788793d680f8649ea737228fc56 Mon Sep 17 00:00:00 2001 From: Phil Burton Date: Tue, 11 Jun 2019 14:28:13 +0100 Subject: Remove old script --- etym.php | 85 ---------------------------------------------------------------- 1 file changed, 85 deletions(-) delete mode 100644 etym.php diff --git a/etym.php b/etym.php deleted file mode 100644 index 08059fd..0000000 --- a/etym.php +++ /dev/null @@ -1,85 +0,0 @@ -/dev/null"; - -function readStdin() -{ - $input = fgets(STDIN); - - if ($input === false) { - echo "No input supplied!\n"; - exit(1); - } - - $input = rtrim($input, "\n"); - - return $input; -} - -function cleanUpHtml($input) -{ - // Strip HTML Tags - $clear = strip_tags($input); - // Clean up things like & - $clear = html_entity_decode($clear); - // Strip out any url-encoded stuff - $clear = urldecode($clear); - // Replace Multiple spaces with single space - $clear = preg_replace('/ +/', ' ', $clear); - // Trim the string of leading/trailing space - $clear = trim($clear); - // Capitalise the first char. - $clear = ucfirst($clear); - - return $clear; -} - -function handleTruncation($input, $definition, $url) -{ - $truncated = $definition; - - $MAX_CHARACTERS = 350; - if (strlen($truncated) >= $MAX_CHARACTERS) { - // Create that povjee link. - // Capitalise the first char of the input. - $input = ucfirst($input); - $defAndUrl = "\"$input\"" . "\n\n" . $definition . "\n\n" . "[Original at: $url]"; - $safeDef = escapeshellarg($defAndUrl); - - $pasteBinCmd = "echo $safeDef | " . $pasteCmd; - $pasteBinLink = exec($pasteBinCmd); - - $truncated = substr($truncated, 0, $MAX_CHARACTERS) . "... [More info at $pasteBinLink]"; - } - - return $truncated; -} - -function getDefinition() -{ - - $input = readStdin(); - - $targetURL = $baseURL . $input; - - $dom = new Dom; - $dom->load($targetURL); - $html = $dom->find($htmlNode)[0]->innerHtml(); - $node = $html->find($htmlNode, 0); - - if ($node === null) { - echo "No entry found for '$input'!\n"; - exit(2); - } - - $definition = cleanUpHtml($node->innertext); - $definition = handleTruncation($input, $definition, $targetURL); - - echo $definition . "\n"; -} - -getDefinition(); -- cgit v1.2.3