what-did-they-say/classes/WDTSTranscript.php

141 lines
4.2 KiB
PHP
Raw Normal View History

<?php
2009-09-22 00:53:51 +00:00
class WDTSTranscriptManager {
var $key = null;
2009-09-22 00:53:51 +00:00
var $search_key = null;
var $post_id = null;
2009-09-13 16:35:20 +00:00
var $allow_multiple = false;
2009-09-22 00:53:51 +00:00
2009-09-06 15:04:38 +00:00
function __construct($post_id = null) {
2009-09-22 00:53:51 +00:00
if (is_numeric($post_id)) { $this->post_id = $post_id; }
2009-09-06 15:04:38 +00:00
}
2009-09-22 00:53:51 +00:00
function WDTSTranscriptManager($post_id = null) {
2009-09-06 15:04:38 +00:00
$this->__construct($post_id);
}
2009-09-22 00:53:51 +00:00
function _get_transcripts_metadata() {
$transcripts = false;
if (!is_null($this->key)) {
$post = get_post($this->post_id);
if (!empty($post)) {
$transcripts = get_post_meta($this->post_id, $this->key, true);
if (!is_array($transcripts)) { $transcripts = array(); }
}
}
return $transcripts;
}
2009-09-22 00:53:51 +00:00
/**
* Save a transcript to a post.
* @param int $post_id The post to attach the transcript to.
* @param string $language The language of the transcript.
* @param string $transcript The transcript content.
* @return bool True if the transcript was saved, false otherwise.
*/
2009-09-22 00:53:51 +00:00
function save_transcript($transcript_info) {
$user = wp_get_current_user();
if (!empty($user)) {
2009-09-22 00:53:51 +00:00
$transcript_info = (array)$transcript_info;
$transcript_info['user_id'] = $user->ID;
2009-09-13 16:35:20 +00:00
unset($transcript_info['key']);
2009-09-22 00:53:51 +00:00
2009-09-13 18:46:02 +00:00
foreach (array_keys($transcript_info) as $key) {
2009-09-22 00:53:51 +00:00
if (strpos($key, "_") === 0) { unset($transcript_info[$key]); }
2009-09-13 18:46:02 +00:00
}
2009-09-22 00:53:51 +00:00
2009-09-13 16:35:20 +00:00
if (($transcripts = $this->_get_transcripts_metadata()) !== false) {
$max_key = 0;
foreach ($transcripts as $transcript) {
2009-09-22 00:53:51 +00:00
$max_key = max($max_key, $transcript['key']) + 1;
2009-09-13 16:35:20 +00:00
}
$transcript_info['key'] = $max_key;
2009-09-22 00:53:51 +00:00
2009-09-13 16:35:20 +00:00
if ($this->allow_multiple) {
$transcripts[] = $transcript_info;
} else {
$new_transcripts = array();
$was_added = false;
foreach ($transcripts as $transcript) {
if ($transcript['language'] == $transcript_info['language']) {
$was_added = true;
$transcript_info['key']--;
$new_transcripts[] = $transcript_info;
} else {
2009-09-22 00:53:51 +00:00
$new_transcripts[] = $transcript;
2009-09-13 16:35:20 +00:00
}
}
2009-09-13 16:35:20 +00:00
if (!$was_added) { $new_transcripts[] = $transcript_info; }
$transcripts = $new_transcripts;
}
2009-09-22 00:53:51 +00:00
$this->_update_search_field($transcripts);
2009-09-13 16:35:20 +00:00
return update_post_meta($this->post_id, $this->key, $transcripts);
}
}
2009-09-22 00:53:51 +00:00
return false;
}
2009-09-22 00:53:51 +00:00
function _update_search_field($transcripts) {
if (!empty($this->search_key)) {
$search_lines = array();
foreach ($transcripts as $transcript) { $search_lines[] = preg_replace('#\[[^\]]+\]#', '', $transcript['transcript']); }
2009-09-22 00:53:51 +00:00
update_post_meta($this->post_id, $this->search_key, implode(" ", $search_lines));
}
}
function delete_transcript($language = null) {
2009-09-13 16:35:20 +00:00
return $this->_delete_transcript_by_field('language', $language);
}
2009-09-22 00:53:51 +00:00
2009-09-13 16:35:20 +00:00
function delete_transcript_by_key($key = null) {
return $this->_delete_transcript_by_field('key', $key);
}
2009-09-22 00:53:51 +00:00
2009-09-13 16:35:20 +00:00
function _delete_transcript_by_field($field, $value) {
2009-09-22 00:53:51 +00:00
if (($transcripts = $this->_get_transcripts_metadata()) !== false) {
$new_transcripts = array();
2009-09-13 16:35:20 +00:00
$deleted_transcript = false;
foreach ($transcripts as $transcript) {
2009-09-13 16:35:20 +00:00
if ($transcript[$field] != $value) {
$new_transcripts[] = $transcript;
} else {
$deleted_transcript = $transcript;
}
}
2009-09-22 00:53:51 +00:00
$this->_update_search_field($new_transcripts);
2009-09-13 16:35:20 +00:00
update_post_meta($this->post_id, $this->key, $new_transcripts);
return $deleted_transcript;
2009-09-22 00:53:51 +00:00
}
return false;
}
2009-09-22 00:53:51 +00:00
function get_transcripts() {
return $this->_get_transcripts_metadata();
}
2009-09-22 00:53:51 +00:00
function get_transcripts_for_user($user_id) {
$user_transcripts = array();
2009-09-22 00:53:51 +00:00
if (($transcripts = $this->_get_transcripts_metadata()) !== false) {
foreach ($transcripts as $transcript) {
if ($transcript['user_id'] == $user_id) { $user_transcripts[] = $transcript; }
}
}
return $user_transcripts;
}
2009-09-22 00:53:51 +00:00
function get_languages() {
$languages = array();
2009-09-22 00:53:51 +00:00
if (($transcripts = $this->_get_transcripts_metadata()) !== false) {
foreach ($transcripts as $transcript) {
2009-09-22 00:53:51 +00:00
$languages[$transcript['language']] = true;
}
}
return array_keys($languages);
}
}
?>