PHP Class Swiftriver\Core\Modules\DataContext\MySql_V1\DataContext

Inheritance: implements Swiftriver\Core\DAL\DataContextInterfaces\IDataContext
Afficher le fichier Open project: ushahidi/Swiftriver-2011

Méthodes publiques

Méthode Description
AddRegisteredCoreAPIKey ( string $key ) : boolean Given a new APIKey, this method adds it to the data store or registered API keys.
DeleteContent ( Content[] $content ) Given an array of content items, this method removes them from the data store.
GetChannelsById ( string[] $ids ) : Channel[] Given the IDs of Channels, this method gets them from the underlying data store
GetContent ( string[] $ids, $orderby = null ) : Content[] Given an array of content is's, this function will fetch the content objects from the data store.
GetContentList ( string[] $parameters )
GetSourcesById ( string[] $ids ) : Source[] Given the IDs of Sources, this method gets them from the underlying data store
IsRegisterdCoreAPIKey ( string $key ) : boolean Checks that the given API Key is registed for this Core install
ListAllChannels ( ) : Channel[] Lists all the current Channel in the core
ListAllSources ( ) : Source[] Lists all the current Source in the core
RecordSourceScoreChange ( string $sourceId, string $markerId, integer $change, $reason = null ) This method redords the fact that a marker (sweeper) has changed the score of a source by marking a content items as either 'acurate', 'chatter' or 'inacurate'
RemoveChannels ( string[] $ids ) Given a list of IDs this method removes the Channels from the data store.
RemoveRegisteredCoreAPIKey ( $key ) : boolean Given an APIKey, this method will remove it from the data store of registered API Keys Returns true on sucess
RunQuery ( $query )
SaveChannels ( Channel[] $channels ) Adds a list of new Channels to the data store
SaveContent ( Content[] $content ) Given a set of content items, this method will persist them to the data store, if they already exists then this method should update the values in the data store.
SelectNextDueChannel ( DateTime $time ) : Channel Given a date time, this function returns the next due Channel.

Private Methods

Méthode Description
AddPropertiesToDataSoreItem ( $dataStoreItem, $sourceItem, $propertiesArray )

Method Details

AddRegisteredCoreAPIKey() public static méthode

Given a new APIKey, this method adds it to the data store or registered API keys.
public static AddRegisteredCoreAPIKey ( string $key ) : boolean
$key string
Résultat boolean

DeleteContent() public static méthode

Given an array of content items, this method removes them from the data store.
public static DeleteContent ( Content[] $content )
$content Swiftriver\Core\ObjectModel\Content[]

GetChannelsById() public static méthode

Given the IDs of Channels, this method gets them from the underlying data store
public static GetChannelsById ( string[] $ids ) : Channel[]
$ids string[]
Résultat Swiftriver\Core\ObjectModel\Channel[]

GetContent() public static méthode

Given an array of content is's, this function will fetch the content objects from the data store.
public static GetContent ( string[] $ids, $orderby = null ) : Content[]
$ids string[]
Résultat Swiftriver\Core\ObjectModel\Content[]

GetContentList() public static méthode

public static GetContentList ( string[] $parameters )
$parameters string[]

GetSourcesById() public static méthode

Given the IDs of Sources, this method gets them from the underlying data store
public static GetSourcesById ( string[] $ids ) : Source[]
$ids string[]
Résultat Swiftriver\Core\ObjectModel\Source[]

IsRegisterdCoreAPIKey() public static méthode

Inhereted from IAPIKeyDataContext
public static IsRegisterdCoreAPIKey ( string $key ) : boolean
$key string
Résultat boolean

ListAllChannels() public static méthode

Lists all the current Channel in the core
public static ListAllChannels ( ) : Channel[]
Résultat Swiftriver\Core\ObjectModel\Channel[]

ListAllSources() public static méthode

Lists all the current Source in the core
public static ListAllSources ( ) : Source[]
Résultat Swiftriver\Core\ObjectModel\Source[]

RecordSourceScoreChange() public static méthode

This method redords the fact that a marker (sweeper) has changed the score of a source by marking a content items as either 'acurate', 'chatter' or 'inacurate'
public static RecordSourceScoreChange ( string $sourceId, string $markerId, integer $change, $reason = null )
$sourceId string
$markerId string
$change integer

RemoveChannels() public static méthode

Given a list of IDs this method removes the Channels from the data store.
public static RemoveChannels ( string[] $ids )
$ids string[]

RemoveRegisteredCoreAPIKey() public static méthode

Given an APIKey, this method will remove it from the data store of registered API Keys Returns true on sucess
public static RemoveRegisteredCoreAPIKey ( $key ) : boolean
Résultat boolean

RunQuery() public static méthode

public static RunQuery ( $query )

SaveChannels() public static méthode

Adds a list of new Channels to the data store
public static SaveChannels ( Channel[] $channels )
$channels Swiftriver\Core\ObjectModel\Channel[]

SaveContent() public static méthode

Given a set of content items, this method will persist them to the data store, if they already exists then this method should update the values in the data store.
public static SaveContent ( Content[] $content )
$content Swiftriver\Core\ObjectModel\Content[]

SelectNextDueChannel() public static méthode

Given a date time, this function returns the next due Channel.
public static SelectNextDueChannel ( DateTime $time ) : Channel
$time DateTime
Résultat Swiftriver\Core\ObjectModel\Channel