Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
slapos
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Jean-Paul Smets
slapos
Commits
d7c5d3f3
Commit
d7c5d3f3
authored
Sep 25, 2012
by
Marco Mariani
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
load initial database
parent
6cc245bf
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
53 additions
and
5 deletions
+53
-5
slapos/recipe/maarch/configuration.py
slapos/recipe/maarch/configuration.py
+53
-5
No files found.
slapos/recipe/maarch/configuration.py
View file @
d7c5d3f3
...
...
@@ -27,8 +27,21 @@
import
ConfigParser
import
lxml.etree
import
md5
import
os
import
lxml
def
temporary_hack
():
import
sys
develop_eggs
=
'/'
.
join
(
lxml
.
__file__
.
split
(
'/'
)[:
lxml
.
__file__
.
split
(
'/'
).
index
(
'develop-eggs'
)
+
1
])
for
egg_folder
in
os
.
listdir
(
develop_eggs
):
if
egg_folder
.
startswith
(
'psycopg2'
):
sys
.
path
.
append
(
os
.
path
.
join
(
develop_eggs
,
egg_folder
))
temporary_hack
()
# XXX TODO provide psycopg to sys.path by other means
import
psycopg2
from
slapos.recipe.librecipe
import
GenericBaseRecipe
def
xpath_set
(
xml
,
settings
):
...
...
@@ -45,17 +58,18 @@ class Recipe(GenericBaseRecipe):
self
.
update_phpini
(
php_ini_path
=
os
.
path
.
join
(
self
.
options
[
'php_ini_dir'
],
'php.ini'
))
# XXX TODO: database schema and initial data
# XXX TODO: database schema patch for ipv6
self
.
load_initial_db
()
# XXX TODO: document folder
# XXX TODO: admin password
# XXX TODO:
test
admin password
# confirm that everything is done, the app will run without further setup
self
.
installed_lock
()
lck_path
=
self
.
installed_lock
()
return
[
apps_config_xml
,
core_config_xml
,
lck_path
,
]
...
...
@@ -64,10 +78,13 @@ class Recipe(GenericBaseRecipe):
Create an empty file to mean the setup is completed
"""
htdocs
=
self
.
options
[
'htdocs'
]
lck_path
=
os
.
path
.
join
(
htdocs
,
'installed.lck'
)
with
open
(
os
.
path
.
join
(
htdocs
,
'installed.lck'
)
,
'w'
):
with
open
(
lck_path
,
'w'
):
pass
return
lck_path
def
create_apps_config_xml
(
self
):
options
=
self
.
options
...
...
@@ -127,3 +144,34 @@ class Recipe(GenericBaseRecipe):
php_ini
.
write
(
fout
)
def
load_initial_db
(
self
):
options
=
self
.
options
conn
=
psycopg2
.
connect
(
host
=
options
[
'db_host'
],
port
=
options
[
'db_port'
],
database
=
options
[
'db_dbname'
],
user
=
options
[
'db_username'
],
password
=
options
[
'db_password'
])
cur
=
conn
.
cursor
()
htdocs
=
options
[
'htdocs'
]
# load the schema
with
open
(
os
.
path
.
join
(
htdocs
,
'structure.sql'
))
as
fin
:
cur
.
execute
(
fin
.
read
())
# patch the schema to store long addresses (ipv6)
cur
.
execute
(
'ALTER TABLE HISTORY ALTER COLUMN remote_ip TYPE CHAR(255);'
)
with
open
(
os
.
path
.
join
(
htdocs
,
'data_mini.sql'
))
as
fin
:
cur
.
execute
(
fin
.
read
())
# initial admin password
enc_password
=
md5
.
md5
(
options
[
'db_password'
]).
hexdigest
()
cur
.
execute
(
"UPDATE users SET password=%s WHERE user_id='superadmin';"
,
(
enc_password
,
))
conn
.
commit
()
cur
.
close
()
conn
.
close
()
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment