from flask import ( render_template, Blueprint, redirect, url_for, request, abort, jsonify, send_from_directory, make_response, flash ) from flask_user import login_required, current_user import json from datatables import ColumnDT, DataTables import time from app.models import Property, db, UGC, CharacterInfo, PropertyContent, Account from app.schemas import PropertySchema from app import gm_level from app.luclient import query_cdclient import zlib import xmltodict import os import app.pylddlib as ldd property_blueprint = Blueprint('properties', __name__) property_schema = PropertySchema() @property_blueprint.route('/', methods=['GET']) @login_required @gm_level(3) def index(): return render_template('properties/index.html.j2') @property_blueprint.route('/approve/', methods=['GET']) @login_required @gm_level(3) def approve(id): property_data = Property.query.filter(Property.id == id).first() property_data.mod_approved = not property_data.mod_approved # If we approved it, clear the rejection reason if property_data.mod_approved: property_data.rejection_reason = "" if property_data.mod_approved: flash( f"""Approved Property {property_data.name if property_data.name else query_cdclient( 'select DisplayDescription from ZoneTable where zoneID = ?', [property_data.zone_id], one=True )[0]} from {CharacterInfo.query.filter(CharacterInfo.id==property_data.owner_id).first().name}""", "success" ) else: flash( f"""Unapproved Property {property_data.name if property_data.name else query_cdclient( 'select DisplayDescription from ZoneTable where zoneID = ?', [property_data.zone_id], one=True )[0]} from {CharacterInfo.query.filter(CharacterInfo.id==property_data.owner_id).first().name}""", "danger" ) property_data.save() go_to = "" if request.referrer: if "view_models" in request.referrer: go_to = url_for('properties.view', id=id) else: go_to = request.referrer else: go_to = url_for('main.index') return redirect(go_to) @property_blueprint.route('/view/', methods=['GET']) @login_required def view(id): property_data = Property.query.filter(Property.id == id).first() if current_user.gm_level < 3: if property_data.owner_id and property_data.owner.account_id != current_user.id: abort(403) return if property_data == {}: abort(404) return return render_template('properties/view.html.j2', property_data=property_data) @property_blueprint.route('/get/', methods=['GET']) @login_required @gm_level(3) def get(status="all"): columns = [ ColumnDT(Property.id), # 0 ColumnDT(CharacterInfo.name), # 1 ColumnDT(Property.template_id), # 2 ColumnDT(Property.clone_id), # 3 ColumnDT(Property.name), # 4 ColumnDT(Property.description), # 5 ColumnDT(Property.privacy_option), # 6 ColumnDT(Property.mod_approved), # 7 ColumnDT(Property.last_updated), # 8 ColumnDT(Property.time_claimed), # 9 ColumnDT(Property.rejection_reason), # 10 ColumnDT(Property.reputation), # 11 ColumnDT(Property.zone_id), # 12 ColumnDT(Account.username) # 13 ] query = None if status=="all": query = db.session.query().select_from(Property).join(CharacterInfo, CharacterInfo.id==Property.owner_id).join(Account) elif status=="approved": query = db.session.query().select_from(Property).join(CharacterInfo, CharacterInfo.id==Property.owner_id).join(Account).filter(Property.mod_approved==True) elif status=="unapproved": query = db.session.query().select_from(Property).join(CharacterInfo, CharacterInfo.id==Property.owner_id).join(Account).filter(Property.mod_approved==False) else: raise Exception("Not a valid filter") params = request.args.to_dict() rowTable = DataTables(params, query, columns) data = rowTable.output_result() for property_data in data["data"]: id = property_data["0"] property_data["0"] = f""" View """ if not property_data["7"]: property_data["0"] += f""" Approve """ else: property_data["0"] += f""" Unapprove """ property_data["1"] = f""" {property_data["1"]} """ if property_data["4"] == "": property_data["4"] = query_cdclient( 'select DisplayDescription from ZoneTable where zoneID = ?', [property_data["12"]], one=True ) if property_data["6"] == 0: property_data["6"] = "Private" elif property_data["6"] == 1: property_data["6"] = "Best Friends" else: property_data["6"] = "Public" property_data["8"] = time.ctime(property_data["8"]) property_data["9"] = time.ctime(property_data["9"]) if not property_data["7"]: property_data["7"] = '''

''' else: property_data["7"] = '''

''' property_data["12"] = query_cdclient( 'select DisplayDescription from ZoneTable where zoneID = ?', [property_data["12"]], one=True ) return data @property_blueprint.route('/view_model/', methods=['GET']) @login_required def view_model(id): property_content_data = PropertyContent.query.filter(PropertyContent.id==id).all() # TODO: Restrict somehow formatted_data = [ { "obj": url_for('properties.get_model', id=property_content_data[0].id, file_format='obj'), "mtl": url_for('properties.get_model', id=property_content_data[0].id, file_format='mtl'), "lot": property_content_data[0].lot, "id": property_content_data[0].id, "pos": [{ "x": property_content_data[0].x, "y": property_content_data[0].y, "z": property_content_data[0].z, "rx": property_content_data[0].rx, "ry": property_content_data[0].ry, "rz": property_content_data[0].rz, "rw": property_content_data[0].rw }] } ] return render_template( 'ldd/ldd.html.j2', content=formatted_data ) property_center = { 1150: "(-17, 432, -60)", 1151: "(0, 455, -110)", 1250: "(-16, 432,-60)", 1251: "(0, 455, 100)", 1350: "(-10, 432, -57)", 1450: "(-10, 432, -77)" } @property_blueprint.route('/view_models/', methods=['GET']) @login_required def view_models(id): property_content_data = PropertyContent.query.filter( PropertyContent.property_id==id ).order_by(PropertyContent.lot).all() consolidated_list = [] for item in range(len(property_content_data)): if any((d["lot"] != 14 and d["lot"] == property_content_data[item].lot) for d in consolidated_list): # exiting lot, add rotations lot_index = next((index for (index, d) in enumerate(consolidated_list) if d["lot"] == property_content_data[item].lot), None) consolidated_list[lot_index]["pos"].append( { "x": property_content_data[item].x, "y": property_content_data[item].y, "z": property_content_data[item].z, "rx": property_content_data[item].rx, "ry": property_content_data[item].ry, "rz": property_content_data[item].rz, "rw": property_content_data[item].rw } ) else: # add new lot consolidated_list.append( { "obj": url_for('properties.get_model', id=property_content_data[item].id, file_format='obj'), "mtl": url_for('properties.get_model', id=property_content_data[item].id, file_format='mtl'), "lot": property_content_data[item].lot, "id": property_content_data[item].id, "pos": [{ "x": property_content_data[item].x, "y": property_content_data[item].y, "z": property_content_data[item].z, "rx": property_content_data[item].rx, "ry": property_content_data[item].ry, "rz": property_content_data[item].rz, "rw": property_content_data[item].rw }] } ) property_data = Property.query.filter(Property.id==id).first() return render_template( 'ldd/ldd.html.j2', property_data=property_data, content=consolidated_list, center=property_center[property_data.zone_id] ) @property_blueprint.route('/get_model//', methods=['GET']) @login_required def get_model(id, file_format): content = PropertyContent.query.filter(PropertyContent.id==id).first() if content.lot == 14: # ugc model response = ugc(content)[0] else: # prebuild model response = prebuilt(content, file_format)[0] response.headers.set('Content-Type', 'text/xml') return response @property_blueprint.route('/download_model/', methods=['GET']) @login_required def download_model(id): content = PropertyContent.query.filter(PropertyContent.id==id).first() if content.lot == 14: # ugc model response, filename = ugc(content) else: # prebuild model response, filename = prebuilt(content, "lxfml") response.headers.set('Content-Type', 'attachment/xml') response.headers.set( 'Content-Disposition', 'attachment', filename=filename ) return response def ugc(content): ugc_data = UGC.query.filter(UGC.id==content.ugc_id).first() uncompressed_lxfml = zlib.decompress(ugc_data.lxfml) response = make_response(uncompressed_lxfml) return response, ugc_data.filename def prebuilt(content, file_format): # translate LOT to component id # we need to get a type of 2 because reasons render_component_id = query_cdclient( 'select component_id from ComponentsRegistry where component_type = 2 and id = ?', [content.lot], one=True )[0] # find the asset from rendercomponent given the component id filename = query_cdclient('select render_asset from RenderComponent where id = ?', [render_component_id], one=True ) if filename: filename = filename[0].split("\\\\")[-1].lower().split(".")[0] else: return f"No filename for LOT {content.lot}" if file_format == "lxfml": lxfml = f'app/luclient/res/BrickModels/{filename.split(".")[0]}.lxfml' with open(lxfml, 'r') as file: lxfml_data = file.read() # print(lxfml_data) response = make_response(lxfml_data) elif file_format in ["obj", "mtl"]: cache = f"app/cache/{filename}.{file_format}" if os.path.exists(cache): with open(cache, 'r') as file: cache_data = file.read() response = make_response(cache_data) else: lxfml = f'app/luclient/res/BrickModels/{filename.split(".")[0]}.lxfml' ldd.main(lxfml, cache.split('.')[0]) # convert to OBJ if os.path.exists(cache): with open(cache, 'r') as file: cache_data = file.read() response = make_response(cache_data) else: raise(Exception("INVALID FILE FORMAT")) return response, f"{filename}.{file_format}"