SimplePie.php 90 KB

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