Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
Coopdevs OCB mirror
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Coopdevs
Odoo
Coopdevs OCB mirror
Commits
dec81728
Commit
dec81728
authored
10 years ago
by
Fabien Meghazi
Browse files
Options
Downloads
Patches
Plain Diff
[ADD] odoo deploy
parent
6085a830
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
addons/base_import_module/bin/oe_module_deploy.py
+0
-86
0 additions, 86 deletions
addons/base_import_module/bin/oe_module_deploy.py
openerp/cli/__init__.py
+1
-0
1 addition, 0 deletions
openerp/cli/__init__.py
openerp/cli/deploy.py
+92
-0
92 additions, 0 deletions
openerp/cli/deploy.py
with
93 additions
and
86 deletions
addons/base_import_module/bin/oe_module_deploy.py
deleted
100755 → 0
+
0
−
86
View file @
6085a830
#!/usr/bin/env python
import
argparse
import
os
import
sys
import
tempfile
import
zipfile
try
:
import
requests
except
ImportError
:
# no multipart encoding in stdlib and this script is temporary
sys
.
exit
(
"
This script requires the
'
requests
'
module. ( pip install requests )
"
)
session
=
requests
.
session
()
def
deploy_module
(
module_path
,
url
,
login
,
password
,
db
=
''
):
url
=
url
.
rstrip
(
'
/
'
)
authenticate
(
url
,
login
,
password
,
db
)
module_file
=
zip_module
(
module_path
)
try
:
return
upload_module
(
url
,
module_file
)
finally
:
os
.
remove
(
module_file
)
def
upload_module
(
server
,
module_file
):
print
(
"
Uploading module file...
"
)
url
=
server
+
'
/base_import_module/upload
'
files
=
dict
(
mod_file
=
open
(
module_file
,
'
rb
'
))
res
=
session
.
post
(
url
,
files
=
files
)
if
res
.
status_code
!=
200
:
raise
Exception
(
"
Could not authenticate on server
'
%s
'"
%
server
)
return
res
.
text
def
authenticate
(
server
,
login
,
password
,
db
=
''
):
print
(
"
Authenticating on server
'
%s
'
...
"
%
server
)
# Fixate session with a given db if any
session
.
get
(
server
+
'
/web/login
'
,
params
=
dict
(
db
=
db
))
args
=
dict
(
login
=
login
,
password
=
password
,
db
=
db
)
res
=
session
.
post
(
server
+
'
/base_import_module/login
'
,
args
)
if
res
.
status_code
==
404
:
raise
Exception
(
"
The server
'
%s
'
does not have the
'
base_import_module
'
installed.
"
%
server
)
elif
res
.
status_code
!=
200
:
raise
Exception
(
res
.
text
)
def
zip_module
(
path
):
path
=
os
.
path
.
abspath
(
path
)
if
not
os
.
path
.
isdir
(
path
):
raise
Exception
(
"
Could not find module directory
'
%s
'"
%
path
)
container
,
module_name
=
os
.
path
.
split
(
path
)
temp
=
tempfile
.
mktemp
(
suffix
=
'
.zip
'
)
try
:
print
(
"
Zipping module directory...
"
)
with
zipfile
.
ZipFile
(
temp
,
'
w
'
)
as
zfile
:
for
root
,
dirs
,
files
in
os
.
walk
(
path
):
for
file
in
files
:
file_path
=
os
.
path
.
join
(
root
,
file
)
zfile
.
write
(
file_path
,
file_path
.
split
(
container
).
pop
())
return
temp
except
Exception
:
os
.
remove
(
temp
)
raise
if
__name__
==
'
__main__
'
:
parser
=
argparse
.
ArgumentParser
(
description
=
'
Deploy a module on an OpenERP server.
'
)
parser
.
add_argument
(
'
path
'
,
help
=
"
Path of the module to deploy
"
)
parser
.
add_argument
(
'
--url
'
,
dest
=
'
url
'
,
help
=
'
Url of the server (default=http://localhost:8069)
'
,
default
=
"
http://localhost:8069
"
)
parser
.
add_argument
(
'
--db
'
,
dest
=
'
db
'
,
help
=
'
Database to use if server does not use db-filter.
'
)
parser
.
add_argument
(
'
--login
'
,
dest
=
'
login
'
,
default
=
"
admin
"
,
help
=
'
Login (default=admin)
'
)
parser
.
add_argument
(
'
--password
'
,
dest
=
'
password
'
,
default
=
"
admin
"
,
help
=
'
Password (default=admin)
'
)
parser
.
add_argument
(
'
--no-ssl-check
'
,
dest
=
'
no_ssl_check
'
,
action
=
'
store_true
'
,
help
=
'
Do not check ssl cert
'
)
if
len
(
sys
.
argv
)
==
1
:
sys
.
exit
(
parser
.
print_help
())
args
=
parser
.
parse_args
()
if
args
.
no_ssl_check
:
session
.
verify
=
False
try
:
result
=
deploy_module
(
args
.
path
,
args
.
url
,
args
.
login
,
args
.
password
,
args
.
db
)
print
(
result
)
except
Exception
,
e
:
sys
.
exit
(
"
ERROR: %s
"
%
e
)
This diff is collapsed.
Click to expand it.
openerp/cli/__init__.py
+
1
−
0
View file @
dec81728
...
...
@@ -31,6 +31,7 @@ class Help(Command):
print
"
%s
"
%
k
import
server
import
deploy
def
main
():
args
=
sys
.
argv
[
1
:]
...
...
This diff is collapsed.
Click to expand it.
openerp/cli/deploy.py
0 → 100644
+
92
−
0
View file @
dec81728
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import
argparse
import
os
import
requests
import
sys
import
tempfile
import
zipfile
from
.
import
Command
class
Deploy
(
Command
):
"""
Deploy a module on an Odoo instance
"""
def
__init__
(
self
):
super
(
Deploy
,
self
).
__init__
()
self
.
session
=
requests
.
session
()
def
deploy_module
(
self
,
module_path
,
url
,
login
,
password
,
db
=
''
):
url
=
url
.
rstrip
(
'
/
'
)
self
.
authenticate
(
url
,
login
,
password
,
db
)
module_file
=
self
.
zip_module
(
module_path
)
try
:
return
self
.
upload_module
(
url
,
module_file
)
finally
:
os
.
remove
(
module_file
)
def
upload_module
(
self
,
server
,
module_file
):
print
(
"
Uploading module file...
"
)
url
=
server
+
'
/base_import_module/upload
'
files
=
dict
(
mod_file
=
open
(
module_file
,
'
rb
'
))
res
=
self
.
session
.
post
(
url
,
files
=
files
)
if
res
.
status_code
!=
200
:
raise
Exception
(
"
Could not authenticate on server
'
%s
'"
%
server
)
return
res
.
text
def
authenticate
(
self
,
server
,
login
,
password
,
db
=
''
):
print
(
"
Authenticating on server
'
%s
'
...
"
%
server
)
# Fixate session with a given db if any
self
.
session
.
get
(
server
+
'
/web/login
'
,
params
=
dict
(
db
=
db
))
args
=
dict
(
login
=
login
,
password
=
password
,
db
=
db
)
res
=
self
.
session
.
post
(
server
+
'
/base_import_module/login
'
,
args
)
if
res
.
status_code
==
404
:
raise
Exception
(
"
The server
'
%s
'
does not have the
'
base_import_module
'
installed.
"
%
server
)
elif
res
.
status_code
!=
200
:
raise
Exception
(
res
.
text
)
def
zip_module
(
self
,
path
):
path
=
os
.
path
.
abspath
(
path
)
if
not
os
.
path
.
isdir
(
path
):
raise
Exception
(
"
Could not find module directory
'
%s
'"
%
path
)
container
,
module_name
=
os
.
path
.
split
(
path
)
temp
=
tempfile
.
mktemp
(
suffix
=
'
.zip
'
)
try
:
print
(
"
Zipping module directory...
"
)
with
zipfile
.
ZipFile
(
temp
,
'
w
'
)
as
zfile
:
for
root
,
dirs
,
files
in
os
.
walk
(
path
):
for
file
in
files
:
file_path
=
os
.
path
.
join
(
root
,
file
)
zfile
.
write
(
file_path
,
file_path
.
split
(
container
).
pop
())
return
temp
except
Exception
:
os
.
remove
(
temp
)
raise
def
run
(
self
,
args
):
parser
=
argparse
.
ArgumentParser
(
prog
=
"
%s deploy
"
%
sys
.
argv
[
0
].
split
(
os
.
path
.
sep
)[
-
1
],
description
=
'
Deploy a module on an Odoo server.
'
)
parser
.
add_argument
(
'
path
'
,
help
=
"
Path of the module to deploy
"
)
parser
.
add_argument
(
'
url
'
,
nargs
=
'
?
'
,
help
=
'
Url of the server (default=http://localhost:8069)
'
,
default
=
"
http://localhost:8069
"
)
parser
.
add_argument
(
'
--db
'
,
dest
=
'
db
'
,
help
=
'
Database to use if server does not use db-filter.
'
)
parser
.
add_argument
(
'
--login
'
,
dest
=
'
login
'
,
default
=
"
admin
"
,
help
=
'
Login (default=admin)
'
)
parser
.
add_argument
(
'
--password
'
,
dest
=
'
password
'
,
default
=
"
admin
"
,
help
=
'
Password (default=admin)
'
)
parser
.
add_argument
(
'
--no-ssl-check
'
,
dest
=
'
no_ssl_check
'
,
action
=
'
store_true
'
,
help
=
'
Do not check ssl cert
'
)
if
not
args
:
sys
.
exit
(
parser
.
print_help
())
args
=
parser
.
parse_args
(
args
=
args
)
if
args
.
no_ssl_check
:
self
.
session
.
verify
=
False
try
:
if
not
args
.
url
.
startswith
(
'
http://
'
):
args
.
url
=
'
https://%s
'
%
args
.
url
result
=
self
.
deploy_module
(
args
.
path
,
args
.
url
,
args
.
login
,
args
.
password
,
args
.
db
)
print
(
result
)
except
Exception
,
e
:
sys
.
exit
(
"
ERROR: %s
"
%
e
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment