Source code for tendril.frontend.blueprints.invtransforms.views

#!/usr/bin/env python
# encoding: utf-8

# Copyright (C) 2015 Chintalagiri Shashank
#
# This file is part of tendril.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.

"""
Docstring for views
"""

from flask import render_template
from flask_user import login_required

from . import invtransforms as blueprint
from .forms import TransformUpdateForm

from tendril.inventory import electronics as invelectronics
from tendril.utils.fsutils import Crumb
from tendril.gedaif import gsymlib


@blueprint.route('/<location_idx>', methods=('GET', 'POST'))
@blueprint.route('/')
@login_required
[docs]def transforms(location_idx=None): if location_idx is None: locs = invelectronics.inventory_locations idents = gsymlib.gsymlib_idents stage = {'idents': idents, 'locs': locs, 'crumbroot': '/inventory', 'inv': invelectronics, 'breadcrumbs': [Crumb(name="Inventory", path=""), Crumb(name="Transforms", path="transform/")], } return render_template('overview.html', stage=stage, pagetitle="All Inventory Transforms") else: loc = invelectronics.get_inventory_location(idx=location_idx) form = TransformUpdateForm(names=loc.tf.names) if form.validate_on_submit(): if form.contextual.data in loc.tf.names: loc.tf.set_canonical_repr(form.contextual.data, form.canonical.data) loc.tf.set_status(form.contextual.data, form.status.data) loc.tf.update_on_disk() else: # TODO issue an alert here print("Couldn't find the contextual representation in the transform") pass stage = {'loc': loc, 'tf': loc.tf, 'gsymlib_idents': gsymlib.gsymlib_idents, 'form': form, 'crumbroot': '/inventory', 'breadcrumbs': [Crumb(name="Inventory", path=""), Crumb(name="Transforms", path="transform/"), Crumb(name=loc.name, path="transform/" + location_idx)], # noqa } return render_template('transform_detail.html', stage=stage, pagetitle="Inventory Transform " + loc.name)