Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
Gutyán Gábor
/
circlestack
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
cb5e6c89
authored
Mar 13, 2018
by
Szabolcs Gelencser
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add vm creation from template
parent
3199d66f
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
33 additions
and
14 deletions
+33
-14
.idea/workspace.xml
+0
-0
circle/dashboard/templatetags/instance_tags.py
+6
-0
circle/dashboard/views/vm.py
+27
-14
No files found.
.idea/workspace.xml
View file @
cb5e6c89
This diff is collapsed.
Click to expand it.
circle/dashboard/templatetags/instance_tags.py
View file @
cb5e6c89
from
django.template
import
Library
from
django.urls
import
reverse
from
django.utils.translation
import
ugettext_lazy
as
_
register
=
Library
()
...
...
@@ -30,3 +31,7 @@ def get_status_display(instance):
}
return
DISPLAYS
[
instance
.
status
]
if
instance
.
status
in
DISPLAYS
else
instance
.
status
@register.filter
def
get_absolute_url
(
instance
):
return
reverse
(
'dashboard.views.detail'
,
args
=
[
instance
.
id
])
\ No newline at end of file
circle/dashboard/views/vm.py
View file @
cb5e6c89
...
...
@@ -117,10 +117,14 @@ class VmDetailView(LoginRequiredMixin, GraphMixin, DetailView):
ops
=
get_operations
(
instance
,
user
,
self
.
request
)
hide_tutorial
=
self
.
request
.
COOKIES
.
get
(
"hide_tutorial_for_
%
s"
%
instance
.
id
)
==
"True"
vnc_console
=
None
try
:
vnc_console
=
openstack_api
.
nova
.
server_vnc_console
(
self
.
request
,
instance
.
id
)
except
:
pass
#TODO
context
.
update
({
'graphite_enabled'
:
settings
.
GRAPHITE_URL
is
not
None
,
'vnc_url'
:
vnc_console
.
url
,
'vnc_url'
:
vnc_console
.
url
if
vnc_console
else
None
,
'ops'
:
ops
,
'op'
:
{
i
.
op
:
i
for
i
in
ops
},
# 'connect_commands': user.profile.get_connect_commands(instance),
...
...
@@ -1077,7 +1081,7 @@ class VmCreate(LoginRequiredMixin, TemplateView):
pk
=
int
(
pk
))
except
(
ValueError
,
InstanceTemplate
.
DoesNotExist
):
raise
Http404
()
if
not
template
.
has_level
(
request
.
user
,
'user'
)
:
if
not
request
.
user
.
id
==
template
.
owner_id
:
raise
PermissionDenied
()
return
template
...
...
@@ -1117,16 +1121,25 @@ class VmCreate(LoginRequiredMixin, TemplateView):
})
return
self
.
render_to_response
(
context
)
def
_create_from_plain_image
(
self
,
request
,
*
args
,
**
kwargs
):
pass
def
__create_normal
(
self
,
request
,
template
,
*
args
,
**
kwargs
):
server_created
=
openstack_api
.
nova
.
server_create
(
request
,
template
.
name
,
template
.
image_id
,
template
.
flavor_id
,
)
def
__create_normal
(
self
,
request
,
*
args
,
**
kwargs
):
instances
=
[
Instance
.
create_from_template
(
template
=
template
,
owner
=
request
.
user
)]
return
self
.
__deploy
(
request
,
instances
)
from
dashboard.templatetags.instance_tags
import
get_absolute_url
messages
.
success
(
request
,
_
(
"VM successfully created."
))
path
=
get_absolute_url
(
server_created
)
def
__create_customized
(
self
,
request
,
*
args
,
**
kwargs
):
if
request
.
is_ajax
():
return
HttpResponse
(
json
.
dumps
({
'redirect'
:
path
}),
content_type
=
"application/json"
)
else
:
return
HttpResponseRedirect
(
"
%
s#activity"
%
path
)
def
__create_customized
(
self
,
request
,
template
,
*
args
,
**
kwargs
):
user
=
request
.
user
# no form yet, using POST directly:
form
=
self
.
form_class
(
...
...
@@ -1187,13 +1200,13 @@ class VmCreate(LoginRequiredMixin, TemplateView):
#TODO: check if user can create VM
#TODO: limit chekcs
create_func
=
(
self
.
_create_from_plain_image
if
request
.
POST
.
get
(
"from_plain_image"
)
is
not
None
else
self
.
__create_normal
if
template
=
self
.
get_template
(
request
,
request
.
POST
.
get
(
"template"
))
create_func
=
(
self
.
__create_normal
if
request
.
POST
.
get
(
"customized"
)
is
None
else
self
.
__create_customized
)
return
create_func
(
request
,
*
args
,
**
kwargs
)
return
create_func
(
request
,
template
,
*
args
,
**
kwargs
)
# @require_GET
...
...
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