Skip to content

Commit bd98c61

Browse files
authored
Merge pull request #12 from daxxi13/patch-2
fix issue #11
2 parents 2205331 + ddb40a6 commit bd98c61

File tree

1 file changed

+7
-9
lines changed

1 file changed

+7
-9
lines changed

plex-db-sync

+7-9
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ function checkForDBs() {
108108
if [ "${DEBUG}" == "true" ]; then
109109
echoD "version db1: ${VPLEXDB1} db2: ${VPLEXDB2}"
110110
fi
111-
if [ [ "${VPLEXDB1}" != "${VPLEXDB2}" ]; then
111+
if [ "${VPLEXDB1}" != "${VPLEXDB2}" ]; then
112112
echoD "Versions of plex databases not equal"
113113
exit
114114
fi
@@ -160,14 +160,12 @@ function getIgnore() {
160160
}
161161

162162
function createTmpDB() {
163-
sqlite3 "${PLEXDB1}" ".schema metadata_item_settings"|grep CREATE\ TABLE |sed -e 's,CREATE TABLE IF NOT EXISTS "metadata_item_settings",CREATE TABLE IF NOT EXISTS "metadata_item_settings1",g'| sqlite3 "${TMPDB}"
164-
sqlite3 "${PLEXDB1}" ".schema metadata_item_settings"|grep CREATE\ TABLE |sed -e 's,CREATE TABLE IF NOT EXISTS "metadata_item_settings",CREATE TABLE IF NOT EXISTS "metadata_item_settings2",g'| sqlite3 "${TMPDB}"
165-
sqlite3 "${PLEXDB1}" ".schema metadata_items"|grep CREATE\ TABLE |sed -e 's,CREATE TABLE IF NOT EXISTS "metadata_items",CREATE TABLE IF NOT EXISTS "metadata_items1",g'| sqlite3 "${TMPDB}"
166-
sqlite3 "${PLEXDB1}" ".schema metadata_items"|grep CREATE\ TABLE |sed -e 's,CREATE TABLE IF NOT EXISTS "metadata_items",CREATE TABLE IF NOT EXISTS "metadata_items2",g'| sqlite3 "${TMPDB}"
167-
sqlite3 "${PLEXDB1}" ".schema taggings"|grep CREATE\ TABLE |sed -e 's,CREATE TABLE IF NOT EXISTS "taggings",CREATE TABLE IF NOT EXISTS "etadata_taggings1",g'| sqlite3 "${TMPDB}"
168-
sqlite3 "${PLEXDB1}" ".schema taggings"|grep CREATE\ TABLE |sed -e 's,CREATE TABLE IF NOT EXISTS "taggings",CREATE TABLE IF NOT EXISTS "taggings2",g'| sqlite3 "${TMPDB}"
169-
sqlite3 "${PLEXDB1}" ".schema tags"|grep CREATE\ TABLE |sed -e 's,CREATE TABLE IF NOT EXISTS "tags",CREATE TABLE IF NOT EXISTS "tags1",g'| sqlite3 "${TMPDB}"
170-
sqlite3 "${PLEXDB1}" ".schema tags"|grep CREATE\ TABLE |sed -e 's,CREATE TABLE IF NOT EXISTS "tags",CREATE TABLE IF NOT EXISTS "tags2",g'| sqlite3 "${TMPDB}"
163+
TablesTmpDB=(metadata_item_settings metadata_items taggings tags)
164+
for TableTmpDB in ${TablesTmpDB[*]}
165+
do
166+
sqlite3 "${PLEXDB1}" "select sql from sqlite_master where name = '${TableTmpDB}'" | sed -e "s,${TableTmpDB},${TableTmpDB}1,g" | sqlite3 "${TMPDB}"
167+
sqlite3 "${PLEXDB1}" "select sql from sqlite_master where name = '${TableTmpDB}'" | sed -e "s,${TableTmpDB},${TableTmpDB}2,g" | sqlite3 "${TMPDB}"
168+
done
171169
echo "attach '${PLEXDB1}' as plexdb; attach '${TMPDB}' as tmpdb; insert into tmpdb.metadata_item_settings1 select * from plexdb.metadata_item_settings; insert into tmpdb.metadata_items1 select * from plexdb.metadata_items; insert into tmpdb.taggings1 select * from plexdb.taggings; insert into tmpdb.tags1 select * from plexdb.tags;" | sqlite3
172170
echo "attach '${PLEXDB2}' as plexdb; attach '${TMPDB}' as tmpdb; insert into tmpdb.metadata_item_settings2 select * from plexdb.metadata_item_settings; insert into tmpdb.metadata_items2 select * from plexdb.metadata_items; insert into tmpdb.taggings2 select * from plexdb.taggings; insert into tmpdb.tags2 select * from plexdb.tags;" | sqlite3
173171
}

0 commit comments

Comments
 (0)