2019-05-14 15:28:42 -06:00
|
|
|
<?php
|
|
|
|
require_once('./Db.php');
|
|
|
|
require_once('./Token.php');
|
|
|
|
|
|
|
|
class Dictionary {
|
|
|
|
private $db;
|
|
|
|
private $token;
|
|
|
|
private $defaults;
|
|
|
|
function __construct () {
|
|
|
|
$this->db = new Db();
|
|
|
|
$this->token = new Token();
|
|
|
|
|
|
|
|
$this->defaults = array(
|
2019-05-21 11:25:57 -06:00
|
|
|
'partsOfSpeech' => 'Noun,Adjective,Verb',
|
2019-05-14 15:28:42 -06:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
private function checkIfIdExists ($id) {
|
|
|
|
$query = "SELECT id FROM dictionaries WHERE id=?";
|
|
|
|
$results = $this->db->query($query, array($id))->fetchAll();
|
|
|
|
return count($results) > 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function create ($user) {
|
|
|
|
$new_id = mt_rand(1000, 999999999);
|
|
|
|
$id_exists = $this->checkIfIdExists($new_id);
|
|
|
|
while ($id_exists) {
|
|
|
|
$new_id = mt_rand(1000, 999999999);
|
|
|
|
$id_exists = $this->checkIfIdExists($new_id);
|
|
|
|
}
|
|
|
|
|
2019-05-21 11:25:57 -06:00
|
|
|
$insert_dictionary_query = "INSERT INTO dictionaries (id, user, description, created_on) VALUES (?, ?, ?, ?)";
|
|
|
|
$insert_dictionary = $this->db->execute($insert_dictionary_query, array($new_id, $user, 'A new dictionary.', time()));
|
2019-05-14 15:28:42 -06:00
|
|
|
|
|
|
|
if ($insert_dictionary === true) {
|
2019-05-21 11:25:57 -06:00
|
|
|
$insert_linguistics_query = "INSERT INTO dictionary_linguistics (dictionary, parts_of_speech, exceptions, orthography_notes, grammar_notes)
|
|
|
|
VALUES ($new_id, ?, ?, ?, ?)";
|
2019-05-14 15:28:42 -06:00
|
|
|
$insert_linguistics = $this->db->execute($insert_linguistics_query, array(
|
2019-05-21 11:25:57 -06:00
|
|
|
$this->defaults['partsOfSpeech'],
|
|
|
|
'',
|
|
|
|
'',
|
|
|
|
'',
|
2019-05-14 15:28:42 -06:00
|
|
|
));
|
|
|
|
|
|
|
|
if ($insert_linguistics === true) {
|
|
|
|
return $this->changeCurrent($user, $new_id);
|
|
|
|
} else {
|
|
|
|
return array(
|
|
|
|
'error' => '"INSERT INTO dictionary_linguistics" failed: ' . $this->db->last_error_info[2],
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return array(
|
|
|
|
'error' => '"INSERT INTO dictionaries" failed: ' . $this->db->last_error_info[2],
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function changeCurrent ($user, $dictionary) {
|
|
|
|
$update_query = 'UPDATE users SET current_dictionary=? WHERE id=?';
|
|
|
|
$update = $this->db->query($update_query, array($dictionary, $user));
|
|
|
|
if ($update->rowCount() > 0) {
|
|
|
|
return $dictionary;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-05-23 19:56:45 -06:00
|
|
|
public function deleteDictionary ($user, $dictionary) {
|
|
|
|
$update_query = 'DELETE FROM dictionaries WHERE id=? AND user=?';
|
|
|
|
$update = $this->db->query($update_query, array($dictionary, $user));
|
|
|
|
if ($update->rowCount() > 0) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-05-14 15:28:42 -06:00
|
|
|
public function getAllNames ($user) {
|
|
|
|
$query = "SELECT id, name, specification FROM dictionaries WHERE user=$user";
|
|
|
|
$results = $this->db->query($query)->fetchAll();
|
|
|
|
if ($results) {
|
|
|
|
return array_map(function($result) {
|
|
|
|
return array(
|
2019-05-21 11:48:28 -06:00
|
|
|
'id' => $this->token->hash($result['id']),
|
2019-05-14 15:28:42 -06:00
|
|
|
'name' => $result['name'] . ' ' . $result['specification'],
|
|
|
|
);
|
|
|
|
}, $results);
|
|
|
|
}
|
|
|
|
return array();
|
|
|
|
}
|
|
|
|
|
2019-05-24 18:50:31 -06:00
|
|
|
public function getPublicDictionaryDetails ($dictionary_hash) {
|
|
|
|
$dictionary = $this->token->unhash($dictionary_hash);
|
|
|
|
if ($dictionary !== false) {
|
|
|
|
$query = "SELECT * FROM dictionaries JOIN dictionary_linguistics ON dictionary = id WHERE id=? AND is_public=1";
|
|
|
|
$result = $this->db->query($query, array($dictionary))->fetch();
|
|
|
|
if ($result) {
|
|
|
|
// Default json values in case they are somehow not created by front end first
|
|
|
|
$partsOfSpeech = $result['parts_of_speech'] !== '' ? $result['parts_of_speech'] : $this->defaults['partsOfSpeech'];
|
|
|
|
|
|
|
|
return array(
|
|
|
|
'externalID' => $this->token->hash($result['id']),
|
|
|
|
'name' => $result['name'],
|
|
|
|
'specification' => $result['specification'],
|
|
|
|
'description' => $result['description'],
|
|
|
|
'partsOfSpeech' => explode(',', $partsOfSpeech),
|
|
|
|
'details' => array(
|
|
|
|
'phonology' => array(
|
|
|
|
'consonants' => $result['consonants'] !== '' ? explode(' ', $result['consonants']) : array(),
|
|
|
|
'vowels' => $result['vowels'] !== '' ? explode(' ', $result['vowels']) : array(),
|
|
|
|
'blends' => $result['blends'] !== '' ? explode(' ', $result['blends']) : array(),
|
|
|
|
'phonotactics' => array(
|
|
|
|
'onset' => $result['onset'] !== '' ? explode(',', $result['onset']) : array(),
|
|
|
|
'nucleus' => $result['nucleus'] !== '' ? explode(',', $result['nucleus']) : array(),
|
|
|
|
'coda' => $result['coda'] !== '' ? explode(',', $result['coda']) : array(),
|
|
|
|
'exceptions' => $result['exceptions'],
|
|
|
|
),
|
|
|
|
),
|
|
|
|
'orthography' => array(
|
|
|
|
'notes' => $result['orthography_notes'],
|
|
|
|
),
|
|
|
|
'grammar' => array(
|
|
|
|
'notes' => $result['grammar_notes'],
|
|
|
|
),
|
|
|
|
),
|
|
|
|
'settings' => array(
|
|
|
|
'allowDuplicates' => $result['allow_duplicates'] === '1' ? true : false,
|
|
|
|
'caseSensitive' => $result['case_sensitive'] === '1' ? true : false,
|
|
|
|
'sortByDefinition' => $result['sort_by_definition'] === '1' ? true : false,
|
|
|
|
'isComplete' => false,
|
|
|
|
'isPublic' => $result['is_public'] === '1' ? true : false,
|
|
|
|
),
|
|
|
|
'lastUpdated' => is_null($result['last_updated']) ? $result['created_on'] : $result['last_updated'],
|
|
|
|
'createdOn' => $result['created_on'],
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getPublicDictionaryWords ($dictionary_hash) {
|
|
|
|
$dictionary = $this->token->unhash($dictionary_hash);
|
|
|
|
if ($dictionary !== false) {
|
|
|
|
$query = "SELECT words.* FROM words JOIN dictionaries ON id = dictionary WHERE dictionary=? AND is_public=1";
|
|
|
|
$results = $this->db->query($query, array($dictionary))->fetchAll();
|
|
|
|
if ($results) {
|
|
|
|
return array_map(function ($row) {
|
|
|
|
return array(
|
|
|
|
'name' => $row['name'],
|
|
|
|
'pronunciation' => $row['pronunciation'],
|
|
|
|
'partOfSpeech' => $row['part_of_speech'],
|
|
|
|
'definition' => $row['definition'],
|
|
|
|
'details' => $row['details'],
|
|
|
|
'lastUpdated' => is_null($row['last_updated']) ? intval($row['created_on']) : intval($row['last_updated']),
|
|
|
|
'createdOn' => intval($row['created_on']),
|
|
|
|
'wordId' => intval($row['word_id']),
|
|
|
|
);
|
|
|
|
}, $results);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return array();
|
|
|
|
}
|
|
|
|
|
2019-05-14 15:28:42 -06:00
|
|
|
public function getDetails ($user, $dictionary) {
|
|
|
|
$query = "SELECT * FROM dictionaries JOIN dictionary_linguistics ON dictionary = id WHERE user=$user AND id=$dictionary";
|
|
|
|
$result = $this->db->query($query)->fetch();
|
|
|
|
if ($result) {
|
|
|
|
// Default json values in case they are somehow not created by front end first
|
2019-05-21 17:01:48 -06:00
|
|
|
$partsOfSpeech = $result['parts_of_speech'] !== '' ? $result['parts_of_speech'] : $this->defaults['partsOfSpeech'];
|
2019-05-14 15:28:42 -06:00
|
|
|
|
|
|
|
return array(
|
2019-05-23 14:20:54 -06:00
|
|
|
'externalID' => $this->token->hash($result['id']),
|
2019-05-14 15:28:42 -06:00
|
|
|
'name' => $result['name'],
|
|
|
|
'specification' => $result['specification'],
|
|
|
|
'description' => $result['description'],
|
2019-05-21 18:54:19 -06:00
|
|
|
'partsOfSpeech' => explode(',', $partsOfSpeech),
|
2019-05-14 15:28:42 -06:00
|
|
|
'details' => array(
|
2019-05-21 17:01:48 -06:00
|
|
|
'phonology' => array(
|
|
|
|
'consonants' => $result['consonants'] !== '' ? explode(' ', $result['consonants']) : array(),
|
|
|
|
'vowels' => $result['vowels'] !== '' ? explode(' ', $result['vowels']) : array(),
|
|
|
|
'blends' => $result['blends'] !== '' ? explode(' ', $result['blends']) : array(),
|
|
|
|
'phonotactics' => array(
|
|
|
|
'onset' => $result['onset'] !== '' ? explode(',', $result['onset']) : array(),
|
|
|
|
'nucleus' => $result['nucleus'] !== '' ? explode(',', $result['nucleus']) : array(),
|
|
|
|
'coda' => $result['coda'] !== '' ? explode(',', $result['coda']) : array(),
|
2019-05-23 11:07:51 -06:00
|
|
|
'exceptions' => $result['exceptions'],
|
2019-05-21 17:01:48 -06:00
|
|
|
),
|
|
|
|
),
|
2019-05-14 15:28:42 -06:00
|
|
|
'orthography' => array(
|
|
|
|
'notes' => $result['orthography_notes'],
|
|
|
|
),
|
|
|
|
'grammar' => array(
|
|
|
|
'notes' => $result['grammar_notes'],
|
|
|
|
),
|
|
|
|
),
|
|
|
|
'settings' => array(
|
|
|
|
'allowDuplicates' => $result['allow_duplicates'] === '1' ? true : false,
|
|
|
|
'caseSensitive' => $result['case_sensitive'] === '1' ? true : false,
|
|
|
|
'sortByDefinition' => $result['sort_by_definition'] === '1' ? true : false,
|
2019-05-24 15:09:57 -06:00
|
|
|
'isComplete' => false,
|
2019-05-14 15:28:42 -06:00
|
|
|
'isPublic' => $result['is_public'] === '1' ? true : false,
|
|
|
|
),
|
2019-05-23 12:04:29 -06:00
|
|
|
'lastUpdated' => is_null($result['last_updated']) ? $result['created_on'] : $result['last_updated'],
|
2019-05-14 15:28:42 -06:00
|
|
|
'createdOn' => $result['created_on'],
|
|
|
|
);
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setDetails ($user, $dictionary, $dictionary_object) {
|
|
|
|
$query1 = "UPDATE dictionaries
|
|
|
|
SET name=:name,
|
|
|
|
specification=:specification,
|
|
|
|
description=:description,
|
|
|
|
allow_duplicates=:allow_duplicates,
|
|
|
|
case_sensitive=:case_sensitive,
|
|
|
|
sort_by_definition=:sort_by_definition,
|
|
|
|
is_complete=:is_complete,
|
|
|
|
is_public=:is_public,
|
|
|
|
last_updated=:last_updated,
|
|
|
|
created_on=:created_on
|
|
|
|
WHERE user=$user AND id=$dictionary";
|
|
|
|
|
|
|
|
// $result1 = $this->db->query($query1, array(
|
|
|
|
$result1 = $this->db->execute($query1, array(
|
|
|
|
':name' => $dictionary_object['name'],
|
|
|
|
':specification' => $dictionary_object['specification'],
|
|
|
|
':description' => $dictionary_object['description'],
|
2019-05-21 16:29:05 -06:00
|
|
|
':allow_duplicates' => $dictionary_object['settings']['allowDuplicates'] ? 1 : 0,
|
|
|
|
':case_sensitive' => $dictionary_object['settings']['caseSensitive'] ? 1 : 0,
|
|
|
|
':sort_by_definition' => $dictionary_object['settings']['sortByDefinition'] ? 1 : 0,
|
2019-05-24 15:09:57 -06:00
|
|
|
':is_complete' => 0,
|
2019-05-21 16:29:05 -06:00
|
|
|
':is_public' => $dictionary_object['settings']['isPublic'] ? 1 : 0,
|
2019-05-14 15:28:42 -06:00
|
|
|
':last_updated' => $dictionary_object['lastUpdated'],
|
|
|
|
':created_on' => $dictionary_object['createdOn'],
|
|
|
|
));
|
|
|
|
// if ($result1->rowCount() > 0) {
|
|
|
|
if ($result1 === true) {
|
|
|
|
$linguistics = $dictionary_object['details'];
|
|
|
|
$query2 = "UPDATE dictionary_linguistics
|
|
|
|
SET parts_of_speech=:parts_of_speech,
|
2019-05-21 16:29:05 -06:00
|
|
|
consonants=:consonants,
|
|
|
|
vowels=:vowels,
|
|
|
|
blends=:blends,
|
|
|
|
onset=:onset,
|
|
|
|
nucleus=:nucleus,
|
|
|
|
coda=:coda,
|
|
|
|
exceptions=:exceptions,
|
2019-05-14 15:28:42 -06:00
|
|
|
orthography_notes=:orthography_notes,
|
|
|
|
grammar_notes=:grammar_notes
|
|
|
|
WHERE dictionary=$dictionary";
|
|
|
|
|
|
|
|
// $result2 = $this->db->query($query2, array(
|
|
|
|
$result2 = $this->db->execute($query2, array(
|
2019-05-21 16:29:05 -06:00
|
|
|
':parts_of_speech' => implode(',', $dictionary_object['partsOfSpeech']),
|
|
|
|
':consonants' => implode(' ', $linguistics['phonology']['consonants']),
|
|
|
|
':vowels' => implode(' ', $linguistics['phonology']['vowels']),
|
|
|
|
':blends' => implode(' ', $linguistics['phonology']['blends']),
|
|
|
|
':onset' => implode(',', $linguistics['phonology']['phonotactics']['onset']),
|
|
|
|
':nucleus' => implode(',', $linguistics['phonology']['phonotactics']['nucleus']),
|
|
|
|
':coda' => implode(',', $linguistics['phonology']['phonotactics']['coda']),
|
|
|
|
':exceptions' => $linguistics['phonology']['phonotactics']['exceptions'],
|
2019-05-14 15:28:42 -06:00
|
|
|
':orthography_notes' => $linguistics['orthography']['notes'],
|
|
|
|
':grammar_notes' => $linguistics['grammar']['notes'],
|
|
|
|
));
|
|
|
|
|
|
|
|
// if ($result2->rowCount() > 0) {
|
|
|
|
if ($result2 === true) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
2019-05-21 16:29:05 -06:00
|
|
|
return $this->db->last_error_info;
|
|
|
|
// return false;
|
2019-05-14 15:28:42 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getWords ($user, $dictionary) {
|
|
|
|
$query = "SELECT words.* FROM words JOIN dictionaries ON id = dictionary WHERE dictionary=$dictionary AND user=$user";
|
|
|
|
$results = $this->db->query($query)->fetchAll();
|
|
|
|
if ($results) {
|
|
|
|
return array_map(function ($row) {
|
|
|
|
return array(
|
|
|
|
'name' => $row['name'],
|
|
|
|
'pronunciation' => $row['pronunciation'],
|
|
|
|
'partOfSpeech' => $row['part_of_speech'],
|
|
|
|
'definition' => $row['definition'],
|
|
|
|
'details' => $row['details'],
|
2019-05-24 18:50:31 -06:00
|
|
|
'lastUpdated' => is_null($row['last_updated']) ? intval($row['created_on']) : intval($row['last_updated']),
|
2019-05-14 15:28:42 -06:00
|
|
|
'createdOn' => intval($row['created_on']),
|
2019-05-22 14:21:42 -06:00
|
|
|
'wordId' => intval($row['word_id']),
|
2019-05-14 15:28:42 -06:00
|
|
|
);
|
|
|
|
}, $results);
|
|
|
|
}
|
|
|
|
return array();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getDeletedWords ($user, $dictionary) {
|
|
|
|
$query = "SELECT deleted_words.* FROM deleted_words JOIN dictionaries ON id = dictionary WHERE dictionary=$dictionary AND user=$user";
|
|
|
|
$results = $this->db->query($query)->fetchAll();
|
|
|
|
if ($results) {
|
|
|
|
return array_map(function ($row) {
|
|
|
|
return array(
|
|
|
|
'id' => intval($row['word_id']),
|
|
|
|
'deletedOn' => intval($row['deleted_on']),
|
|
|
|
);
|
|
|
|
}, $results);
|
|
|
|
}
|
|
|
|
return array();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setWords ($user, $dictionary, $words = array()) {
|
2019-05-21 16:29:05 -06:00
|
|
|
if (count($words) < 1) {
|
|
|
|
return true;
|
|
|
|
}
|
2019-05-21 17:01:48 -06:00
|
|
|
|
2019-05-14 15:28:42 -06:00
|
|
|
$query = 'INSERT INTO words (dictionary, word_id, name, pronunciation, part_of_speech, definition, details, last_updated, created_on) VALUES ';
|
|
|
|
$params = array();
|
|
|
|
$word_ids = array();
|
|
|
|
$most_recent_word_update = 0;
|
|
|
|
foreach($words as $word) {
|
2019-05-23 14:42:09 -06:00
|
|
|
$last_updated = isset($word['lastUpdated']) ? $word['createdOn'] : $word['lastUpdated'];
|
2019-05-14 15:28:42 -06:00
|
|
|
if ($most_recent_word_update < $last_updated) {
|
|
|
|
$most_recent_word_update = $last_updated;
|
|
|
|
}
|
2019-05-22 14:21:42 -06:00
|
|
|
$word_ids[] = $word['wordId'];
|
2019-05-14 15:28:42 -06:00
|
|
|
$query .= "(?, ?, ?, ?, ?, ?, ?, ?, ?), ";
|
|
|
|
$params[] = $dictionary;
|
2019-05-22 14:21:42 -06:00
|
|
|
$params[] = $word['wordId'];
|
2019-05-14 15:28:42 -06:00
|
|
|
$params[] = $word['name'];
|
|
|
|
$params[] = $word['pronunciation'];
|
|
|
|
$params[] = $word['partOfSpeech'];
|
|
|
|
$params[] = $word['definition'];
|
|
|
|
$params[] = $word['details'];
|
|
|
|
$params[] = $last_updated;
|
|
|
|
$params[] = $word['createdOn'];
|
|
|
|
}
|
|
|
|
$query = trim($query, ', ') . ' ON DUPLICATE KEY UPDATE
|
|
|
|
name=VALUES(name),
|
|
|
|
pronunciation=VALUES(pronunciation),
|
|
|
|
part_of_speech=VALUES(part_of_speech),
|
|
|
|
definition=VALUES(definition),
|
|
|
|
details=VALUES(details),
|
2019-05-22 14:21:42 -06:00
|
|
|
last_updated=VALUES(last_updated),
|
|
|
|
created_on=VALUES(created_on)';
|
2019-05-14 15:28:42 -06:00
|
|
|
|
|
|
|
$results = $this->db->execute($query, $params);
|
|
|
|
|
|
|
|
// if ($results) {
|
|
|
|
// $database_words = $this->getWords($user, $dictionary);
|
|
|
|
// $database_ids = array_map(function($database_word) { return $database_word['id']; }, $database_words);
|
|
|
|
// $words_to_delete = array_filter($database_ids, function($database_id) use($word_ids) { return !in_array($database_id, $word_ids); });
|
|
|
|
// if ($words_to_delete) {
|
|
|
|
// $delete_results = $this->deleteWords($dictionary, $words_to_delete);
|
|
|
|
// return $delete_results;
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
|
2019-05-21 16:29:05 -06:00
|
|
|
if ($results) {
|
|
|
|
return $results;
|
|
|
|
}
|
|
|
|
return array(
|
|
|
|
'error' => $this->db->last_error_info,
|
|
|
|
);
|
2019-05-14 15:28:42 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
public function deleteWords ($dictionary, $word_ids) {
|
|
|
|
$insert_query = 'INSERT INTO deleted_words (dictionary, word_id, deleted_on) VALUES ';
|
|
|
|
$insert_params = array();
|
|
|
|
$delete_query = 'DELETE FROM words WHERE dictionary=? AND word_id IN (';
|
|
|
|
$delete_params = array($dictionary);
|
|
|
|
foreach($word_ids as $word_id) {
|
|
|
|
$insert_query .= "(?, ?, ?), ";
|
|
|
|
$insert_params[] = $dictionary;
|
|
|
|
$insert_params[] = $word_id;
|
|
|
|
$insert_params[] = time();
|
|
|
|
|
|
|
|
$delete_query .= '?, ';
|
|
|
|
$delete_params[] = $word_id;
|
|
|
|
}
|
|
|
|
|
|
|
|
$insert_query = trim($insert_query, ', ') . ' ON DUPLICATE KEY UPDATE deleted_on=VALUES(deleted_on)';
|
|
|
|
$delete_query = trim($delete_query, ', ') . ')';
|
|
|
|
|
|
|
|
$insert_results = $this->db->execute($insert_query, $insert_params);
|
|
|
|
if ($insert_results) {
|
|
|
|
$delete_results = $this->db->execute($delete_query, $delete_params);
|
2019-05-23 15:07:31 -06:00
|
|
|
if ($delete_results) {
|
|
|
|
return $delete_results;
|
|
|
|
}
|
2019-05-14 15:28:42 -06:00
|
|
|
}
|
2019-05-23 15:07:31 -06:00
|
|
|
return $this->db->last_error_info;
|
2019-05-14 15:28:42 -06:00
|
|
|
}
|
|
|
|
}
|