ILIAS  Release_4_0_x_branch Revision 61816
 All Data Structures Namespaces Files Functions Variables Groups Pages
ilObjectFeedWriter Class Reference

Feed writer for objects. More...

+ Inheritance diagram for ilObjectFeedWriter:
+ Collaboration diagram for ilObjectFeedWriter:

Public Member Functions

 ilObjectFeedWriter ($a_ref_id, $a_userid=false, $a_purpose=false)
- Public Member Functions inherited from ilFeedWriter
 ilFeedWriter ()
 setEncoding ($a_enc)
 Set feed encoding.
 getEncoding ()
 setChannelAbout ($a_ab)
 Unique URI that defines the channel.
 getChannelAbout ()
 setChannelTitle ($a_title)
 Channel Title.
 getChannelTitle ()
 setChannelLink ($a_link)
 Channel Link URL to which an HTML rendering of the channel title will link.
 getChannelLink ()
 setChannelDescription ($a_desc)
 Channel Description.
 getChannelDescription ()
 addItem ($a_item)
 Add Item Item is an object of type ilFeedItem.
 getItems ()
 prepareStr ($a_str)
 getFeed ()
 get feed xml
 showFeed ()

Additional Inherited Members

- Data Fields inherited from ilFeedWriter
 $encoding = "UTF-8"
 $ch_about = ""
 $ch_title = ""
 $ch_link = ""
 $ch_description = ""
 $items = array()

Detailed Description

Feed writer for objects.

Author
Alex Killing alex..nosp@m.kill.nosp@m.ing@g.nosp@m.mx.d.nosp@m.e
Version
$Id$

Definition at line 38 of file class.ilObjectFeedWriter.php.

Member Function Documentation

ilObjectFeedWriter::ilObjectFeedWriter (   $a_ref_id,
  $a_userid = false,
  $a_purpose = false 
)

Definition at line 40 of file class.ilObjectFeedWriter.php.

References $file, $ilSetting, ilFeedWriter\$items, $lng, $size, $title, ilObject\_exists(), ilMediaItem\_getMediaItemsOfMObId(), ilBlockSetting\_lookup(), ilObjMediaObject\_lookupItemPath(), ilObject\_lookupObjId(), ilObjMediaCastAccess\_lookupOnline(), ilObjMediaCastAccess\_lookupPublicFiles(), ilObject\_lookupTitle(), ilObject\_lookupType(), ilFeedWriter\addItem(), ilNewsItem\determineNewsTitle(), ilFeedWriter\ilFeedWriter(), NEWS_AUDIO, ilFeedWriter\prepareStr(), ilFeedWriter\setChannelAbout(), ilFeedWriter\setChannelLink(), ilFeedWriter\setChannelTitle(), and ilNewsItem\setPrivateFeedId().

{
global $ilSetting, $lng;
if ($a_ref_id <= 0)
{
return;
}
include_once("./Services/Block/classes/class.ilBlockSetting.php");
$news_set = new ilSetting("news");
if (!$news_set->get("enable_rss_for_internal"))
{
return;
}
$obj_id = ilObject::_lookupObjId($a_ref_id);
$obj_type = ilObject::_lookupType($obj_id);
$obj_title = ilObject::_lookupTitle($obj_id);
if (!ilBlockSetting::_lookup("news", "public_feed", 0, $obj_id))
{
return;
}
if ($ilSetting->get('short_inst_name') != "")
{
$this->setChannelTitle($ilSetting->get('short_inst_name')." - ".
$this->prepareStr($loc.$obj_title));
}
else
{
$this->setChannelTitle("ILIAS"." - ".
$this->prepareStr($loc.$obj_title.($a_purpose ? " - ".$a_purpose : "")));
}
$this->setChannelAbout(ILIAS_HTTP_PATH);
$this->setChannelLink(ILIAS_HTTP_PATH);
// not nice, to do: general solution
if ($obj_type == "mcst")
{
include_once("./Modules/MediaCast/classes/class.ilObjMediaCastAccess.php");
{
$lng->loadLanguageModule("mcst");
$feed_item = new ilFeedItem();
$feed_item->setTitle($lng->txt("mcst_media_cast_not_online"));
$feed_item->setDescription($lng->txt("mcst_media_cast_not_online_text"));
$feed_item->setLink(ILIAS_HTTP_PATH."/goto.php?client_id=".CLIENT_ID.
"&amp;target=".$item["context_obj_type"]);
$this->addItem($feed_item);
return;
}
}
$cont_loc = new ilLocatorGUI();
$cont_loc->addContextItems($a_ref_id, true);
$cont_loc->setTextOnly(true);
$loc = $cont_loc->getHTML();
if (trim($loc) != "")
{
$loc = " [".$loc."] ";
}
$news_item = new ilNewsItem();
$news_item->setContextObjId($obj_id);
$news_item->setContextObjType($obj_type);
$items = $news_item->getNewsForRefId($a_ref_id, true, false, 0, true);
if ($a_purpose) {
include_once("./Services/MediaObjects/classes/class.ilMediaItem.php");
}
$i = 0;
foreach($items as $item)
{
$i++;
if ($a_purpose != false && $obj_type == "mcst")
{
$mob = ilMediaItem::_getMediaItemsOfMObId($item[mob_id], $a_purpose);
if ($mob == false)
{
continue;
}
}
$obj_title = ilObject::_lookupTitle($item["context_obj_id"]);
$feed_item = new ilFeedItem();
($item["context_obj_type"], $item["title"], $item["content_is_lang_var"],
$item["agg_ref_id"], $item["aggregation"]);
// path
$cont_loc = new ilLocatorGUI();
$cont_loc->addContextItems($item["ref_id"], true, $a_ref_id);
$cont_loc->setTextOnly(true);
$loc = $cont_loc->getHTML();
if (trim($loc) != "")
{
$loc = "[".$loc."]";
}
$feed_item->setTitle($this->prepareStr($loc)." ".$this->prepareStr($obj_title).
": ".$this->prepareStr($title));
$feed_item->setDescription($this->prepareStr(nl2br($item["content"])));
$feed_item->setLink(ILIAS_HTTP_PATH."/goto.php?client_id=".CLIENT_ID.
"&amp;target=".$item["context_obj_type"]."_".$item["ref_id"]);
$feed_item->setAbout($feed_item->getLink()."&amp;il_about_feed=".$item["id"]);
$feed_item->setDate($item["creation_date"]);
// Enclosure
if ($item["content_type"] == NEWS_AUDIO &&
$item["mob_id"] > 0 && ilObject::_exists($item["mob_id"]))
{
$go_on = true;
if ($obj_type == "mcst")
{
include_once("./Modules/MediaCast/classes/class.ilObjMediaCastAccess.php");
{
$go_on = false;
}
}
if ($go_on)
{
include_once("./Services/MediaObjects/classes/class.ilObjMediaObject.php");
$url = ilObjMediaObject::_lookupItemPath($item["mob_id"], true, true, $mob["purpose"]);
$file = ilObjMediaObject::_lookupItemPath($item["mob_id"], false, false, $mob["purpose"]);
if (is_file($file))
{
$size = filesize($file);
}
$feed_item->setEnclosureUrl($url);
$feed_item->setEnclosureType((isset($mob["format"]))?$mob["format"]:"audio/mpeg");
$feed_item->setEnclosureLength($size);
}
}
$this->addItem($feed_item);
}
}

+ Here is the call graph for this function:


The documentation for this class was generated from the following file: