SimplePie.php 89 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153
  1. <?php
  2. /**
  3. * SimplePie
  4. *
  5. * A PHP-Based RSS and Atom Feed Framework.
  6. * Takes the hard work out of managing a complete RSS/Atom solution.
  7. *
  8. * Copyright (c) 2004-2012, Ryan Parman, Geoffrey Sneddon, Ryan McCue, and contributors
  9. * All rights reserved.
  10. *
  11. * Redistribution and use in source and binary forms, with or without modification, are
  12. * permitted provided that the following conditions are met:
  13. *
  14. * * Redistributions of source code must retain the above copyright notice, this list of
  15. * conditions and the following disclaimer.
  16. *
  17. * * Redistributions in binary form must reproduce the above copyright notice, this list
  18. * of conditions and the following disclaimer in the documentation and/or other materials
  19. * provided with the distribution.
  20. *
  21. * * Neither the name of the SimplePie Team nor the names of its contributors may be used
  22. * to endorse or promote products derived from this software without specific prior
  23. * written permission.
  24. *
  25. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS
  26. * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
  27. * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS
  28. * AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  29. * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  30. * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  31. * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
  32. * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  33. * POSSIBILITY OF SUCH DAMAGE.
  34. *
  35. * @package SimplePie
  36. * @version 1.4-dev-FreshRSS
  37. * @copyright 2004-2012 Ryan Parman, Geoffrey Sneddon, Ryan McCue
  38. * @author Ryan Parman
  39. * @author Geoffrey Sneddon
  40. * @author Ryan McCue
  41. * @link http://simplepie.org/ SimplePie
  42. * @license http://www.opensource.org/licenses/bsd-license.php BSD License
  43. */
  44. /**
  45. * SimplePie Name
  46. */
  47. define('SIMPLEPIE_NAME', 'SimplePie');
  48. /**
  49. * SimplePie Version
  50. */
  51. define('SIMPLEPIE_VERSION', '1.4-dev-FreshRSS');
  52. /**
  53. * SimplePie Build
  54. * @todo Hardcode for release (there's no need to have to call SimplePie_Misc::get_build() only every load of simplepie.inc)
  55. */
  56. define('SIMPLEPIE_BUILD', gmdate('YmdHis', SimplePie_Misc::get_build()));
  57. /**
  58. * SimplePie Website URL
  59. */
  60. define('SIMPLEPIE_URL', 'http://simplepie.org');
  61. /**
  62. * SimplePie Useragent
  63. * @see SimplePie::set_useragent()
  64. */
  65. define('SIMPLEPIE_USERAGENT', SIMPLEPIE_NAME . '/' . SIMPLEPIE_VERSION . ' (Feed Parser; ' . SIMPLEPIE_URL . '; Allow like Gecko) Build/' . SIMPLEPIE_BUILD);
  66. /**
  67. * SimplePie Linkback
  68. */
  69. define('SIMPLEPIE_LINKBACK', '<a href="' . SIMPLEPIE_URL . '" title="' . SIMPLEPIE_NAME . ' ' . SIMPLEPIE_VERSION . '">' . SIMPLEPIE_NAME . '</a>');
  70. /**
  71. * No Autodiscovery
  72. * @see SimplePie::set_autodiscovery_level()
  73. */
  74. define('SIMPLEPIE_LOCATOR_NONE', 0);
  75. /**
  76. * Feed Link Element Autodiscovery
  77. * @see SimplePie::set_autodiscovery_level()
  78. */
  79. define('SIMPLEPIE_LOCATOR_AUTODISCOVERY', 1);
  80. /**
  81. * Local Feed Extension Autodiscovery
  82. * @see SimplePie::set_autodiscovery_level()
  83. */
  84. define('SIMPLEPIE_LOCATOR_LOCAL_EXTENSION', 2);
  85. /**
  86. * Local Feed Body Autodiscovery
  87. * @see SimplePie::set_autodiscovery_level()
  88. */
  89. define('SIMPLEPIE_LOCATOR_LOCAL_BODY', 4);
  90. /**
  91. * Remote Feed Extension Autodiscovery
  92. * @see SimplePie::set_autodiscovery_level()
  93. */
  94. define('SIMPLEPIE_LOCATOR_REMOTE_EXTENSION', 8);
  95. /**
  96. * Remote Feed Body Autodiscovery
  97. * @see SimplePie::set_autodiscovery_level()
  98. */
  99. define('SIMPLEPIE_LOCATOR_REMOTE_BODY', 16);
  100. /**
  101. * All Feed Autodiscovery
  102. * @see SimplePie::set_autodiscovery_level()
  103. */
  104. define('SIMPLEPIE_LOCATOR_ALL', 31);
  105. /**
  106. * No known feed type
  107. */
  108. define('SIMPLEPIE_TYPE_NONE', 0);
  109. /**
  110. * RSS 0.90
  111. */
  112. define('SIMPLEPIE_TYPE_RSS_090', 1);
  113. /**
  114. * RSS 0.91 (Netscape)
  115. */
  116. define('SIMPLEPIE_TYPE_RSS_091_NETSCAPE', 2);
  117. /**
  118. * RSS 0.91 (Userland)
  119. */
  120. define('SIMPLEPIE_TYPE_RSS_091_USERLAND', 4);
  121. /**
  122. * RSS 0.91 (both Netscape and Userland)
  123. */
  124. define('SIMPLEPIE_TYPE_RSS_091', 6);
  125. /**
  126. * RSS 0.92
  127. */
  128. define('SIMPLEPIE_TYPE_RSS_092', 8);
  129. /**
  130. * RSS 0.93
  131. */
  132. define('SIMPLEPIE_TYPE_RSS_093', 16);
  133. /**
  134. * RSS 0.94
  135. */
  136. define('SIMPLEPIE_TYPE_RSS_094', 32);
  137. /**
  138. * RSS 1.0
  139. */
  140. define('SIMPLEPIE_TYPE_RSS_10', 64);
  141. /**
  142. * RSS 2.0
  143. */
  144. define('SIMPLEPIE_TYPE_RSS_20', 128);
  145. /**
  146. * RDF-based RSS
  147. */
  148. define('SIMPLEPIE_TYPE_RSS_RDF', 65);
  149. /**
  150. * Non-RDF-based RSS (truly intended as syndication format)
  151. */
  152. define('SIMPLEPIE_TYPE_RSS_SYNDICATION', 190);
  153. /**
  154. * All RSS
  155. */
  156. define('SIMPLEPIE_TYPE_RSS_ALL', 255);
  157. /**
  158. * Atom 0.3
  159. */
  160. define('SIMPLEPIE_TYPE_ATOM_03', 256);
  161. /**
  162. * Atom 1.0
  163. */
  164. define('SIMPLEPIE_TYPE_ATOM_10', 512);
  165. /**
  166. * All Atom
  167. */
  168. define('SIMPLEPIE_TYPE_ATOM_ALL', 768);
  169. /**
  170. * All feed types
  171. */
  172. define('SIMPLEPIE_TYPE_ALL', 1023);
  173. /**
  174. * No construct
  175. */
  176. define('SIMPLEPIE_CONSTRUCT_NONE', 0);
  177. /**
  178. * Text construct
  179. */
  180. define('SIMPLEPIE_CONSTRUCT_TEXT', 1);
  181. /**
  182. * HTML construct
  183. */
  184. define('SIMPLEPIE_CONSTRUCT_HTML', 2);
  185. /**
  186. * XHTML construct
  187. */
  188. define('SIMPLEPIE_CONSTRUCT_XHTML', 4);
  189. /**
  190. * base64-encoded construct
  191. */
  192. define('SIMPLEPIE_CONSTRUCT_BASE64', 8);
  193. /**
  194. * IRI construct
  195. */
  196. define('SIMPLEPIE_CONSTRUCT_IRI', 16);
  197. /**
  198. * A construct that might be HTML
  199. */
  200. define('SIMPLEPIE_CONSTRUCT_MAYBE_HTML', 32);
  201. /**
  202. * All constructs
  203. */
  204. define('SIMPLEPIE_CONSTRUCT_ALL', 63);
  205. /**
  206. * Don't change case
  207. */
  208. define('SIMPLEPIE_SAME_CASE', 1);
  209. /**
  210. * Change to lowercase
  211. */
  212. define('SIMPLEPIE_LOWERCASE', 2);
  213. /**
  214. * Change to uppercase
  215. */
  216. define('SIMPLEPIE_UPPERCASE', 4);
  217. /**
  218. * PCRE for HTML attributes
  219. */
  220. define('SIMPLEPIE_PCRE_HTML_ATTRIBUTE', '((?:[\x09\x0A\x0B\x0C\x0D\x20]+[^\x09\x0A\x0B\x0C\x0D\x20\x2F\x3E][^\x09\x0A\x0B\x0C\x0D\x20\x2F\x3D\x3E]*(?:[\x09\x0A\x0B\x0C\x0D\x20]*=[\x09\x0A\x0B\x0C\x0D\x20]*(?:"(?:[^"]*)"|\'(?:[^\']*)\'|(?:[^\x09\x0A\x0B\x0C\x0D\x20\x22\x27\x3E][^\x09\x0A\x0B\x0C\x0D\x20\x3E]*)?))?)*)[\x09\x0A\x0B\x0C\x0D\x20]*');
  221. /**
  222. * PCRE for XML attributes
  223. */
  224. define('SIMPLEPIE_PCRE_XML_ATTRIBUTE', '((?:\s+(?:(?:[^\s:]+:)?[^\s:]+)\s*=\s*(?:"(?:[^"]*)"|\'(?:[^\']*)\'))*)\s*');
  225. /**
  226. * XML Namespace
  227. */
  228. define('SIMPLEPIE_NAMESPACE_XML', 'http://www.w3.org/XML/1998/namespace');
  229. /**
  230. * Atom 1.0 Namespace
  231. */
  232. define('SIMPLEPIE_NAMESPACE_ATOM_10', 'http://www.w3.org/2005/Atom');
  233. /**
  234. * Atom 0.3 Namespace
  235. */
  236. define('SIMPLEPIE_NAMESPACE_ATOM_03', 'http://purl.org/atom/ns#');
  237. /**
  238. * RDF Namespace
  239. */
  240. define('SIMPLEPIE_NAMESPACE_RDF', 'http://www.w3.org/1999/02/22-rdf-syntax-ns#');
  241. /**
  242. * RSS 0.90 Namespace
  243. */
  244. define('SIMPLEPIE_NAMESPACE_RSS_090', 'http://my.netscape.com/rdf/simple/0.9/');
  245. /**
  246. * RSS 1.0 Namespace
  247. */
  248. define('SIMPLEPIE_NAMESPACE_RSS_10', 'http://purl.org/rss/1.0/');
  249. /**
  250. * RSS 1.0 Content Module Namespace
  251. */
  252. define('SIMPLEPIE_NAMESPACE_RSS_10_MODULES_CONTENT', 'http://purl.org/rss/1.0/modules/content/');
  253. /**
  254. * RSS 2.0 Namespace
  255. * (Stupid, I know, but I'm certain it will confuse people less with support.)
  256. */
  257. define('SIMPLEPIE_NAMESPACE_RSS_20', '');
  258. /**
  259. * DC 1.0 Namespace
  260. */
  261. define('SIMPLEPIE_NAMESPACE_DC_10', 'http://purl.org/dc/elements/1.0/');
  262. /**
  263. * DC 1.1 Namespace
  264. */
  265. define('SIMPLEPIE_NAMESPACE_DC_11', 'http://purl.org/dc/elements/1.1/');
  266. /**
  267. * W3C Basic Geo (WGS84 lat/long) Vocabulary Namespace
  268. */
  269. define('SIMPLEPIE_NAMESPACE_W3C_BASIC_GEO', 'http://www.w3.org/2003/01/geo/wgs84_pos#');
  270. /**
  271. * GeoRSS Namespace
  272. */
  273. define('SIMPLEPIE_NAMESPACE_GEORSS', 'http://www.georss.org/georss');
  274. /**
  275. * Media RSS Namespace
  276. */
  277. define('SIMPLEPIE_NAMESPACE_MEDIARSS', 'http://search.yahoo.com/mrss/');
  278. /**
  279. * Wrong Media RSS Namespace. Caused by a long-standing typo in the spec.
  280. */
  281. define('SIMPLEPIE_NAMESPACE_MEDIARSS_WRONG', 'http://search.yahoo.com/mrss');
  282. /**
  283. * Wrong Media RSS Namespace #2. New namespace introduced in Media RSS 1.5.
  284. */
  285. define('SIMPLEPIE_NAMESPACE_MEDIARSS_WRONG2', 'http://video.search.yahoo.com/mrss');
  286. /**
  287. * Wrong Media RSS Namespace #3. A possible typo of the Media RSS 1.5 namespace.
  288. */
  289. define('SIMPLEPIE_NAMESPACE_MEDIARSS_WRONG3', 'http://video.search.yahoo.com/mrss/');
  290. /**
  291. * Wrong Media RSS Namespace #4. New spec location after the RSS Advisory Board takes it over, but not a valid namespace.
  292. */
  293. define('SIMPLEPIE_NAMESPACE_MEDIARSS_WRONG4', 'http://www.rssboard.org/media-rss');
  294. /**
  295. * Wrong Media RSS Namespace #5. A possible typo of the RSS Advisory Board URL.
  296. */
  297. define('SIMPLEPIE_NAMESPACE_MEDIARSS_WRONG5', 'http://www.rssboard.org/media-rss/');
  298. /**
  299. * iTunes RSS Namespace
  300. */
  301. define('SIMPLEPIE_NAMESPACE_ITUNES', 'http://www.itunes.com/dtds/podcast-1.0.dtd');
  302. /**
  303. * XHTML Namespace
  304. */
  305. define('SIMPLEPIE_NAMESPACE_XHTML', 'http://www.w3.org/1999/xhtml');
  306. /**
  307. * IANA Link Relations Registry
  308. */
  309. define('SIMPLEPIE_IANA_LINK_RELATIONS_REGISTRY', 'http://www.iana.org/assignments/relation/');
  310. /**
  311. * No file source
  312. */
  313. define('SIMPLEPIE_FILE_SOURCE_NONE', 0);
  314. /**
  315. * Remote file source
  316. */
  317. define('SIMPLEPIE_FILE_SOURCE_REMOTE', 1);
  318. /**
  319. * Local file source
  320. */
  321. define('SIMPLEPIE_FILE_SOURCE_LOCAL', 2);
  322. /**
  323. * fsockopen() file source
  324. */
  325. define('SIMPLEPIE_FILE_SOURCE_FSOCKOPEN', 4);
  326. /**
  327. * cURL file source
  328. */
  329. define('SIMPLEPIE_FILE_SOURCE_CURL', 8);
  330. /**
  331. * file_get_contents() file source
  332. */
  333. define('SIMPLEPIE_FILE_SOURCE_FILE_GET_CONTENTS', 16);
  334. /**
  335. * SimplePie
  336. *
  337. * @package SimplePie
  338. * @subpackage API
  339. */
  340. class SimplePie
  341. {
  342. /**
  343. * @var array Raw data
  344. * @access private
  345. */
  346. public $data = array();
  347. /**
  348. * @var mixed Error string
  349. * @access private
  350. */
  351. public $error;
  352. /**
  353. * @var object Instance of SimplePie_Sanitize (or other class)
  354. * @see SimplePie::set_sanitize_class()
  355. * @access private
  356. */
  357. public $sanitize;
  358. /**
  359. * @var string SimplePie Useragent
  360. * @see SimplePie::set_useragent()
  361. * @access private
  362. */
  363. public $useragent = SIMPLEPIE_USERAGENT;
  364. /**
  365. * @var string Feed URL
  366. * @see SimplePie::set_feed_url()
  367. * @access private
  368. */
  369. public $feed_url;
  370. /**
  371. * @var string Original feed URL, or new feed URL iff HTTP 301 Moved Permanently
  372. * @see SimplePie::subscribe_url()
  373. * @access private
  374. */
  375. public $permanent_url = null; //FreshRSS
  376. /**
  377. * @var object Instance of SimplePie_File to use as a feed
  378. * @see SimplePie::set_file()
  379. * @access private
  380. */
  381. public $file;
  382. /**
  383. * @var string Raw feed data
  384. * @see SimplePie::set_raw_data()
  385. * @access private
  386. */
  387. public $raw_data;
  388. /**
  389. * @var int Timeout for fetching remote files
  390. * @see SimplePie::set_timeout()
  391. * @access private
  392. */
  393. public $timeout = 10;
  394. /**
  395. * @var bool Forces fsockopen() to be used for remote files instead
  396. * of cURL, even if a new enough version is installed
  397. * @see SimplePie::force_fsockopen()
  398. * @access private
  399. */
  400. public $force_fsockopen = false;
  401. /**
  402. * @var bool Force the given data/URL to be treated as a feed no matter what
  403. * it appears like
  404. * @see SimplePie::force_feed()
  405. * @access private
  406. */
  407. public $force_feed = false;
  408. /**
  409. * @var bool Enable/Disable Caching
  410. * @see SimplePie::enable_cache()
  411. * @access private
  412. */
  413. public $cache = true;
  414. /**
  415. * @var int Cache duration (in seconds)
  416. * @see SimplePie::set_cache_duration()
  417. * @access private
  418. */
  419. public $cache_duration = 3600;
  420. /**
  421. * @var int Auto-discovery cache duration (in seconds)
  422. * @see SimplePie::set_autodiscovery_cache_duration()
  423. * @access private
  424. */
  425. public $autodiscovery_cache_duration = 604800; // 7 Days.
  426. /**
  427. * @var string Cache location (relative to executing script)
  428. * @see SimplePie::set_cache_location()
  429. * @access private
  430. */
  431. public $cache_location = './cache';
  432. /**
  433. * @var string Function that creates the cache filename
  434. * @see SimplePie::set_cache_name_function()
  435. * @access private
  436. */
  437. public $cache_name_function = 'md5';
  438. /**
  439. * @var bool Reorder feed by date descending
  440. * @see SimplePie::enable_order_by_date()
  441. * @access private
  442. */
  443. public $order_by_date = true;
  444. /**
  445. * @var mixed Force input encoding to be set to the follow value
  446. * (false, or anything type-cast to false, disables this feature)
  447. * @see SimplePie::set_input_encoding()
  448. * @access private
  449. */
  450. public $input_encoding = false;
  451. /**
  452. * @var int Feed Autodiscovery Level
  453. * @see SimplePie::set_autodiscovery_level()
  454. * @access private
  455. */
  456. public $autodiscovery = SIMPLEPIE_LOCATOR_ALL;
  457. /**
  458. * Class registry object
  459. *
  460. * @var SimplePie_Registry
  461. */
  462. public $registry;
  463. /**
  464. * @var int Maximum number of feeds to check with autodiscovery
  465. * @see SimplePie::set_max_checked_feeds()
  466. * @access private
  467. */
  468. public $max_checked_feeds = 10;
  469. /**
  470. * @var array All the feeds found during the autodiscovery process
  471. * @see SimplePie::get_all_discovered_feeds()
  472. * @access private
  473. */
  474. public $all_discovered_feeds = array();
  475. /**
  476. * @var string Web-accessible path to the handler_image.php file.
  477. * @see SimplePie::set_image_handler()
  478. * @access private
  479. */
  480. public $image_handler = '';
  481. /**
  482. * @var array Stores the URLs when multiple feeds are being initialized.
  483. * @see SimplePie::set_feed_url()
  484. * @access private
  485. */
  486. public $multifeed_url = array();
  487. /**
  488. * @var array Stores SimplePie objects when multiple feeds initialized.
  489. * @access private
  490. */
  491. public $multifeed_objects = array();
  492. /**
  493. * @var array Stores the get_object_vars() array for use with multifeeds.
  494. * @see SimplePie::set_feed_url()
  495. * @access private
  496. */
  497. public $config_settings = null;
  498. /**
  499. * @var integer Stores the number of items to return per-feed with multifeeds.
  500. * @see SimplePie::set_item_limit()
  501. * @access private
  502. */
  503. public $item_limit = 0;
  504. /**
  505. * @var array Stores the default attributes to be stripped by strip_attributes().
  506. * @see SimplePie::strip_attributes()
  507. * @access private
  508. */
  509. public $strip_attributes = array('bgsound', 'class', 'expr', 'id', 'style', 'onclick', 'onerror', 'onfinish', 'onmouseover', 'onmouseout', 'onfocus', 'onblur', 'lowsrc', 'dynsrc');
  510. /**
  511. * @var array Stores the default attributes to add to different tags by add_attributes().
  512. * @see SimplePie::add_attributes()
  513. * @access private
  514. */
  515. public $add_attributes = array('audio' => array('preload' => 'none'), 'iframe' => array('sandbox' => 'allow-scripts allow-same-origin'), 'video' => array('preload' => 'none')); //FreshRSS
  516. /**
  517. * @var array Stores the default tags to be stripped by strip_htmltags().
  518. * @see SimplePie::strip_htmltags()
  519. * @access private
  520. */
  521. public $strip_htmltags = array('base', 'blink', 'body', 'doctype', 'embed', 'font', 'form', 'frame', 'frameset', 'html', 'iframe', 'input', 'marquee', 'meta', 'noscript', 'object', 'param', 'script', 'style');
  522. /**
  523. * The SimplePie class contains feed level data and options
  524. *
  525. * To use SimplePie, create the SimplePie object with no parameters. You can
  526. * then set configuration options using the provided methods. After setting
  527. * them, you must initialise the feed using $feed->init(). At that point the
  528. * object's methods and properties will be available to you.
  529. *
  530. * Previously, it was possible to pass in the feed URL along with cache
  531. * options directly into the constructor. This has been removed as of 1.3 as
  532. * it caused a lot of confusion.
  533. *
  534. * @since 1.0 Preview Release
  535. */
  536. public function __construct()
  537. {
  538. if (version_compare(PHP_VERSION, '5.2', '<'))
  539. {
  540. trigger_error('PHP 4.x, 5.0 and 5.1 are no longer supported. Please upgrade to PHP 5.2 or newer.');
  541. die();
  542. }
  543. // Other objects, instances created here so we can set options on them
  544. $this->sanitize = new SimplePie_Sanitize();
  545. $this->registry = new SimplePie_Registry();
  546. if (func_num_args() > 0)
  547. {
  548. $level = defined('E_USER_DEPRECATED') ? E_USER_DEPRECATED : E_USER_WARNING;
  549. trigger_error('Passing parameters to the constructor is no longer supported. Please use set_feed_url(), set_cache_location(), and set_cache_duration() directly.', $level);
  550. $args = func_get_args();
  551. switch (count($args)) {
  552. case 3:
  553. $this->set_cache_duration($args[2]);
  554. case 2:
  555. $this->set_cache_location($args[1]);
  556. case 1:
  557. $this->set_feed_url($args[0]);
  558. $this->init();
  559. }
  560. }
  561. }
  562. /**
  563. * Used for converting object to a string
  564. */
  565. public function __toString()
  566. {
  567. return md5(serialize($this->data));
  568. }
  569. /**
  570. * Remove items that link back to this before destroying this object
  571. */
  572. public function __destruct()
  573. {
  574. if ((version_compare(PHP_VERSION, '5.3', '<') || !gc_enabled()) && !ini_get('zend.ze1_compatibility_mode'))
  575. {
  576. if (!empty($this->data['items']))
  577. {
  578. foreach ($this->data['items'] as $item)
  579. {
  580. $item->__destruct();
  581. }
  582. unset($item, $this->data['items']);
  583. }
  584. if (!empty($this->data['ordered_items']))
  585. {
  586. foreach ($this->data['ordered_items'] as $item)
  587. {
  588. $item->__destruct();
  589. }
  590. unset($item, $this->data['ordered_items']);
  591. }
  592. }
  593. }
  594. /**
  595. * Force the given data/URL to be treated as a feed
  596. *
  597. * This tells SimplePie to ignore the content-type provided by the server.
  598. * Be careful when using this option, as it will also disable autodiscovery.
  599. *
  600. * @since 1.1
  601. * @param bool $enable Force the given data/URL to be treated as a feed
  602. */
  603. public function force_feed($enable = false)
  604. {
  605. $this->force_feed = (bool) $enable;
  606. }
  607. /**
  608. * Set the URL of the feed you want to parse
  609. *
  610. * This allows you to enter the URL of the feed you want to parse, or the
  611. * website you want to try to use auto-discovery on. This takes priority
  612. * over any set raw data.
  613. *
  614. * You can set multiple feeds to mash together by passing an array instead
  615. * of a string for the $url. Remember that with each additional feed comes
  616. * additional processing and resources.
  617. *
  618. * @since 1.0 Preview Release
  619. * @see set_raw_data()
  620. * @param string|array $url This is the URL (or array of URLs) that you want to parse.
  621. */
  622. public function set_feed_url($url)
  623. {
  624. $this->multifeed_url = array();
  625. if (is_array($url))
  626. {
  627. foreach ($url as $value)
  628. {
  629. $this->multifeed_url[] = $this->registry->call('Misc', 'fix_protocol', array($value, 1));
  630. }
  631. }
  632. else
  633. {
  634. $this->feed_url = $this->registry->call('Misc', 'fix_protocol', array($url, 1));
  635. $this->permanent_url = $this->feed_url; //FreshRSS
  636. }
  637. }
  638. /**
  639. * Set an instance of {@see SimplePie_File} to use as a feed
  640. *
  641. * @param SimplePie_File &$file
  642. * @return bool True on success, false on failure
  643. */
  644. public function set_file(&$file)
  645. {
  646. if ($file instanceof SimplePie_File)
  647. {
  648. $this->feed_url = $file->url;
  649. $this->permanent_url = $this->feed_url; //FreshRSS
  650. $this->file =& $file;
  651. return true;
  652. }
  653. return false;
  654. }
  655. /**
  656. * Set the raw XML data to parse
  657. *
  658. * Allows you to use a string of RSS/Atom data instead of a remote feed.
  659. *
  660. * If you have a feed available as a string in PHP, you can tell SimplePie
  661. * to parse that data string instead of a remote feed. Any set feed URL
  662. * takes precedence.
  663. *
  664. * @since 1.0 Beta 3
  665. * @param string $data RSS or Atom data as a string.
  666. * @see set_feed_url()
  667. */
  668. public function set_raw_data($data)
  669. {
  670. $this->raw_data = $data;
  671. }
  672. /**
  673. * Set the the default timeout for fetching remote feeds
  674. *
  675. * This allows you to change the maximum time the feed's server to respond
  676. * and send the feed back.
  677. *
  678. * @since 1.0 Beta 3
  679. * @param int $timeout The maximum number of seconds to spend waiting to retrieve a feed.
  680. */
  681. public function set_timeout($timeout = 10)
  682. {
  683. $this->timeout = (int) $timeout;
  684. }
  685. /**
  686. * Force SimplePie to use fsockopen() instead of cURL
  687. *
  688. * @since 1.0 Beta 3
  689. * @param bool $enable Force fsockopen() to be used
  690. */
  691. public function force_fsockopen($enable = false)
  692. {
  693. $this->force_fsockopen = (bool) $enable;
  694. }
  695. /**
  696. * Enable/disable caching in SimplePie.
  697. *
  698. * This option allows you to disable caching all-together in SimplePie.
  699. * However, disabling the cache can lead to longer load times.
  700. *
  701. * @since 1.0 Preview Release
  702. * @param bool $enable Enable caching
  703. */
  704. public function enable_cache($enable = true)
  705. {
  706. $this->cache = (bool) $enable;
  707. }
  708. /**
  709. * Set the length of time (in seconds) that the contents of a feed will be
  710. * cached
  711. *
  712. * @param int $seconds The feed content cache duration
  713. */
  714. public function set_cache_duration($seconds = 3600)
  715. {
  716. $this->cache_duration = (int) $seconds;
  717. }
  718. /**
  719. * Set the length of time (in seconds) that the autodiscovered feed URL will
  720. * be cached
  721. *
  722. * @param int $seconds The autodiscovered feed URL cache duration.
  723. */
  724. public function set_autodiscovery_cache_duration($seconds = 604800)
  725. {
  726. $this->autodiscovery_cache_duration = (int) $seconds;
  727. }
  728. /**
  729. * Set the file system location where the cached files should be stored
  730. *
  731. * @param string $location The file system location.
  732. */
  733. public function set_cache_location($location = './cache')
  734. {
  735. $this->cache_location = (string) $location;
  736. }
  737. /**
  738. * Set whether feed items should be sorted into reverse chronological order
  739. *
  740. * @param bool $enable Sort as reverse chronological order.
  741. */
  742. public function enable_order_by_date($enable = true)
  743. {
  744. $this->order_by_date = (bool) $enable;
  745. }
  746. /**
  747. * Set the character encoding used to parse the feed
  748. *
  749. * This overrides the encoding reported by the feed, however it will fall
  750. * back to the normal encoding detection if the override fails
  751. *
  752. * @param string $encoding Character encoding
  753. */
  754. public function set_input_encoding($encoding = false)
  755. {
  756. if ($encoding)
  757. {
  758. $this->input_encoding = (string) $encoding;
  759. }
  760. else
  761. {
  762. $this->input_encoding = false;
  763. }
  764. }
  765. /**
  766. * Set how much feed autodiscovery to do
  767. *
  768. * @see SIMPLEPIE_LOCATOR_NONE
  769. * @see SIMPLEPIE_LOCATOR_AUTODISCOVERY
  770. * @see SIMPLEPIE_LOCATOR_LOCAL_EXTENSION
  771. * @see SIMPLEPIE_LOCATOR_LOCAL_BODY
  772. * @see SIMPLEPIE_LOCATOR_REMOTE_EXTENSION
  773. * @see SIMPLEPIE_LOCATOR_REMOTE_BODY
  774. * @see SIMPLEPIE_LOCATOR_ALL
  775. * @param int $level Feed Autodiscovery Level (level can be a combination of the above constants, see bitwise OR operator)
  776. */
  777. public function set_autodiscovery_level($level = SIMPLEPIE_LOCATOR_ALL)
  778. {
  779. $this->autodiscovery = (int) $level;
  780. }
  781. /**
  782. * Get the class registry
  783. *
  784. * Use this to override SimplePie's default classes
  785. * @see SimplePie_Registry
  786. * @return SimplePie_Registry
  787. */
  788. public function &get_registry()
  789. {
  790. return $this->registry;
  791. }
  792. /**#@+
  793. * Useful when you are overloading or extending SimplePie's default classes.
  794. *
  795. * @deprecated Use {@see get_registry()} instead
  796. * @link http://php.net/manual/en/language.oop5.basic.php#language.oop5.basic.extends PHP5 extends documentation
  797. * @param string $class Name of custom class
  798. * @return boolean True on success, false otherwise
  799. */
  800. /**
  801. * Set which class SimplePie uses for caching
  802. */
  803. public function set_cache_class($class = 'SimplePie_Cache')
  804. {
  805. return $this->registry->register('Cache', $class, true);
  806. }
  807. /**
  808. * Set which class SimplePie uses for auto-discovery
  809. */
  810. public function set_locator_class($class = 'SimplePie_Locator')
  811. {
  812. return $this->registry->register('Locator', $class, true);
  813. }
  814. /**
  815. * Set which class SimplePie uses for XML parsing
  816. */
  817. public function set_parser_class($class = 'SimplePie_Parser')
  818. {
  819. return $this->registry->register('Parser', $class, true);
  820. }
  821. /**
  822. * Set which class SimplePie uses for remote file fetching
  823. */
  824. public function set_file_class($class = 'SimplePie_File')
  825. {
  826. return $this->registry->register('File', $class, true);
  827. }
  828. /**
  829. * Set which class SimplePie uses for data sanitization
  830. */
  831. public function set_sanitize_class($class = 'SimplePie_Sanitize')
  832. {
  833. return $this->registry->register('Sanitize', $class, true);
  834. }
  835. /**
  836. * Set which class SimplePie uses for handling feed items
  837. */
  838. public function set_item_class($class = 'SimplePie_Item')
  839. {
  840. return $this->registry->register('Item', $class, true);
  841. }
  842. /**
  843. * Set which class SimplePie uses for handling author data
  844. */
  845. public function set_author_class($class = 'SimplePie_Author')
  846. {
  847. return $this->registry->register('Author', $class, true);
  848. }
  849. /**
  850. * Set which class SimplePie uses for handling category data
  851. */
  852. public function set_category_class($class = 'SimplePie_Category')
  853. {
  854. return $this->registry->register('Category', $class, true);
  855. }
  856. /**
  857. * Set which class SimplePie uses for feed enclosures
  858. */
  859. public function set_enclosure_class($class = 'SimplePie_Enclosure')
  860. {
  861. return $this->registry->register('Enclosure', $class, true);
  862. }
  863. /**
  864. * Set which class SimplePie uses for `<media:text>` captions
  865. */
  866. public function set_caption_class($class = 'SimplePie_Caption')
  867. {
  868. return $this->registry->register('Caption', $class, true);
  869. }
  870. /**
  871. * Set which class SimplePie uses for `<media:copyright>`
  872. */
  873. public function set_copyright_class($class = 'SimplePie_Copyright')
  874. {
  875. return $this->registry->register('Copyright', $class, true);
  876. }
  877. /**
  878. * Set which class SimplePie uses for `<media:credit>`
  879. */
  880. public function set_credit_class($class = 'SimplePie_Credit')
  881. {
  882. return $this->registry->register('Credit', $class, true);
  883. }
  884. /**
  885. * Set which class SimplePie uses for `<media:rating>`
  886. */
  887. public function set_rating_class($class = 'SimplePie_Rating')
  888. {
  889. return $this->registry->register('Rating', $class, true);
  890. }
  891. /**
  892. * Set which class SimplePie uses for `<media:restriction>`
  893. */
  894. public function set_restriction_class($class = 'SimplePie_Restriction')
  895. {
  896. return $this->registry->register('Restriction', $class, true);
  897. }
  898. /**
  899. * Set which class SimplePie uses for content-type sniffing
  900. */
  901. public function set_content_type_sniffer_class($class = 'SimplePie_Content_Type_Sniffer')
  902. {
  903. return $this->registry->register('Content_Type_Sniffer', $class, true);
  904. }
  905. /**
  906. * Set which class SimplePie uses item sources
  907. */
  908. public function set_source_class($class = 'SimplePie_Source')
  909. {
  910. return $this->registry->register('Source', $class, true);
  911. }
  912. /**#@-*/
  913. /**
  914. * Set the user agent string
  915. *
  916. * @param string $ua New user agent string.
  917. */
  918. public function set_useragent($ua = SIMPLEPIE_USERAGENT)
  919. {
  920. $this->useragent = (string) $ua;
  921. }
  922. /**
  923. * Set callback function to create cache filename with
  924. *
  925. * @param mixed $function Callback function
  926. */
  927. public function set_cache_name_function($function = 'md5')
  928. {
  929. if (is_callable($function))
  930. {
  931. $this->cache_name_function = $function;
  932. }
  933. }
  934. /**
  935. * Set options to make SP as fast as possible
  936. *
  937. * Forgoes a substantial amount of data sanitization in favor of speed. This
  938. * turns SimplePie into a dumb parser of feeds.
  939. *
  940. * @param bool $set Whether to set them or not
  941. */
  942. public function set_stupidly_fast($set = false)
  943. {
  944. if ($set)
  945. {
  946. $this->enable_order_by_date(false);
  947. $this->remove_div(false);
  948. $this->strip_comments(false);
  949. $this->strip_htmltags(false);
  950. $this->strip_attributes(false);
  951. $this->add_attributes(false);
  952. $this->set_image_handler(false);
  953. }
  954. }
  955. /**
  956. * Set maximum number of feeds to check with autodiscovery
  957. *
  958. * @param int $max Maximum number of feeds to check
  959. */
  960. public function set_max_checked_feeds($max = 10)
  961. {
  962. $this->max_checked_feeds = (int) $max;
  963. }
  964. public function remove_div($enable = true)
  965. {
  966. $this->sanitize->remove_div($enable);
  967. }
  968. public function strip_htmltags($tags = '', $encode = null)
  969. {
  970. if ($tags === '')
  971. {
  972. $tags = $this->strip_htmltags;
  973. }
  974. $this->sanitize->strip_htmltags($tags);
  975. if ($encode !== null)
  976. {
  977. $this->sanitize->encode_instead_of_strip($tags);
  978. }
  979. }
  980. public function encode_instead_of_strip($enable = true)
  981. {
  982. $this->sanitize->encode_instead_of_strip($enable);
  983. }
  984. public function strip_attributes($attribs = '')
  985. {
  986. if ($attribs === '')
  987. {
  988. $attribs = $this->strip_attributes;
  989. }
  990. $this->sanitize->strip_attributes($attribs);
  991. }
  992. public function add_attributes($attribs = '')
  993. {
  994. if ($attribs === '')
  995. {
  996. $attribs = $this->add_attributes;
  997. }
  998. $this->sanitize->add_attributes($attribs);
  999. }
  1000. /**
  1001. * Set the output encoding
  1002. *
  1003. * Allows you to override SimplePie's output to match that of your webpage.
  1004. * This is useful for times when your webpages are not being served as
  1005. * UTF-8. This setting will be obeyed by {@see handle_content_type()}, and
  1006. * is similar to {@see set_input_encoding()}.
  1007. *
  1008. * It should be noted, however, that not all character encodings can support
  1009. * all characters. If your page is being served as ISO-8859-1 and you try
  1010. * to display a Japanese feed, you'll likely see garbled characters.
  1011. * Because of this, it is highly recommended to ensure that your webpages
  1012. * are served as UTF-8.
  1013. *
  1014. * The number of supported character encodings depends on whether your web
  1015. * host supports {@link http://php.net/mbstring mbstring},
  1016. * {@link http://php.net/iconv iconv}, or both. See
  1017. * {@link http://simplepie.org/wiki/faq/Supported_Character_Encodings} for
  1018. * more information.
  1019. *
  1020. * @param string $encoding
  1021. */
  1022. public function set_output_encoding($encoding = 'UTF-8')
  1023. {
  1024. $this->sanitize->set_output_encoding($encoding);
  1025. }
  1026. public function strip_comments($strip = false)
  1027. {
  1028. $this->sanitize->strip_comments($strip);
  1029. }
  1030. /**
  1031. * Set element/attribute key/value pairs of HTML attributes
  1032. * containing URLs that need to be resolved relative to the feed
  1033. *
  1034. * Defaults to |a|@href, |area|@href, |blockquote|@cite, |del|@cite,
  1035. * |form|@action, |img|@longdesc, |img|@src, |input|@src, |ins|@cite,
  1036. * |q|@cite
  1037. *
  1038. * @since 1.0
  1039. * @param array|null $element_attribute Element/attribute key/value pairs, null for default
  1040. */
  1041. public function set_url_replacements($element_attribute = null)
  1042. {
  1043. $this->sanitize->set_url_replacements($element_attribute);
  1044. }
  1045. /**
  1046. * Set the handler to enable the display of cached images.
  1047. *
  1048. * @param str $page Web-accessible path to the handler_image.php file.
  1049. * @param str $qs The query string that the value should be passed to.
  1050. */
  1051. public function set_image_handler($page = false, $qs = 'i')
  1052. {
  1053. if ($page !== false)
  1054. {
  1055. $this->sanitize->set_image_handler($page . '?' . $qs . '=');
  1056. }
  1057. else
  1058. {
  1059. $this->image_handler = '';
  1060. }
  1061. }
  1062. /**
  1063. * Set the limit for items returned per-feed with multifeeds
  1064. *
  1065. * @param integer $limit The maximum number of items to return.
  1066. */
  1067. public function set_item_limit($limit = 0)
  1068. {
  1069. $this->item_limit = (int) $limit;
  1070. }
  1071. /**
  1072. * Enable throwing exceptions
  1073. *
  1074. * @param boolean $enable Should we throw exceptions, or use the old-style error property?
  1075. */
  1076. public function enable_exceptions($enable = true)
  1077. {
  1078. $this->enable_exceptions = $enable;
  1079. }
  1080. function cleanMd5($rss) { //FreshRSS
  1081. return md5(preg_replace(array('#<(lastBuildDate|pubDate|updated|feedDate|dc:date|slash:comments)>[^<]+</\\1>#', '#<!--.+?-->#s'), '', $rss));
  1082. }
  1083. /**
  1084. * Initialize the feed object
  1085. *
  1086. * This is what makes everything happen. Period. This is where all of the
  1087. * configuration options get processed, feeds are fetched, cached, and
  1088. * parsed, and all of that other good stuff.
  1089. *
  1090. * @return positive integer with modification time if using cache, boolean true if otherwise successful, false otherwise
  1091. */
  1092. public function init()
  1093. {
  1094. // Check absolute bare minimum requirements.
  1095. if (!extension_loaded('xml') || !extension_loaded('pcre'))
  1096. {
  1097. return false;
  1098. }
  1099. // Then check the xml extension is sane (i.e., libxml 2.7.x issue on PHP < 5.2.9 and libxml 2.7.0 to 2.7.2 on any version) if we don't have xmlreader.
  1100. elseif (!extension_loaded('xmlreader'))
  1101. {
  1102. static $xml_is_sane = null;
  1103. if ($xml_is_sane === null)
  1104. {
  1105. $parser_check = xml_parser_create();
  1106. xml_parse_into_struct($parser_check, '<foo>&amp;</foo>', $values);
  1107. xml_parser_free($parser_check);
  1108. $xml_is_sane = isset($values[0]['value']);
  1109. }
  1110. if (!$xml_is_sane)
  1111. {
  1112. return false;
  1113. }
  1114. }
  1115. if (method_exists($this->sanitize, 'set_registry'))
  1116. {
  1117. $this->sanitize->set_registry($this->registry);
  1118. }
  1119. // Pass whatever was set with config options over to the sanitizer.
  1120. // Pass the classes in for legacy support; new classes should use the registry instead
  1121. $this->sanitize->pass_cache_data($this->cache, $this->cache_location, $this->cache_name_function, $this->registry->get_class('Cache'));
  1122. $this->sanitize->pass_file_data($this->registry->get_class('File'), $this->timeout, $this->useragent, $this->force_fsockopen);
  1123. if (!empty($this->multifeed_url))
  1124. {
  1125. $i = 0;
  1126. $success = 0;
  1127. $this->multifeed_objects = array();
  1128. $this->error = array();
  1129. foreach ($this->multifeed_url as $url)
  1130. {
  1131. $this->multifeed_objects[$i] = clone $this;
  1132. $this->multifeed_objects[$i]->set_feed_url($url);
  1133. $single_success = $this->multifeed_objects[$i]->init();
  1134. $success |= $single_success;
  1135. if (!$single_success)
  1136. {
  1137. $this->error[$i] = $this->multifeed_objects[$i]->error();
  1138. }
  1139. $i++;
  1140. }
  1141. return (bool) $success;
  1142. }
  1143. elseif ($this->feed_url === null && $this->raw_data === null)
  1144. {
  1145. return false;
  1146. }
  1147. $this->error = null;
  1148. $this->data = array();
  1149. $this->multifeed_objects = array();
  1150. $cache = false;
  1151. if ($this->feed_url !== null)
  1152. {
  1153. $parsed_feed_url = $this->registry->call('Misc', 'parse_url', array($this->feed_url));
  1154. // Decide whether to enable caching
  1155. if ($this->cache && $parsed_feed_url['scheme'] !== '')
  1156. {
  1157. $cache = $this->registry->call('Cache', 'get_handler', array($this->cache_location, call_user_func($this->cache_name_function, $this->feed_url), 'spc'));
  1158. }
  1159. // Fetch the data via SimplePie_File into $this->raw_data
  1160. if (($fetched = $this->fetch_data($cache)) === true)
  1161. {
  1162. return $this->data['mtime']; //FreshRSS
  1163. }
  1164. elseif ($fetched === false) {
  1165. return false;
  1166. }
  1167. list($headers, $sniffed) = $fetched;
  1168. if (isset($this->data['md5'])) { //FreshRSS
  1169. $md5 = $this->data['md5'];
  1170. }
  1171. }
  1172. // Set up array of possible encodings
  1173. $encodings = array();
  1174. // First check to see if input has been overridden.
  1175. if ($this->input_encoding !== false)
  1176. {
  1177. $encodings[] = strtoupper($this->input_encoding);
  1178. }
  1179. $application_types = array('application/xml', 'application/xml-dtd', 'application/xml-external-parsed-entity');
  1180. $text_types = array('text/xml', 'text/xml-external-parsed-entity');
  1181. // RFC 3023 (only applies to sniffed content)
  1182. if (isset($sniffed))
  1183. {
  1184. if (in_array($sniffed, $application_types) || substr($sniffed, 0, 12) === 'application/' && substr($sniffed, -4) === '+xml')
  1185. {
  1186. if (isset($headers['content-type']) && preg_match('/;\x20?charset=([^;]*)/i', $headers['content-type'], $charset))
  1187. {
  1188. $encodings[] = strtoupper($charset[1]);
  1189. }
  1190. else
  1191. {
  1192. $encodings[] = ''; //FreshRSS: Let the DOM parser decide first
  1193. }
  1194. }
  1195. elseif (in_array($sniffed, $text_types) || substr($sniffed, 0, 5) === 'text/' && substr($sniffed, -4) === '+xml')
  1196. {
  1197. if (isset($headers['content-type']) && preg_match('/;\x20?charset=([^;]*)/i', $headers['content-type'], $charset))
  1198. {
  1199. $encodings[] = strtoupper($charset[1]);
  1200. }
  1201. else
  1202. {
  1203. $encodings[] = ''; //FreshRSS: Let the DOM parser decide first
  1204. }
  1205. $encodings[] = 'US-ASCII';
  1206. }
  1207. // Text MIME-type default
  1208. elseif (substr($sniffed, 0, 5) === 'text/')
  1209. {
  1210. $encodings[] = 'US-ASCII';
  1211. }
  1212. }
  1213. // Fallback to XML 1.0 Appendix F.1/UTF-8/ISO-8859-1
  1214. $encodings = array_merge($encodings, $this->registry->call('Misc', 'xml_encoding', array($this->raw_data, &$this->registry)));
  1215. $encodings[] = 'UTF-8';
  1216. $encodings[] = 'ISO-8859-1';
  1217. // There's no point in trying an encoding twice
  1218. $encodings = array_unique($encodings);
  1219. // Loop through each possible encoding, till we return something, or run out of possibilities
  1220. foreach ($encodings as $encoding)
  1221. {
  1222. // Change the encoding to UTF-8 (as we always use UTF-8 internally)
  1223. if ($utf8_data = (empty($encoding) || $encoding === 'UTF-8') ? $this->raw_data : //FreshRSS
  1224. $this->registry->call('Misc', 'change_encoding', array($this->raw_data, $encoding, 'UTF-8')))
  1225. {
  1226. // Create new parser
  1227. $parser = $this->registry->create('Parser');
  1228. // If it's parsed fine
  1229. if ($parser->parse($utf8_data, empty($encoding) ? '' : 'UTF-8')) //FreshRSS
  1230. {
  1231. $this->data = $parser->get_data();
  1232. if (!($this->get_type() & ~SIMPLEPIE_TYPE_NONE))
  1233. {
  1234. $this->error = "A feed could not be found at $this->feed_url. This does not appear to be a valid RSS or Atom feed.";
  1235. $this->registry->call('Misc', 'error', array($this->error, E_USER_NOTICE, __FILE__, __LINE__));
  1236. return false;
  1237. }
  1238. if (isset($headers))
  1239. {
  1240. $this->data['headers'] = $headers;
  1241. }
  1242. $this->data['build'] = SIMPLEPIE_BUILD;
  1243. $this->data['mtime'] = time(); //FreshRSS
  1244. $this->data['md5'] = empty($md5) ? $this->cleanMd5($this->raw_data) : $md5; //FreshRSS
  1245. // Cache the file if caching is enabled
  1246. if ($cache && !$cache->save($this))
  1247. {
  1248. trigger_error("$this->cache_location is not writeable. Make sure you've set the correct relative or absolute path, and that the location is server-writable.", E_USER_WARNING);
  1249. }
  1250. return true;
  1251. }
  1252. }
  1253. }
  1254. if (isset($parser))
  1255. {
  1256. // We have an error, just set SimplePie_Misc::error to it and quit
  1257. $this->error = sprintf('This XML document is invalid, likely due to invalid characters. XML error: %s at line %d, column %d', $parser->get_error_string(), $parser->get_current_line(), $parser->get_current_column());
  1258. }
  1259. else
  1260. {
  1261. $this->error = 'The data could not be converted to UTF-8. You MUST have either the iconv or mbstring extension installed. Upgrading to PHP 5.x (which includes iconv) is highly recommended.';
  1262. }
  1263. $this->registry->call('Misc', 'error', array($this->error, E_USER_NOTICE, __FILE__, __LINE__));
  1264. return false;
  1265. }
  1266. /**
  1267. * Fetch the data via SimplePie_File
  1268. *
  1269. * If the data is already cached, attempt to fetch it from there instead
  1270. * @param SimplePie_Cache|false $cache Cache handler, or false to not load from the cache
  1271. * @return array|true Returns true if the data was loaded from the cache, or an array of HTTP headers and sniffed type
  1272. */
  1273. protected function fetch_data(&$cache)
  1274. {
  1275. // If it's enabled, use the cache
  1276. if ($cache)
  1277. {
  1278. // Load the Cache
  1279. $this->data = $cache->load();
  1280. if (!empty($this->data))
  1281. {
  1282. // If the cache is for an outdated build of SimplePie
  1283. if (!isset($this->data['build']) || $this->data['build'] !== SIMPLEPIE_BUILD)
  1284. {
  1285. $cache->unlink();
  1286. $this->data = array();
  1287. }
  1288. // If we've hit a collision just rerun it with caching disabled
  1289. elseif (isset($this->data['url']) && $this->data['url'] !== $this->feed_url)
  1290. {
  1291. $cache = false;
  1292. $this->data = array();
  1293. }
  1294. // If we've got a non feed_url stored (if the page isn't actually a feed, or is a redirect) use that URL.
  1295. elseif (isset($this->data['feed_url']))
  1296. {
  1297. // If the autodiscovery cache is still valid use it.
  1298. if ($cache->mtime() + $this->autodiscovery_cache_duration > time())
  1299. {
  1300. // Do not need to do feed autodiscovery yet.
  1301. if ($this->data['feed_url'] !== $this->data['url'])
  1302. {
  1303. $this->set_feed_url($this->data['feed_url']);
  1304. return $this->init();
  1305. }
  1306. $cache->unlink();
  1307. $this->data = array();
  1308. }
  1309. }
  1310. // Check if the cache has been updated
  1311. elseif ($cache->mtime() + $this->cache_duration < time())
  1312. {
  1313. // If we have last-modified and/or etag set
  1314. //if (isset($this->data['headers']['last-modified']) || isset($this->data['headers']['etag'])) //FreshRSS removed
  1315. {
  1316. $headers = array(
  1317. 'Accept' => 'application/atom+xml, application/rss+xml, application/rdf+xml;q=0.9, application/xml;q=0.8, text/xml;q=0.8, text/html;q=0.7, unknown/unknown;q=0.1, application/unknown;q=0.1, */*;q=0.1',
  1318. );
  1319. if (isset($this->data['headers']['last-modified']))
  1320. {
  1321. $headers['if-modified-since'] = $this->data['headers']['last-modified'];
  1322. }
  1323. if (isset($this->data['headers']['etag']))
  1324. {
  1325. $headers['if-none-match'] = $this->data['headers']['etag'];
  1326. }
  1327. $file = $this->registry->create('File', array($this->feed_url, $this->timeout, 5, $headers, $this->useragent, $this->force_fsockopen)); //FreshRSS
  1328. if ($file->success)
  1329. {
  1330. if ($file->status_code === 304)
  1331. {
  1332. $cache->touch();
  1333. return true;
  1334. }
  1335. }
  1336. else
  1337. {
  1338. $this->error = $file->error; //FreshRSS
  1339. return !empty($this->data); //FreshRSS
  1340. //unset($file); //FreshRSS removed
  1341. }
  1342. }
  1343. { //FreshRSS
  1344. $md5 = $this->cleanMd5($file->body);
  1345. if ($this->data['md5'] === $md5) {
  1346. syslog(LOG_DEBUG, 'SimplePie MD5 cache match for ' . $this->feed_url);
  1347. $cache->touch();
  1348. return true; //Content unchanged even though server did not send a 304
  1349. } else {
  1350. syslog(LOG_DEBUG, 'SimplePie MD5 cache no match for ' . $this->feed_url);
  1351. $this->data['md5'] = $md5;
  1352. }
  1353. }
  1354. }
  1355. // If the cache is still valid, just return true
  1356. else
  1357. {
  1358. $this->raw_data = false;
  1359. return true;
  1360. }
  1361. }
  1362. // If the cache is empty, delete it
  1363. else
  1364. {
  1365. $cache->unlink();
  1366. $this->data = array();
  1367. }
  1368. }
  1369. // If we don't already have the file (it'll only exist if we've opened it to check if the cache has been modified), open it.
  1370. if (!isset($file))
  1371. {
  1372. if ($this->file instanceof SimplePie_File && $this->file->url === $this->feed_url)
  1373. {
  1374. $file =& $this->file;
  1375. }
  1376. else
  1377. {
  1378. $headers = array(
  1379. 'Accept' => 'application/atom+xml, application/rss+xml, application/rdf+xml;q=0.9, application/xml;q=0.8, text/xml;q=0.8, text/html;q=0.7, unknown/unknown;q=0.1, application/unknown;q=0.1, */*;q=0.1',
  1380. );
  1381. $file = $this->registry->create('File', array($this->feed_url, $this->timeout, 5, $headers, $this->useragent, $this->force_fsockopen));
  1382. }
  1383. }
  1384. // If the file connection has an error, set SimplePie::error to that and quit
  1385. if (!$file->success && !($file->method & SIMPLEPIE_FILE_SOURCE_REMOTE === 0 || ($file->status_code === 200 || $file->status_code > 206 && $file->status_code < 300)))
  1386. {
  1387. $this->error = $file->error;
  1388. return !empty($this->data);
  1389. }
  1390. if (!$this->force_feed)
  1391. {
  1392. // Check if the supplied URL is a feed, if it isn't, look for it.
  1393. $locate = $this->registry->create('Locator', array(&$file, $this->timeout, $this->useragent, $this->max_checked_feeds));
  1394. if (!$locate->is_feed($file))
  1395. {
  1396. // We need to unset this so that if SimplePie::set_file() has been called that object is untouched
  1397. unset($file);
  1398. try
  1399. {
  1400. if (!($file = $locate->find($this->autodiscovery, $this->all_discovered_feeds)))
  1401. {
  1402. $this->error = "A feed could not be found at $this->feed_url. A feed with an invalid mime type may fall victim to this error, or " . SIMPLEPIE_NAME . " was unable to auto-discover it.. Use force_feed() if you are certain this URL is a real feed.";
  1403. $this->registry->call('Misc', 'error', array($this->error, E_USER_NOTICE, __FILE__, __LINE__));
  1404. return false;
  1405. }
  1406. }
  1407. catch (SimplePie_Exception $e)
  1408. {
  1409. // This is usually because DOMDocument doesn't exist
  1410. $this->error = $e->getMessage();
  1411. $this->registry->call('Misc', 'error', array($this->error, E_USER_NOTICE, $e->getFile(), $e->getLine()));
  1412. return false;
  1413. }
  1414. if ($cache)
  1415. {
  1416. $this->data = array('url' => $this->feed_url, 'feed_url' => $file->url, 'build' => SIMPLEPIE_BUILD);
  1417. $this->data['mtime'] = time(); //FreshRSS
  1418. $this->data['md5'] = empty($md5) ? $this->cleanMd5($file->body) : $md5; //FreshRSS
  1419. if (!$cache->save($this))
  1420. {
  1421. trigger_error("$this->cache_location is not writeable. Make sure you've set the correct relative or absolute path, and that the location is server-writable.", E_USER_WARNING);
  1422. }
  1423. $cache = $this->registry->call('Cache', 'get_handler', array($this->cache_location, call_user_func($this->cache_name_function, $file->url), 'spc'));
  1424. }
  1425. $this->feed_url = $file->url;
  1426. }
  1427. $locate = null;
  1428. }
  1429. $this->raw_data = $file->body;
  1430. $this->permanent_url = $file->permanent_url; //FreshRSS
  1431. $headers = $file->headers;
  1432. $sniffer = $this->registry->create('Content_Type_Sniffer', array(&$file));
  1433. $sniffed = $sniffer->get_type();
  1434. return array($headers, $sniffed);
  1435. }
  1436. /**
  1437. * Get the error message for the occured error
  1438. *
  1439. * @return string|array Error message, or array of messages for multifeeds
  1440. */
  1441. public function error()
  1442. {
  1443. return $this->error;
  1444. }
  1445. /**
  1446. * Get the raw XML
  1447. *
  1448. * This is the same as the old `$feed->enable_xml_dump(true)`, but returns
  1449. * the data instead of printing it.
  1450. *
  1451. * @return string|boolean Raw XML data, false if the cache is used
  1452. */
  1453. public function get_raw_data()
  1454. {
  1455. return $this->raw_data;
  1456. }
  1457. /**
  1458. * Get the character encoding used for output
  1459. *
  1460. * @since Preview Release
  1461. * @return string
  1462. */
  1463. public function get_encoding()
  1464. {
  1465. return $this->sanitize->output_encoding;
  1466. }
  1467. /**
  1468. * Send the content-type header with correct encoding
  1469. *
  1470. * This method ensures that the SimplePie-enabled page is being served with
  1471. * the correct {@link http://www.iana.org/assignments/media-types/ mime-type}
  1472. * and character encoding HTTP headers (character encoding determined by the
  1473. * {@see set_output_encoding} config option).
  1474. *
  1475. * This won't work properly if any content or whitespace has already been
  1476. * sent to the browser, because it relies on PHP's
  1477. * {@link http://php.net/header header()} function, and these are the
  1478. * circumstances under which the function works.
  1479. *
  1480. * Because it's setting these settings for the entire page (as is the nature
  1481. * of HTTP headers), this should only be used once per page (again, at the
  1482. * top).
  1483. *
  1484. * @param string $mime MIME type to serve the page as
  1485. */
  1486. public function handle_content_type($mime = 'text/html')
  1487. {
  1488. if (!headers_sent())
  1489. {
  1490. $header = "Content-type: $mime;";
  1491. if ($this->get_encoding())
  1492. {
  1493. $header .= ' charset=' . $this->get_encoding();
  1494. }
  1495. else
  1496. {
  1497. $header .= ' charset=UTF-8';
  1498. }
  1499. header($header);
  1500. }
  1501. }
  1502. /**
  1503. * Get the type of the feed
  1504. *
  1505. * This returns a SIMPLEPIE_TYPE_* constant, which can be tested against
  1506. * using {@link http://php.net/language.operators.bitwise bitwise operators}
  1507. *
  1508. * @since 0.8 (usage changed to using constants in 1.0)
  1509. * @see SIMPLEPIE_TYPE_NONE Unknown.
  1510. * @see SIMPLEPIE_TYPE_RSS_090 RSS 0.90.
  1511. * @see SIMPLEPIE_TYPE_RSS_091_NETSCAPE RSS 0.91 (Netscape).
  1512. * @see SIMPLEPIE_TYPE_RSS_091_USERLAND RSS 0.91 (Userland).
  1513. * @see SIMPLEPIE_TYPE_RSS_091 RSS 0.91.
  1514. * @see SIMPLEPIE_TYPE_RSS_092 RSS 0.92.
  1515. * @see SIMPLEPIE_TYPE_RSS_093 RSS 0.93.
  1516. * @see SIMPLEPIE_TYPE_RSS_094 RSS 0.94.
  1517. * @see SIMPLEPIE_TYPE_RSS_10 RSS 1.0.
  1518. * @see SIMPLEPIE_TYPE_RSS_20 RSS 2.0.x.
  1519. * @see SIMPLEPIE_TYPE_RSS_RDF RDF-based RSS.
  1520. * @see SIMPLEPIE_TYPE_RSS_SYNDICATION Non-RDF-based RSS (truly intended as syndication format).
  1521. * @see SIMPLEPIE_TYPE_RSS_ALL Any version of RSS.
  1522. * @see SIMPLEPIE_TYPE_ATOM_03 Atom 0.3.
  1523. * @see SIMPLEPIE_TYPE_ATOM_10 Atom 1.0.
  1524. * @see SIMPLEPIE_TYPE_ATOM_ALL Any version of Atom.
  1525. * @see SIMPLEPIE_TYPE_ALL Any known/supported feed type.
  1526. * @return int SIMPLEPIE_TYPE_* constant
  1527. */
  1528. public function get_type()
  1529. {
  1530. if (!isset($this->data['type']))
  1531. {
  1532. $this->data['type'] = SIMPLEPIE_TYPE_ALL;
  1533. if (isset($this->data['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['feed']))
  1534. {
  1535. $this->data['type'] &= SIMPLEPIE_TYPE_ATOM_10;
  1536. }
  1537. elseif (isset($this->data['child'][SIMPLEPIE_NAMESPACE_ATOM_03]['feed']))
  1538. {
  1539. $this->data['type'] &= SIMPLEPIE_TYPE_ATOM_03;
  1540. }
  1541. elseif (isset($this->data['child'][SIMPLEPIE_NAMESPACE_RDF]['RDF']))
  1542. {
  1543. if (isset($this->data['child'][SIMPLEPIE_NAMESPACE_RDF]['RDF'][0]['child'][SIMPLEPIE_NAMESPACE_RSS_10]['channel'])
  1544. || isset($this->data['child'][SIMPLEPIE_NAMESPACE_RDF]['RDF'][0]['child'][SIMPLEPIE_NAMESPACE_RSS_10]['image'])
  1545. || isset($this->data['child'][SIMPLEPIE_NAMESPACE_RDF]['RDF'][0]['child'][SIMPLEPIE_NAMESPACE_RSS_10]['item'])
  1546. || isset($this->data['child'][SIMPLEPIE_NAMESPACE_RDF]['RDF'][0]['child'][SIMPLEPIE_NAMESPACE_RSS_10]['textinput']))
  1547. {
  1548. $this->data['type'] &= SIMPLEPIE_TYPE_RSS_10;
  1549. }
  1550. if (isset($this->data['child'][SIMPLEPIE_NAMESPACE_RDF]['RDF'][0]['child'][SIMPLEPIE_NAMESPACE_RSS_090]['channel'])
  1551. || isset($this->data['child'][SIMPLEPIE_NAMESPACE_RDF]['RDF'][0]['child'][SIMPLEPIE_NAMESPACE_RSS_090]['image'])
  1552. || isset($this->data['child'][SIMPLEPIE_NAMESPACE_RDF]['RDF'][0]['child'][SIMPLEPIE_NAMESPACE_RSS_090]['item'])
  1553. || isset($this->data['child'][SIMPLEPIE_NAMESPACE_RDF]['RDF'][0]['child'][SIMPLEPIE_NAMESPACE_RSS_090]['textinput']))
  1554. {
  1555. $this->data['type'] &= SIMPLEPIE_TYPE_RSS_090;
  1556. }
  1557. }
  1558. elseif (isset($this->data['child'][SIMPLEPIE_NAMESPACE_RSS_20]['rss']))
  1559. {
  1560. $this->data['type'] &= SIMPLEPIE_TYPE_RSS_ALL;
  1561. if (isset($this->data['child'][SIMPLEPIE_NAMESPACE_RSS_20]['rss'][0]['attribs']['']['version']))
  1562. {
  1563. switch (trim($this->data['child'][SIMPLEPIE_NAMESPACE_RSS_20]['rss'][0]['attribs']['']['version']))
  1564. {
  1565. case '0.91':
  1566. $this->data['type'] &= SIMPLEPIE_TYPE_RSS_091;
  1567. if (isset($this->data['child'][SIMPLEPIE_NAMESPACE_RSS_20]['rss'][0]['child'][SIMPLEPIE_NAMESPACE_RSS_20]['skiphours']['hour'][0]['data']))
  1568. {
  1569. switch (trim($this->data['child'][SIMPLEPIE_NAMESPACE_RSS_20]['rss'][0]['child'][SIMPLEPIE_NAMESPACE_RSS_20]['skiphours']['hour'][0]['data']))
  1570. {
  1571. case '0':
  1572. $this->data['type'] &= SIMPLEPIE_TYPE_RSS_091_NETSCAPE;
  1573. break;
  1574. case '24':
  1575. $this->data['type'] &= SIMPLEPIE_TYPE_RSS_091_USERLAND;
  1576. break;
  1577. }
  1578. }
  1579. break;
  1580. case '0.92':
  1581. $this->data['type'] &= SIMPLEPIE_TYPE_RSS_092;
  1582. break;
  1583. case '0.93':
  1584. $this->data['type'] &= SIMPLEPIE_TYPE_RSS_093;
  1585. break;
  1586. case '0.94':
  1587. $this->data['type'] &= SIMPLEPIE_TYPE_RSS_094;
  1588. break;
  1589. case '2.0':
  1590. $this->data['type'] &= SIMPLEPIE_TYPE_RSS_20;
  1591. break;
  1592. }
  1593. }
  1594. }
  1595. else
  1596. {
  1597. $this->data['type'] = SIMPLEPIE_TYPE_NONE;
  1598. }
  1599. }
  1600. return $this->data['type'];
  1601. }
  1602. /**
  1603. * Get the URL for the feed
  1604. *
  1605. * When the 'permanent' mode is enabled, returns the original feed URL,
  1606. * except in the case of an `HTTP 301 Moved Permanently` status response,
  1607. * in which case the location of the first redirection is returned.
  1608. *
  1609. * When the 'permanent' mode is disabled (default),
  1610. * may or may not be different from the URL passed to {@see set_feed_url()},
  1611. * depending on whether auto-discovery was used.
  1612. *
  1613. * @since Preview Release (previously called `get_feed_url()` since SimplePie 0.8.)
  1614. * @todo Support <itunes:new-feed-url>
  1615. * @todo Also, |atom:link|@rel=self
  1616. * @param bool $permanent Permanent mode to return only the original URL or the first redirection
  1617. * iff it is a 301 redirection
  1618. * @return string|null
  1619. */
  1620. public function subscribe_url($permanent = false)
  1621. {
  1622. if ($permanent) //FreshRSS
  1623. {
  1624. if ($this->permanent_url !== null)
  1625. {
  1626. return $this->sanitize($this->permanent_url, SIMPLEPIE_CONSTRUCT_IRI);
  1627. }
  1628. }
  1629. else
  1630. {
  1631. if ($this->feed_url !== null)
  1632. {
  1633. return $this->sanitize($this->feed_url, SIMPLEPIE_CONSTRUCT_IRI);
  1634. }
  1635. }
  1636. return null;
  1637. }
  1638. /**
  1639. * Get data for an feed-level element
  1640. *
  1641. * This method allows you to get access to ANY element/attribute that is a
  1642. * sub-element of the opening feed tag.
  1643. *
  1644. * The return value is an indexed array of elements matching the given
  1645. * namespace and tag name. Each element has `attribs`, `data` and `child`
  1646. * subkeys. For `attribs` and `child`, these contain namespace subkeys.
  1647. * `attribs` then has one level of associative name => value data (where
  1648. * `value` is a string) after the namespace. `child` has tag-indexed keys
  1649. * after the namespace, each member of which is an indexed array matching
  1650. * this same format.
  1651. *
  1652. * For example:
  1653. * <pre>
  1654. * // This is probably a bad example because we already support
  1655. * // <media:content> natively, but it shows you how to parse through
  1656. * // the nodes.
  1657. * $group = $item->get_item_tags(SIMPLEPIE_NAMESPACE_MEDIARSS, 'group');
  1658. * $content = $group[0]['child'][SIMPLEPIE_NAMESPACE_MEDIARSS]['content'];
  1659. * $file = $content[0]['attribs']['']['url'];
  1660. * echo $file;
  1661. * </pre>
  1662. *
  1663. * @since 1.0
  1664. * @see http://simplepie.org/wiki/faq/supported_xml_namespaces
  1665. * @param string $namespace The URL of the XML namespace of the elements you're trying to access
  1666. * @param string $tag Tag name
  1667. * @return array
  1668. */
  1669. public function get_feed_tags($namespace, $tag)
  1670. {
  1671. $type = $this->get_type();
  1672. if ($type & SIMPLEPIE_TYPE_ATOM_10)
  1673. {
  1674. if (isset($this->data['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['feed'][0]['child'][$namespace][$tag]))
  1675. {
  1676. return $this->data['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['feed'][0]['child'][$namespace][$tag];
  1677. }
  1678. }
  1679. if ($type & SIMPLEPIE_TYPE_ATOM_03)
  1680. {
  1681. if (isset($this->data['child'][SIMPLEPIE_NAMESPACE_ATOM_03]['feed'][0]['child'][$namespace][$tag]))
  1682. {
  1683. return $this->data['child'][SIMPLEPIE_NAMESPACE_ATOM_03]['feed'][0]['child'][$namespace][$tag];
  1684. }
  1685. }
  1686. if ($type & SIMPLEPIE_TYPE_RSS_RDF)
  1687. {
  1688. if (isset($this->data['child'][SIMPLEPIE_NAMESPACE_RDF]['RDF'][0]['child'][$namespace][$tag]))
  1689. {
  1690. return $this->data['child'][SIMPLEPIE_NAMESPACE_RDF]['RDF'][0]['child'][$namespace][$tag];
  1691. }
  1692. }
  1693. if ($type & SIMPLEPIE_TYPE_RSS_SYNDICATION)
  1694. {
  1695. if (isset($this->data['child'][SIMPLEPIE_NAMESPACE_RSS_20]['rss'][0]['child'][$namespace][$tag]))
  1696. {
  1697. return $this->data['child'][SIMPLEPIE_NAMESPACE_RSS_20]['rss'][0]['child'][$namespace][$tag];
  1698. }
  1699. }
  1700. return null;
  1701. }
  1702. /**
  1703. * Get data for an channel-level element
  1704. *
  1705. * This method allows you to get access to ANY element/attribute in the
  1706. * channel/header section of the feed.
  1707. *
  1708. * See {@see SimplePie::get_feed_tags()} for a description of the return value
  1709. *
  1710. * @since 1.0
  1711. * @see http://simplepie.org/wiki/faq/supported_xml_namespaces
  1712. * @param string $namespace The URL of the XML namespace of the elements you're trying to access
  1713. * @param string $tag Tag name
  1714. * @return array
  1715. */
  1716. public function get_channel_tags($namespace, $tag)
  1717. {
  1718. $type = $this->get_type();
  1719. if ($type & SIMPLEPIE_TYPE_ATOM_ALL)
  1720. {
  1721. if ($return = $this->get_feed_tags($namespace, $tag))
  1722. {
  1723. return $return;
  1724. }
  1725. }
  1726. if ($type & SIMPLEPIE_TYPE_RSS_10)
  1727. {
  1728. if ($channel = $this->get_feed_tags(SIMPLEPIE_NAMESPACE_RSS_10, 'channel'))
  1729. {
  1730. if (isset($channel[0]['child'][$namespace][$tag]))
  1731. {
  1732. return $channel[0]['child'][$namespace][$tag];
  1733. }
  1734. }
  1735. }
  1736. if ($type & SIMPLEPIE_TYPE_RSS_090)
  1737. {
  1738. if ($channel = $this->get_feed_tags(SIMPLEPIE_NAMESPACE_RSS_090, 'channel'))
  1739. {
  1740. if (isset($channel[0]['child'][$namespace][$tag]))
  1741. {
  1742. return $channel[0]['child'][$namespace][$tag];
  1743. }
  1744. }
  1745. }
  1746. if ($type & SIMPLEPIE_TYPE_RSS_SYNDICATION)
  1747. {
  1748. if ($channel = $this->get_feed_tags(SIMPLEPIE_NAMESPACE_RSS_20, 'channel'))
  1749. {
  1750. if (isset($channel[0]['child'][$namespace][$tag]))
  1751. {
  1752. return $channel[0]['child'][$namespace][$tag];
  1753. }
  1754. }
  1755. }
  1756. return null;
  1757. }
  1758. /**
  1759. * Get data for an channel-level element
  1760. *
  1761. * This method allows you to get access to ANY element/attribute in the
  1762. * image/logo section of the feed.
  1763. *
  1764. * See {@see SimplePie::get_feed_tags()} for a description of the return value
  1765. *
  1766. * @since 1.0
  1767. * @see http://simplepie.org/wiki/faq/supported_xml_namespaces
  1768. * @param string $namespace The URL of the XML namespace of the elements you're trying to access
  1769. * @param string $tag Tag name
  1770. * @return array
  1771. */
  1772. public function get_image_tags($namespace, $tag)
  1773. {
  1774. $type = $this->get_type();
  1775. if ($type & SIMPLEPIE_TYPE_RSS_10)
  1776. {
  1777. if ($image = $this->get_feed_tags(SIMPLEPIE_NAMESPACE_RSS_10, 'image'))
  1778. {
  1779. if (isset($image[0]['child'][$namespace][$tag]))
  1780. {
  1781. return $image[0]['child'][$namespace][$tag];
  1782. }
  1783. }
  1784. }
  1785. if ($type & SIMPLEPIE_TYPE_RSS_090)
  1786. {
  1787. if ($image = $this->get_feed_tags(SIMPLEPIE_NAMESPACE_RSS_090, 'image'))
  1788. {
  1789. if (isset($image[0]['child'][$namespace][$tag]))
  1790. {
  1791. return $image[0]['child'][$namespace][$tag];
  1792. }
  1793. }
  1794. }
  1795. if ($type & SIMPLEPIE_TYPE_RSS_SYNDICATION)
  1796. {
  1797. if ($image = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_RSS_20, 'image'))
  1798. {
  1799. if (isset($image[0]['child'][$namespace][$tag]))
  1800. {
  1801. return $image[0]['child'][$namespace][$tag];
  1802. }
  1803. }
  1804. }
  1805. return null;
  1806. }
  1807. /**
  1808. * Get the base URL value from the feed
  1809. *
  1810. * Uses `<xml:base>` if available, otherwise uses the first link in the
  1811. * feed, or failing that, the URL of the feed itself.
  1812. *
  1813. * @see get_link
  1814. * @see subscribe_url
  1815. *
  1816. * @param array $element
  1817. * @return string
  1818. */
  1819. public function get_base($element = array())
  1820. {
  1821. if (!($this->get_type() & SIMPLEPIE_TYPE_RSS_SYNDICATION) && !empty($element['xml_base_explicit']) && isset($element['xml_base']))
  1822. {
  1823. return $element['xml_base'];
  1824. }
  1825. elseif ($this->get_link() !== null)
  1826. {
  1827. return $this->get_link();
  1828. }
  1829. else
  1830. {
  1831. return $this->subscribe_url();
  1832. }
  1833. }
  1834. /**
  1835. * Sanitize feed data
  1836. *
  1837. * @access private
  1838. * @see SimplePie_Sanitize::sanitize()
  1839. * @param string $data Data to sanitize
  1840. * @param int $type One of the SIMPLEPIE_CONSTRUCT_* constants
  1841. * @param string $base Base URL to resolve URLs against
  1842. * @return string Sanitized data
  1843. */
  1844. public function sanitize($data, $type, $base = '')
  1845. {
  1846. try
  1847. {
  1848. return $this->sanitize->sanitize($data, $type, $base);
  1849. }
  1850. catch (SimplePie_Exception $e)
  1851. {
  1852. if (!$this->enable_exceptions)
  1853. {
  1854. $this->error = $e->getMessage();
  1855. $this->registry->call('Misc', 'error', array($this->error, E_USER_WARNING, $e->getFile(), $e->getLine()));
  1856. return '';
  1857. }
  1858. throw $e;
  1859. }
  1860. }
  1861. /**
  1862. * Get the title of the feed
  1863. *
  1864. * Uses `<atom:title>`, `<title>` or `<dc:title>`
  1865. *
  1866. * @since 1.0 (previously called `get_feed_title` since 0.8)
  1867. * @return string|null
  1868. */
  1869. public function get_title()
  1870. {
  1871. if ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_ATOM_10, 'title'))
  1872. {
  1873. return $this->sanitize($return[0]['data'], $this->registry->call('Misc', 'atom_10_construct_type', array($return[0]['attribs'])), $this->get_base($return[0]));
  1874. }
  1875. elseif ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_ATOM_03, 'title'))
  1876. {
  1877. return $this->sanitize($return[0]['data'], $this->registry->call('Misc', 'atom_03_construct_type', array($return[0]['attribs'])), $this->get_base($return[0]));
  1878. }
  1879. elseif ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_RSS_10, 'title'))
  1880. {
  1881. return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_MAYBE_HTML, $this->get_base($return[0]));
  1882. }
  1883. elseif ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_RSS_090, 'title'))
  1884. {
  1885. return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_MAYBE_HTML, $this->get_base($return[0]));
  1886. }
  1887. elseif ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_RSS_20, 'title'))
  1888. {
  1889. return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_MAYBE_HTML, $this->get_base($return[0]));
  1890. }
  1891. elseif ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_DC_11, 'title'))
  1892. {
  1893. return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_TEXT);
  1894. }
  1895. elseif ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_DC_10, 'title'))
  1896. {
  1897. return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_TEXT);
  1898. }
  1899. else
  1900. {
  1901. return null;
  1902. }
  1903. }
  1904. /**
  1905. * Get a category for the feed
  1906. *
  1907. * @since Unknown
  1908. * @param int $key The category that you want to return. Remember that arrays begin with 0, not 1
  1909. * @return SimplePie_Category|null
  1910. */
  1911. public function get_category($key = 0)
  1912. {
  1913. $categories = $this->get_categories();
  1914. if (isset($categories[$key]))
  1915. {
  1916. return $categories[$key];
  1917. }
  1918. else
  1919. {
  1920. return null;
  1921. }
  1922. }
  1923. /**
  1924. * Get all categories for the feed
  1925. *
  1926. * Uses `<atom:category>`, `<category>` or `<dc:subject>`
  1927. *
  1928. * @since Unknown
  1929. * @return array|null List of {@see SimplePie_Category} objects
  1930. */
  1931. public function get_categories()
  1932. {
  1933. $categories = array();
  1934. foreach ((array) $this->get_channel_tags(SIMPLEPIE_NAMESPACE_ATOM_10, 'category') as $category)
  1935. {
  1936. $term = null;
  1937. $scheme = null;
  1938. $label = null;
  1939. if (isset($category['attribs']['']['term']))
  1940. {
  1941. $term = $this->sanitize($category['attribs']['']['term'], SIMPLEPIE_CONSTRUCT_TEXT);
  1942. }
  1943. if (isset($category['attribs']['']['scheme']))
  1944. {
  1945. $scheme = $this->sanitize($category['attribs']['']['scheme'], SIMPLEPIE_CONSTRUCT_TEXT);
  1946. }
  1947. if (isset($category['attribs']['']['label']))
  1948. {
  1949. $label = $this->sanitize($category['attribs']['']['label'], SIMPLEPIE_CONSTRUCT_TEXT);
  1950. }
  1951. $categories[] = $this->registry->create('Category', array($term, $scheme, $label));
  1952. }
  1953. foreach ((array) $this->get_channel_tags(SIMPLEPIE_NAMESPACE_RSS_20, 'category') as $category)
  1954. {
  1955. // This is really the label, but keep this as the term also for BC.
  1956. // Label will also work on retrieving because that falls back to term.
  1957. $term = $this->sanitize($category['data'], SIMPLEPIE_CONSTRUCT_TEXT);
  1958. if (isset($category['attribs']['']['domain']))
  1959. {
  1960. $scheme = $this->sanitize($category['attribs']['']['domain'], SIMPLEPIE_CONSTRUCT_TEXT);
  1961. }
  1962. else
  1963. {
  1964. $scheme = null;
  1965. }
  1966. $categories[] = $this->registry->create('Category', array($term, $scheme, null));
  1967. }
  1968. foreach ((array) $this->get_channel_tags(SIMPLEPIE_NAMESPACE_DC_11, 'subject') as $category)
  1969. {
  1970. $categories[] = $this->registry->create('Category', array($this->sanitize($category['data'], SIMPLEPIE_CONSTRUCT_TEXT), null, null));
  1971. }
  1972. foreach ((array) $this->get_channel_tags(SIMPLEPIE_NAMESPACE_DC_10, 'subject') as $category)
  1973. {
  1974. $categories[] = $this->registry->create('Category', array($this->sanitize($category['data'], SIMPLEPIE_CONSTRUCT_TEXT), null, null));
  1975. }
  1976. if (!empty($categories))
  1977. {
  1978. return array_unique($categories);
  1979. }
  1980. else
  1981. {
  1982. return null;
  1983. }
  1984. }
  1985. /**
  1986. * Get an author for the feed
  1987. *
  1988. * @since 1.1
  1989. * @param int $key The author that you want to return. Remember that arrays begin with 0, not 1
  1990. * @return SimplePie_Author|null
  1991. */
  1992. public function get_author($key = 0)
  1993. {
  1994. $authors = $this->get_authors();
  1995. if (isset($authors[$key]))
  1996. {
  1997. return $authors[$key];
  1998. }
  1999. else
  2000. {
  2001. return null;
  2002. }
  2003. }
  2004. /**
  2005. * Get all authors for the feed
  2006. *
  2007. * Uses `<atom:author>`, `<author>`, `<dc:creator>` or `<itunes:author>`
  2008. *
  2009. * @since 1.1
  2010. * @return array|null List of {@see SimplePie_Author} objects
  2011. */
  2012. public function get_authors()
  2013. {
  2014. $authors = array();
  2015. foreach ((array) $this->get_channel_tags(SIMPLEPIE_NAMESPACE_ATOM_10, 'author') as $author)
  2016. {
  2017. $name = null;
  2018. $uri = null;
  2019. $email = null;
  2020. if (isset($author['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['name'][0]['data']))
  2021. {
  2022. $name = $this->sanitize($author['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['name'][0]['data'], SIMPLEPIE_CONSTRUCT_TEXT);
  2023. }
  2024. if (isset($author['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['uri'][0]['data']))
  2025. {
  2026. $uri = $this->sanitize($author['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['uri'][0]['data'], SIMPLEPIE_CONSTRUCT_IRI, $this->get_base($author['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['uri'][0]));
  2027. }
  2028. if (isset($author['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['email'][0]['data']))
  2029. {
  2030. $email = $this->sanitize($author['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['email'][0]['data'], SIMPLEPIE_CONSTRUCT_TEXT);
  2031. }
  2032. if ($name !== null || $email !== null || $uri !== null)
  2033. {
  2034. $authors[] = $this->registry->create('Author', array($name, $uri, $email));
  2035. }
  2036. }
  2037. if ($author = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_ATOM_03, 'author'))
  2038. {
  2039. $name = null;
  2040. $url = null;
  2041. $email = null;
  2042. if (isset($author[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_03]['name'][0]['data']))
  2043. {
  2044. $name = $this->sanitize($author[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_03]['name'][0]['data'], SIMPLEPIE_CONSTRUCT_TEXT);
  2045. }
  2046. if (isset($author[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_03]['url'][0]['data']))
  2047. {
  2048. $url = $this->sanitize($author[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_03]['url'][0]['data'], SIMPLEPIE_CONSTRUCT_IRI, $this->get_base($author[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_03]['url'][0]));
  2049. }
  2050. if (isset($author[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_03]['email'][0]['data']))
  2051. {
  2052. $email = $this->sanitize($author[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_03]['email'][0]['data'], SIMPLEPIE_CONSTRUCT_TEXT);
  2053. }
  2054. if ($name !== null || $email !== null || $url !== null)
  2055. {
  2056. $authors[] = $this->registry->create('Author', array($name, $url, $email));
  2057. }
  2058. }
  2059. foreach ((array) $this->get_channel_tags(SIMPLEPIE_NAMESPACE_DC_11, 'creator') as $author)
  2060. {
  2061. $authors[] = $this->registry->create('Author', array($this->sanitize($author['data'], SIMPLEPIE_CONSTRUCT_TEXT), null, null));
  2062. }
  2063. foreach ((array) $this->get_channel_tags(SIMPLEPIE_NAMESPACE_DC_10, 'creator') as $author)
  2064. {
  2065. $authors[] = $this->registry->create('Author', array($this->sanitize($author['data'], SIMPLEPIE_CONSTRUCT_TEXT), null, null));
  2066. }
  2067. foreach ((array) $this->get_channel_tags(SIMPLEPIE_NAMESPACE_ITUNES, 'author') as $author)
  2068. {
  2069. $authors[] = $this->registry->create('Author', array($this->sanitize($author['data'], SIMPLEPIE_CONSTRUCT_TEXT), null, null));
  2070. }
  2071. if (!empty($authors))
  2072. {
  2073. return array_unique($authors);
  2074. }
  2075. else
  2076. {
  2077. return null;
  2078. }
  2079. }
  2080. /**
  2081. * Get a contributor for the feed
  2082. *
  2083. * @since 1.1
  2084. * @param int $key The contrbutor that you want to return. Remember that arrays begin with 0, not 1
  2085. * @return SimplePie_Author|null
  2086. */
  2087. public function get_contributor($key = 0)
  2088. {
  2089. $contributors = $this->get_contributors();
  2090. if (isset($contributors[$key]))
  2091. {
  2092. return $contributors[$key];
  2093. }
  2094. else
  2095. {
  2096. return null;
  2097. }
  2098. }
  2099. /**
  2100. * Get all contributors for the feed
  2101. *
  2102. * Uses `<atom:contributor>`
  2103. *
  2104. * @since 1.1
  2105. * @return array|null List of {@see SimplePie_Author} objects
  2106. */
  2107. public function get_contributors()
  2108. {
  2109. $contributors = array();
  2110. foreach ((array) $this->get_channel_tags(SIMPLEPIE_NAMESPACE_ATOM_10, 'contributor') as $contributor)
  2111. {
  2112. $name = null;
  2113. $uri = null;
  2114. $email = null;
  2115. if (isset($contributor['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['name'][0]['data']))
  2116. {
  2117. $name = $this->sanitize($contributor['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['name'][0]['data'], SIMPLEPIE_CONSTRUCT_TEXT);
  2118. }
  2119. if (isset($contributor['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['uri'][0]['data']))
  2120. {
  2121. $uri = $this->sanitize($contributor['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['uri'][0]['data'], SIMPLEPIE_CONSTRUCT_IRI, $this->get_base($contributor['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['uri'][0]));
  2122. }
  2123. if (isset($contributor['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['email'][0]['data']))
  2124. {
  2125. $email = $this->sanitize($contributor['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['email'][0]['data'], SIMPLEPIE_CONSTRUCT_TEXT);
  2126. }
  2127. if ($name !== null || $email !== null || $uri !== null)
  2128. {
  2129. $contributors[] = $this->registry->create('Author', array($name, $uri, $email));
  2130. }
  2131. }
  2132. foreach ((array) $this->get_channel_tags(SIMPLEPIE_NAMESPACE_ATOM_03, 'contributor') as $contributor)
  2133. {
  2134. $name = null;
  2135. $url = null;
  2136. $email = null;
  2137. if (isset($contributor['child'][SIMPLEPIE_NAMESPACE_ATOM_03]['name'][0]['data']))
  2138. {
  2139. $name = $this->sanitize($contributor['child'][SIMPLEPIE_NAMESPACE_ATOM_03]['name'][0]['data'], SIMPLEPIE_CONSTRUCT_TEXT);
  2140. }
  2141. if (isset($contributor['child'][SIMPLEPIE_NAMESPACE_ATOM_03]['url'][0]['data']))
  2142. {
  2143. $url = $this->sanitize($contributor['child'][SIMPLEPIE_NAMESPACE_ATOM_03]['url'][0]['data'], SIMPLEPIE_CONSTRUCT_IRI, $this->get_base($contributor['child'][SIMPLEPIE_NAMESPACE_ATOM_03]['url'][0]));
  2144. }
  2145. if (isset($contributor['child'][SIMPLEPIE_NAMESPACE_ATOM_03]['email'][0]['data']))
  2146. {
  2147. $email = $this->sanitize($contributor['child'][SIMPLEPIE_NAMESPACE_ATOM_03]['email'][0]['data'], SIMPLEPIE_CONSTRUCT_TEXT);
  2148. }
  2149. if ($name !== null || $email !== null || $url !== null)
  2150. {
  2151. $contributors[] = $this->registry->create('Author', array($name, $url, $email));
  2152. }
  2153. }
  2154. if (!empty($contributors))
  2155. {
  2156. return array_unique($contributors);
  2157. }
  2158. else
  2159. {
  2160. return null;
  2161. }
  2162. }
  2163. /**
  2164. * Get a single link for the feed
  2165. *
  2166. * @since 1.0 (previously called `get_feed_link` since Preview Release, `get_feed_permalink()` since 0.8)
  2167. * @param int $key The link that you want to return. Remember that arrays begin with 0, not 1
  2168. * @param string $rel The relationship of the link to return
  2169. * @return string|null Link URL
  2170. */
  2171. public function get_link($key = 0, $rel = 'alternate')
  2172. {
  2173. $links = $this->get_links($rel);
  2174. if (isset($links[$key]))
  2175. {
  2176. return $links[$key];
  2177. }
  2178. else
  2179. {
  2180. return null;
  2181. }
  2182. }
  2183. /**
  2184. * Get the permalink for the item
  2185. *
  2186. * Returns the first link available with a relationship of "alternate".
  2187. * Identical to {@see get_link()} with key 0
  2188. *
  2189. * @see get_link
  2190. * @since 1.0 (previously called `get_feed_link` since Preview Release, `get_feed_permalink()` since 0.8)
  2191. * @internal Added for parity between the parent-level and the item/entry-level.
  2192. * @return string|null Link URL
  2193. */
  2194. public function get_permalink()
  2195. {
  2196. return $this->get_link(0);
  2197. }
  2198. /**
  2199. * Get all links for the feed
  2200. *
  2201. * Uses `<atom:link>` or `<link>`
  2202. *
  2203. * @since Beta 2
  2204. * @param string $rel The relationship of links to return
  2205. * @return array|null Links found for the feed (strings)
  2206. */
  2207. public function get_links($rel = 'alternate')
  2208. {
  2209. if (!isset($this->data['links']))
  2210. {
  2211. $this->data['links'] = array();
  2212. if ($links = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_ATOM_10, 'link'))
  2213. {
  2214. foreach ($links as $link)
  2215. {
  2216. if (isset($link['attribs']['']['href']))
  2217. {
  2218. $link_rel = (isset($link['attribs']['']['rel'])) ? $link['attribs']['']['rel'] : 'alternate';
  2219. $this->data['links'][$link_rel][] = $this->sanitize($link['attribs']['']['href'], SIMPLEPIE_CONSTRUCT_IRI, $this->get_base($link));
  2220. }
  2221. }
  2222. }
  2223. if ($links = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_ATOM_03, 'link'))
  2224. {
  2225. foreach ($links as $link)
  2226. {
  2227. if (isset($link['attribs']['']['href']))
  2228. {
  2229. $link_rel = (isset($link['attribs']['']['rel'])) ? $link['attribs']['']['rel'] : 'alternate';
  2230. $this->data['links'][$link_rel][] = $this->sanitize($link['attribs']['']['href'], SIMPLEPIE_CONSTRUCT_IRI, $this->get_base($link));
  2231. }
  2232. }
  2233. }
  2234. if ($links = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_RSS_10, 'link'))
  2235. {
  2236. $this->data['links']['alternate'][] = $this->sanitize($links[0]['data'], SIMPLEPIE_CONSTRUCT_IRI, $this->get_base($links[0]));
  2237. }
  2238. if ($links = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_RSS_090, 'link'))
  2239. {
  2240. $this->data['links']['alternate'][] = $this->sanitize($links[0]['data'], SIMPLEPIE_CONSTRUCT_IRI, $this->get_base($links[0]));
  2241. }
  2242. if ($links = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_RSS_20, 'link'))
  2243. {
  2244. $this->data['links']['alternate'][] = $this->sanitize($links[0]['data'], SIMPLEPIE_CONSTRUCT_IRI, $this->get_base($links[0]));
  2245. }
  2246. $keys = array_keys($this->data['links']);
  2247. foreach ($keys as $key)
  2248. {
  2249. if ($this->registry->call('Misc', 'is_isegment_nz_nc', array($key)))
  2250. {
  2251. if (isset($this->data['links'][SIMPLEPIE_IANA_LINK_RELATIONS_REGISTRY . $key]))
  2252. {
  2253. $this->data['links'][SIMPLEPIE_IANA_LINK_RELATIONS_REGISTRY . $key] = array_merge($this->data['links'][$key], $this->data['links'][SIMPLEPIE_IANA_LINK_RELATIONS_REGISTRY . $key]);
  2254. $this->data['links'][$key] =& $this->data['links'][SIMPLEPIE_IANA_LINK_RELATIONS_REGISTRY . $key];
  2255. }
  2256. else
  2257. {
  2258. $this->data['links'][SIMPLEPIE_IANA_LINK_RELATIONS_REGISTRY . $key] =& $this->data['links'][$key];
  2259. }
  2260. }
  2261. elseif (substr($key, 0, 41) === SIMPLEPIE_IANA_LINK_RELATIONS_REGISTRY)
  2262. {
  2263. $this->data['links'][substr($key, 41)] =& $this->data['links'][$key];
  2264. }
  2265. $this->data['links'][$key] = array_unique($this->data['links'][$key]);
  2266. }
  2267. }
  2268. if (isset($this->data['links'][$rel]))
  2269. {
  2270. return $this->data['links'][$rel];
  2271. }
  2272. else
  2273. {
  2274. return null;
  2275. }
  2276. }
  2277. public function get_all_discovered_feeds()
  2278. {
  2279. return $this->all_discovered_feeds;
  2280. }
  2281. /**
  2282. * Get the content for the item
  2283. *
  2284. * Uses `<atom:subtitle>`, `<atom:tagline>`, `<description>`,
  2285. * `<dc:description>`, `<itunes:summary>` or `<itunes:subtitle>`
  2286. *
  2287. * @since 1.0 (previously called `get_feed_description()` since 0.8)
  2288. * @return string|null
  2289. */
  2290. public function get_description()
  2291. {
  2292. if ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_ATOM_10, 'subtitle'))
  2293. {
  2294. return $this->sanitize($return[0]['data'], $this->registry->call('Misc', 'atom_10_construct_type', array($return[0]['attribs'])), $this->get_base($return[0]));
  2295. }
  2296. elseif ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_ATOM_03, 'tagline'))
  2297. {
  2298. return $this->sanitize($return[0]['data'], $this->registry->call('Misc', 'atom_03_construct_type', array($return[0]['attribs'])), $this->get_base($return[0]));
  2299. }
  2300. elseif ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_RSS_10, 'description'))
  2301. {
  2302. return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_MAYBE_HTML, $this->get_base($return[0]));
  2303. }
  2304. elseif ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_RSS_090, 'description'))
  2305. {
  2306. return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_MAYBE_HTML, $this->get_base($return[0]));
  2307. }
  2308. elseif ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_RSS_20, 'description'))
  2309. {
  2310. return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_HTML, $this->get_base($return[0]));
  2311. }
  2312. elseif ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_DC_11, 'description'))
  2313. {
  2314. return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_TEXT);
  2315. }
  2316. elseif ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_DC_10, 'description'))
  2317. {
  2318. return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_TEXT);
  2319. }
  2320. elseif ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_ITUNES, 'summary'))
  2321. {
  2322. return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_HTML, $this->get_base($return[0]));
  2323. }
  2324. elseif ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_ITUNES, 'subtitle'))
  2325. {
  2326. return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_HTML, $this->get_base($return[0]));
  2327. }
  2328. else
  2329. {
  2330. return null;
  2331. }
  2332. }
  2333. /**
  2334. * Get the copyright info for the feed
  2335. *
  2336. * Uses `<atom:rights>`, `<atom:copyright>` or `<dc:rights>`
  2337. *
  2338. * @since 1.0 (previously called `get_feed_copyright()` since 0.8)
  2339. * @return string|null
  2340. */
  2341. public function get_copyright()
  2342. {
  2343. if ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_ATOM_10, 'rights'))
  2344. {
  2345. return $this->sanitize($return[0]['data'], $this->registry->call('Misc', 'atom_10_construct_type', array($return[0]['attribs'])), $this->get_base($return[0]));
  2346. }
  2347. elseif ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_ATOM_03, 'copyright'))
  2348. {
  2349. return $this->sanitize($return[0]['data'], $this->registry->call('Misc', 'atom_03_construct_type', array($return[0]['attribs'])), $this->get_base($return[0]));
  2350. }
  2351. elseif ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_RSS_20, 'copyright'))
  2352. {
  2353. return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_TEXT);
  2354. }
  2355. elseif ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_DC_11, 'rights'))
  2356. {
  2357. return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_TEXT);
  2358. }
  2359. elseif ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_DC_10, 'rights'))
  2360. {
  2361. return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_TEXT);
  2362. }
  2363. else
  2364. {
  2365. return null;
  2366. }
  2367. }
  2368. /**
  2369. * Get the language for the feed
  2370. *
  2371. * Uses `<language>`, `<dc:language>`, or @xml_lang
  2372. *
  2373. * @since 1.0 (previously called `get_feed_language()` since 0.8)
  2374. * @return string|null
  2375. */
  2376. public function get_language()
  2377. {
  2378. if ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_RSS_20, 'language'))
  2379. {
  2380. return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_TEXT);
  2381. }
  2382. elseif ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_DC_11, 'language'))
  2383. {
  2384. return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_TEXT);
  2385. }
  2386. elseif ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_DC_10, 'language'))
  2387. {
  2388. return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_TEXT);
  2389. }
  2390. elseif (isset($this->data['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['feed'][0]['xml_lang']))
  2391. {
  2392. return $this->sanitize($this->data['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['feed'][0]['xml_lang'], SIMPLEPIE_CONSTRUCT_TEXT);
  2393. }
  2394. elseif (isset($this->data['child'][SIMPLEPIE_NAMESPACE_ATOM_03]['feed'][0]['xml_lang']))
  2395. {
  2396. return $this->sanitize($this->data['child'][SIMPLEPIE_NAMESPACE_ATOM_03]['feed'][0]['xml_lang'], SIMPLEPIE_CONSTRUCT_TEXT);
  2397. }
  2398. elseif (isset($this->data['child'][SIMPLEPIE_NAMESPACE_RDF]['RDF'][0]['xml_lang']))
  2399. {
  2400. return $this->sanitize($this->data['child'][SIMPLEPIE_NAMESPACE_RDF]['RDF'][0]['xml_lang'], SIMPLEPIE_CONSTRUCT_TEXT);
  2401. }
  2402. elseif (isset($this->data['headers']['content-language']))
  2403. {
  2404. return $this->sanitize($this->data['headers']['content-language'], SIMPLEPIE_CONSTRUCT_TEXT);
  2405. }
  2406. else
  2407. {
  2408. return null;
  2409. }
  2410. }
  2411. /**
  2412. * Get the latitude coordinates for the item
  2413. *
  2414. * Compatible with the W3C WGS84 Basic Geo and GeoRSS specifications
  2415. *
  2416. * Uses `<geo:lat>` or `<georss:point>`
  2417. *
  2418. * @since 1.0
  2419. * @link http://www.w3.org/2003/01/geo/ W3C WGS84 Basic Geo
  2420. * @link http://www.georss.org/ GeoRSS
  2421. * @return string|null
  2422. */
  2423. public function get_latitude()
  2424. {
  2425. if ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_W3C_BASIC_GEO, 'lat'))
  2426. {
  2427. return (float) $return[0]['data'];
  2428. }
  2429. elseif (($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_GEORSS, 'point')) && preg_match('/^((?:-)?[0-9]+(?:\.[0-9]+)) ((?:-)?[0-9]+(?:\.[0-9]+))$/', trim($return[0]['data']), $match))
  2430. {
  2431. return (float) $match[1];
  2432. }
  2433. else
  2434. {
  2435. return null;
  2436. }
  2437. }
  2438. /**
  2439. * Get the longitude coordinates for the feed
  2440. *
  2441. * Compatible with the W3C WGS84 Basic Geo and GeoRSS specifications
  2442. *
  2443. * Uses `<geo:long>`, `<geo:lon>` or `<georss:point>`
  2444. *
  2445. * @since 1.0
  2446. * @link http://www.w3.org/2003/01/geo/ W3C WGS84 Basic Geo
  2447. * @link http://www.georss.org/ GeoRSS
  2448. * @return string|null
  2449. */
  2450. public function get_longitude()
  2451. {
  2452. if ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_W3C_BASIC_GEO, 'long'))
  2453. {
  2454. return (float) $return[0]['data'];
  2455. }
  2456. elseif ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_W3C_BASIC_GEO, 'lon'))
  2457. {
  2458. return (float) $return[0]['data'];
  2459. }
  2460. elseif (($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_GEORSS, 'point')) && preg_match('/^((?:-)?[0-9]+(?:\.[0-9]+)) ((?:-)?[0-9]+(?:\.[0-9]+))$/', trim($return[0]['data']), $match))
  2461. {
  2462. return (float) $match[2];
  2463. }
  2464. else
  2465. {
  2466. return null;
  2467. }
  2468. }
  2469. /**
  2470. * Get the feed logo's title
  2471. *
  2472. * RSS 0.9.0, 1.0 and 2.0 feeds are allowed to have a "feed logo" title.
  2473. *
  2474. * Uses `<image><title>` or `<image><dc:title>`
  2475. *
  2476. * @return string|null
  2477. */
  2478. public function get_image_title()
  2479. {
  2480. if ($return = $this->get_image_tags(SIMPLEPIE_NAMESPACE_RSS_10, 'title'))
  2481. {
  2482. return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_TEXT);
  2483. }
  2484. elseif ($return = $this->get_image_tags(SIMPLEPIE_NAMESPACE_RSS_090, 'title'))
  2485. {
  2486. return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_TEXT);
  2487. }
  2488. elseif ($return = $this->get_image_tags(SIMPLEPIE_NAMESPACE_RSS_20, 'title'))
  2489. {
  2490. return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_TEXT);
  2491. }
  2492. elseif ($return = $this->get_image_tags(SIMPLEPIE_NAMESPACE_DC_11, 'title'))
  2493. {
  2494. return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_TEXT);
  2495. }
  2496. elseif ($return = $this->get_image_tags(SIMPLEPIE_NAMESPACE_DC_10, 'title'))
  2497. {
  2498. return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_TEXT);
  2499. }
  2500. else
  2501. {
  2502. return null;
  2503. }
  2504. }
  2505. /**
  2506. * Get the feed logo's URL
  2507. *
  2508. * RSS 0.9.0, 2.0, Atom 1.0, and feeds with iTunes RSS tags are allowed to
  2509. * have a "feed logo" URL. This points directly to the image itself.
  2510. *
  2511. * Uses `<itunes:image>`, `<atom:logo>`, `<atom:icon>`,
  2512. * `<image><title>` or `<image><dc:title>`
  2513. *
  2514. * @return string|null
  2515. */
  2516. public function get_image_url()
  2517. {
  2518. if ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_ITUNES, 'image'))
  2519. {
  2520. return $this->sanitize($return[0]['attribs']['']['href'], SIMPLEPIE_CONSTRUCT_IRI);
  2521. }
  2522. elseif ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_ATOM_10, 'logo'))
  2523. {
  2524. return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_IRI, $this->get_base($return[0]));
  2525. }
  2526. elseif ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_ATOM_10, 'icon'))
  2527. {
  2528. return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_IRI, $this->get_base($return[0]));
  2529. }
  2530. elseif ($return = $this->get_image_tags(SIMPLEPIE_NAMESPACE_RSS_10, 'url'))
  2531. {
  2532. return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_IRI, $this->get_base($return[0]));
  2533. }
  2534. elseif ($return = $this->get_image_tags(SIMPLEPIE_NAMESPACE_RSS_090, 'url'))
  2535. {
  2536. return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_IRI, $this->get_base($return[0]));
  2537. }
  2538. elseif ($return = $this->get_image_tags(SIMPLEPIE_NAMESPACE_RSS_20, 'url'))
  2539. {
  2540. return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_IRI, $this->get_base($return[0]));
  2541. }
  2542. else
  2543. {
  2544. return null;
  2545. }
  2546. }
  2547. /**
  2548. * Get the feed logo's link
  2549. *
  2550. * RSS 0.9.0, 1.0 and 2.0 feeds are allowed to have a "feed logo" link. This
  2551. * points to a human-readable page that the image should link to.
  2552. *
  2553. * Uses `<itunes:image>`, `<atom:logo>`, `<atom:icon>`,
  2554. * `<image><title>` or `<image><dc:title>`
  2555. *
  2556. * @return string|null
  2557. */
  2558. public function get_image_link()
  2559. {
  2560. if ($return = $this->get_image_tags(SIMPLEPIE_NAMESPACE_RSS_10, 'link'))
  2561. {
  2562. return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_IRI, $this->get_base($return[0]));
  2563. }
  2564. elseif ($return = $this->get_image_tags(SIMPLEPIE_NAMESPACE_RSS_090, 'link'))
  2565. {
  2566. return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_IRI, $this->get_base($return[0]));
  2567. }
  2568. elseif ($return = $this->get_image_tags(SIMPLEPIE_NAMESPACE_RSS_20, 'link'))
  2569. {
  2570. return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_IRI, $this->get_base($return[0]));
  2571. }
  2572. else
  2573. {
  2574. return null;
  2575. }
  2576. }
  2577. /**
  2578. * Get the feed logo's link
  2579. *
  2580. * RSS 2.0 feeds are allowed to have a "feed logo" width.
  2581. *
  2582. * Uses `<image><width>` or defaults to 88.0 if no width is specified and
  2583. * the feed is an RSS 2.0 feed.
  2584. *
  2585. * @return int|float|null
  2586. */
  2587. public function get_image_width()
  2588. {
  2589. if ($return = $this->get_image_tags(SIMPLEPIE_NAMESPACE_RSS_20, 'width'))
  2590. {
  2591. return round($return[0]['data']);
  2592. }
  2593. elseif ($this->get_type() & SIMPLEPIE_TYPE_RSS_SYNDICATION && $this->get_image_tags(SIMPLEPIE_NAMESPACE_RSS_20, 'url'))
  2594. {
  2595. return 88.0;
  2596. }
  2597. else
  2598. {
  2599. return null;
  2600. }
  2601. }
  2602. /**
  2603. * Get the feed logo's height
  2604. *
  2605. * RSS 2.0 feeds are allowed to have a "feed logo" height.
  2606. *
  2607. * Uses `<image><height>` or defaults to 31.0 if no height is specified and
  2608. * the feed is an RSS 2.0 feed.
  2609. *
  2610. * @return int|float|null
  2611. */
  2612. public function get_image_height()
  2613. {
  2614. if ($return = $this->get_image_tags(SIMPLEPIE_NAMESPACE_RSS_20, 'height'))
  2615. {
  2616. return round($return[0]['data']);
  2617. }
  2618. elseif ($this->get_type() & SIMPLEPIE_TYPE_RSS_SYNDICATION && $this->get_image_tags(SIMPLEPIE_NAMESPACE_RSS_20, 'url'))
  2619. {
  2620. return 31.0;
  2621. }
  2622. else
  2623. {
  2624. return null;
  2625. }
  2626. }
  2627. /**
  2628. * Get the number of items in the feed
  2629. *
  2630. * This is well-suited for {@link http://php.net/for for()} loops with
  2631. * {@see get_item()}
  2632. *
  2633. * @param int $max Maximum value to return. 0 for no limit
  2634. * @return int Number of items in the feed
  2635. */
  2636. public function get_item_quantity($max = 0)
  2637. {
  2638. $max = (int) $max;
  2639. $qty = count($this->get_items());
  2640. if ($max === 0)
  2641. {
  2642. return $qty;
  2643. }
  2644. else
  2645. {
  2646. return ($qty > $max) ? $max : $qty;
  2647. }
  2648. }
  2649. /**
  2650. * Get a single item from the feed
  2651. *
  2652. * This is better suited for {@link http://php.net/for for()} loops, whereas
  2653. * {@see get_items()} is better suited for
  2654. * {@link http://php.net/foreach foreach()} loops.
  2655. *
  2656. * @see get_item_quantity()
  2657. * @since Beta 2
  2658. * @param int $key The item that you want to return. Remember that arrays begin with 0, not 1
  2659. * @return SimplePie_Item|null
  2660. */
  2661. public function get_item($key = 0)
  2662. {
  2663. $items = $this->get_items();
  2664. if (isset($items[$key]))
  2665. {
  2666. return $items[$key];
  2667. }
  2668. else
  2669. {
  2670. return null;
  2671. }
  2672. }
  2673. /**
  2674. * Get all items from the feed
  2675. *
  2676. * This is better suited for {@link http://php.net/for for()} loops, whereas
  2677. * {@see get_items()} is better suited for
  2678. * {@link http://php.net/foreach foreach()} loops.
  2679. *
  2680. * @see get_item_quantity
  2681. * @since Beta 2
  2682. * @param int $start Index to start at
  2683. * @param int $end Number of items to return. 0 for all items after `$start`
  2684. * @return array|null List of {@see SimplePie_Item} objects
  2685. */
  2686. public function get_items($start = 0, $end = 0)
  2687. {
  2688. if (!isset($this->data['items']))
  2689. {
  2690. if (!empty($this->multifeed_objects))
  2691. {
  2692. $this->data['items'] = SimplePie::merge_items($this->multifeed_objects, $start, $end, $this->item_limit);
  2693. }
  2694. else
  2695. {
  2696. $this->data['items'] = array();
  2697. if ($items = $this->get_feed_tags(SIMPLEPIE_NAMESPACE_ATOM_10, 'entry'))
  2698. {
  2699. $keys = array_keys($items);
  2700. foreach ($keys as $key)
  2701. {
  2702. $this->data['items'][] = $this->registry->create('Item', array($this, $items[$key]));
  2703. }
  2704. }
  2705. if ($items = $this->get_feed_tags(SIMPLEPIE_NAMESPACE_ATOM_03, 'entry'))
  2706. {
  2707. $keys = array_keys($items);
  2708. foreach ($keys as $key)
  2709. {
  2710. $this->data['items'][] = $this->registry->create('Item', array($this, $items[$key]));
  2711. }
  2712. }
  2713. if ($items = $this->get_feed_tags(SIMPLEPIE_NAMESPACE_RSS_10, 'item'))
  2714. {
  2715. $keys = array_keys($items);
  2716. foreach ($keys as $key)
  2717. {
  2718. $this->data['items'][] = $this->registry->create('Item', array($this, $items[$key]));
  2719. }
  2720. }
  2721. if ($items = $this->get_feed_tags(SIMPLEPIE_NAMESPACE_RSS_090, 'item'))
  2722. {
  2723. $keys = array_keys($items);
  2724. foreach ($keys as $key)
  2725. {
  2726. $this->data['items'][] = $this->registry->create('Item', array($this, $items[$key]));
  2727. }
  2728. }
  2729. if ($items = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_RSS_20, 'item'))
  2730. {
  2731. $keys = array_keys($items);
  2732. foreach ($keys as $key)
  2733. {
  2734. $this->data['items'][] = $this->registry->create('Item', array($this, $items[$key]));
  2735. }
  2736. }
  2737. }
  2738. }
  2739. if (!empty($this->data['items']))
  2740. {
  2741. // If we want to order it by date, check if all items have a date, and then sort it
  2742. if ($this->order_by_date && empty($this->multifeed_objects))
  2743. {
  2744. if (!isset($this->data['ordered_items']))
  2745. {
  2746. $do_sort = true;
  2747. foreach ($this->data['items'] as $item)
  2748. {
  2749. if (!$item->get_date('U'))
  2750. {
  2751. $do_sort = false;
  2752. break;
  2753. }
  2754. }
  2755. $item = null;
  2756. $this->data['ordered_items'] = $this->data['items'];
  2757. if ($do_sort)
  2758. {
  2759. usort($this->data['ordered_items'], array(get_class($this), 'sort_items'));
  2760. }
  2761. }
  2762. $items = $this->data['ordered_items'];
  2763. }
  2764. else
  2765. {
  2766. $items = $this->data['items'];
  2767. }
  2768. // Slice the data as desired
  2769. if ($end === 0)
  2770. {
  2771. return array_slice($items, $start);
  2772. }
  2773. else
  2774. {
  2775. return array_slice($items, $start, $end);
  2776. }
  2777. }
  2778. else
  2779. {
  2780. return array();
  2781. }
  2782. }
  2783. /**
  2784. * Set the favicon handler
  2785. *
  2786. * @deprecated Use your own favicon handling instead
  2787. */
  2788. public function set_favicon_handler($page = false, $qs = 'i')
  2789. {
  2790. $level = defined('E_USER_DEPRECATED') ? E_USER_DEPRECATED : E_USER_WARNING;
  2791. trigger_error('Favicon handling has been removed, please use your own handling', $level);
  2792. return false;
  2793. }
  2794. /**
  2795. * Get the favicon for the current feed
  2796. *
  2797. * @deprecated Use your own favicon handling instead
  2798. */
  2799. public function get_favicon()
  2800. {
  2801. $level = defined('E_USER_DEPRECATED') ? E_USER_DEPRECATED : E_USER_WARNING;
  2802. trigger_error('Favicon handling has been removed, please use your own handling', $level);
  2803. if (($url = $this->get_link()) !== null)
  2804. {
  2805. return 'http://g.etfv.co/' . urlencode($url);
  2806. }
  2807. return false;
  2808. }
  2809. /**
  2810. * Magic method handler
  2811. *
  2812. * @param string $method Method name
  2813. * @param array $args Arguments to the method
  2814. * @return mixed
  2815. */
  2816. public function __call($method, $args)
  2817. {
  2818. if (strpos($method, 'subscribe_') === 0)
  2819. {
  2820. $level = defined('E_USER_DEPRECATED') ? E_USER_DEPRECATED : E_USER_WARNING;
  2821. trigger_error('subscribe_*() has been deprecated, implement the callback yourself', $level);
  2822. return '';
  2823. }
  2824. if ($method === 'enable_xml_dump')
  2825. {
  2826. $level = defined('E_USER_DEPRECATED') ? E_USER_DEPRECATED : E_USER_WARNING;
  2827. trigger_error('enable_xml_dump() has been deprecated, use get_raw_data() instead', $level);
  2828. return false;
  2829. }
  2830. $class = get_class($this);
  2831. $trace = debug_backtrace();
  2832. $file = $trace[0]['file'];
  2833. $line = $trace[0]['line'];
  2834. trigger_error("Call to undefined method $class::$method() in $file on line $line", E_USER_ERROR);
  2835. }
  2836. /**
  2837. * Sorting callback for items
  2838. *
  2839. * @access private
  2840. * @param SimplePie $a
  2841. * @param SimplePie $b
  2842. * @return boolean
  2843. */
  2844. public static function sort_items($a, $b)
  2845. {
  2846. return $a->get_date('U') <= $b->get_date('U');
  2847. }
  2848. /**
  2849. * Merge items from several feeds into one
  2850. *
  2851. * If you're merging multiple feeds together, they need to all have dates
  2852. * for the items or else SimplePie will refuse to sort them.
  2853. *
  2854. * @link http://simplepie.org/wiki/tutorial/sort_multiple_feeds_by_time_and_date#if_feeds_require_separate_per-feed_settings
  2855. * @param array $urls List of SimplePie feed objects to merge
  2856. * @param int $start Starting item
  2857. * @param int $end Number of items to return
  2858. * @param int $limit Maximum number of items per feed
  2859. * @return array
  2860. */
  2861. public static function merge_items($urls, $start = 0, $end = 0, $limit = 0)
  2862. {
  2863. if (is_array($urls) && sizeof($urls) > 0)
  2864. {
  2865. $items = array();
  2866. foreach ($urls as $arg)
  2867. {
  2868. if ($arg instanceof SimplePie)
  2869. {
  2870. $items = array_merge($items, $arg->get_items(0, $limit));
  2871. }
  2872. else
  2873. {
  2874. trigger_error('Arguments must be SimplePie objects', E_USER_WARNING);
  2875. }
  2876. }
  2877. $do_sort = true;
  2878. foreach ($items as $item)
  2879. {
  2880. if (!$item->get_date('U'))
  2881. {
  2882. $do_sort = false;
  2883. break;
  2884. }
  2885. }
  2886. $item = null;
  2887. if ($do_sort)
  2888. {
  2889. usort($items, array(get_class($urls[0]), 'sort_items'));
  2890. }
  2891. if ($end === 0)
  2892. {
  2893. return array_slice($items, $start);
  2894. }
  2895. else
  2896. {
  2897. return array_slice($items, $start, $end);
  2898. }
  2899. }
  2900. else
  2901. {
  2902. trigger_error('Cannot merge zero SimplePie objects', E_USER_WARNING);
  2903. return array();
  2904. }
  2905. }
  2906. }