1. PHP / Говнокод #19926

    −1

    1. 001
    2. 002
    3. 003
    4. 004
    5. 005
    6. 006
    7. 007
    8. 008
    9. 009
    10. 010
    11. 011
    12. 012
    13. 013
    14. 014
    15. 015
    16. 016
    17. 017
    18. 018
    19. 019
    20. 020
    21. 021
    22. 022
    23. 023
    24. 024
    25. 025
    26. 026
    27. 027
    28. 028
    29. 029
    30. 030
    31. 031
    32. 032
    33. 033
    34. 034
    35. 035
    36. 036
    37. 037
    38. 038
    39. 039
    40. 040
    41. 041
    42. 042
    43. 043
    44. 044
    45. 045
    46. 046
    47. 047
    48. 048
    49. 049
    50. 050
    51. 051
    52. 052
    53. 053
    54. 054
    55. 055
    56. 056
    57. 057
    58. 058
    59. 059
    60. 060
    61. 061
    62. 062
    63. 063
    64. 064
    65. 065
    66. 066
    67. 067
    68. 068
    69. 069
    70. 070
    71. 071
    72. 072
    73. 073
    74. 074
    75. 075
    76. 076
    77. 077
    78. 078
    79. 079
    80. 080
    81. 081
    82. 082
    83. 083
    84. 084
    85. 085
    86. 086
    87. 087
    88. 088
    89. 089
    90. 090
    91. 091
    92. 092
    93. 093
    94. 094
    95. 095
    96. 096
    97. 097
    98. 098
    99. 099
    100. 100
    <?php
    /**
     * Provides URL shortening functionality, like tinyurl.com, bit.ly, ow.ly and other popular services.
     * (c) 2011, it-in, http://it-in.ru
     * @author Sergey Kovalev <[email protected]>
     * @version 1.0
     */
    /**
    * Basic URL path, to which short code will be added.
    */
    define("BASE_SHORT_PATH", "http://it-in.ru/~");
    /**
    * ID of the infoblock which holds information about shortned URLs.
    */
    define("TINYURL_IBLOCK_ID", 11);
    Class TinyURL
    {
    	/**
    	* Converts decimal number to any base
    	* @param integer $num Your decimal integer
    	* @param integer $base Base to which you wish to convert $num (leave it 0 if you are providing $index or omit if you're using default (62))
    	* @param string $index If you wish to use the default list of digits (0-1a-zA-Z), omit this option, otherwise provide a string (ex.: "zyxwvu")
    	* @return string
    	* @link http://www.php.net/manual/ru/function.base-convert.php#52450
    	*/
    	private static function dec2any( $num, $base=62, $index=false ) {
    		if (! $base ) {
    			$base = strlen( $index );
    		} else if (! $index ) {
    			$index = substr( "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ" ,0 ,$base );
    		}
    		$out = "";
    		for ( $t = floor( log10( $num ) / log10( $base ) ); $t >= 0; $t-- ) {
    			$a = floor( $num / pow( $base, $t ) );
    			$out = $out . substr( $index, $a, 1 );
    			$num = $num - ( $a * pow( $base, $t ) );
    		}
    		return $out;
    	}
    	/**
    	* Converts number in any base to decimal
    	* @param integer $num Your custom-based number (string) (ex.: "11011101")
    	* @param integer $base Base with which $num was encoded (leave it 0 if you are providing $index or omit if you're using default (62))
    	* @param string $index If you wish to use the default list of digits (0-1a-zA-Z), omit this option, otherwise provide a string (ex.: "abcdef")
    	* @return integer
    	* @link http://www.php.net/manual/ru/function.base-convert.php#52450
    	*/
    	private static function any2dec( $num, $base=62, $index=false ) {
    		if (! $base ) {
    			$base = strlen( $index );
    		} else if (! $index ) {
    			$index = substr( "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ", 0, $base );
    		}
    		$out = 0;
    		$len = strlen( $num ) - 1;
    		for ( $t = 0; $t <= $len; $t++ ) {
    			$out = $out + strpos( $index, substr( $num, $t, 1 ) ) * pow( $base, $len - $t );
    		}
    		return $out;
    	}
    	/**
    	* Shortens URL.
    	* @param string $url Absolute URL to be shortened, like http://www.yandex.ru.
    	* @return string
    	*/
    	public static function shorten($url)
    	{
    		CModule::IncludeModule("iblock") || die("Couldn't load one of the required modules. Error fe51e037.");
    		// Check if there is already shortened version of the required URL.
    		$res = CIBlockElement::GetList(
    			array(),
    			array('IBLOCK_ID' => TINYURL_IBLOCK_ID, 'PREVIEW_TEXT' => $url),
    			false,
    			false,
    			array('ID')
    		);
    		if($ob = $res->GetNextElement())
    		{
    			$arFields = $ob->GetFields();
    			return BASE_SHORT_PATH . self::dec2any($arFields['ID']);
    		}
    		
    		// Shorten new URL and create a record in database.
    		$el = new CIBlockElement;
    		$ELEMENT_ID = $el->Add(array(
    			'IBLOCK_ID' => TINYURL_IBLOCK_ID,
    			'NAME' => $url,
    			'PREVIEW_TEXT' => $url,
    			'PREVIEW_TEXT_TYPE' => 'html',
    		));
    		if($ELEMENT_ID)
    		  return BASE_SHORT_PATH . self::dec2any($ELEMENT_ID);
    		else
    		  die($el->LAST_ERROR);
    	}
    	
    	/**
    	* Converts short code to full URL, e.g. 8UdA -> http://yandex.ru.
    	* @param string $short_code
    	* @return string Full URL.

    Продолжаем копаться в недрах гитхаба в поисках изумрудов от bitrix.
    Данное творение некого адепта битрикса (из it-in, http://it-in.ru) для создания tinyurl

    Запостил: Keeper, 04 Мая 2016

    Комментарии (10) RSS

    • https://github.com/it-in/bitrix-tinyurl/blob/master/tinyurl.php
      Ответить
    • При чем тут "от bitrix"? Изумруды то не его авторов, а его пользователей.
      Ответить
      • Какой движок такие и пользователи. Можешь поискать перлы от самого битрикса.
        Ответить
        • Ну просто с тем же успехом можно назвать это изумрудами от PHP. Какой язык, такие и пользователи.
          Ответить
          • Тебя цепляет, что я открыто говорю как есть что битрикс говно, а его адепты генераторы говнокода?
            Ответить
            • Друзья, не ругайтесь! Вы оба правы. И битрикс говно, и пхп говно
              Ответить
              • тс, а то они перестанут генерировать лулзы
                Ответить
                • Как будто кроме нас больше некому их генерировать. :D Вон там M-A-X с своими шлюшными лисопедами на пасьянсе вылез.
                  Ответить
              • "Все говно"(с) - один мой товарищ.
                Ответить
    • Света Медведева
      Ответить

    Добавить комментарий