private IQueryResult querySave(ICompiledQuery code, UserInformation user) throws MorseException { String parentId = code.getString(4); String format = code.getString(6); String typeName = code.getString(2); IType type = typeProvider.get(typeName); if (type == null) throw new MorseException(MorseException.TYPE_NOT_FOUND, typeName); ObjectFileStore[] fs = fileStore.get(typeName); if (fs == null) throw new MorseException(MorseException.TABLE_NOT_FOUND, typeName); if (!aclManager.hasCreate(user, type.getAccessAcl())) throw new MorseException( MorseException.ACCESS_DENIED_CREATE, new String[] {"type", type.getName(), type.getAccessAcl()}); IQueryResult parent = getConnection().fetch(parentId, user, false); if (!parent.next()) { parent.close(); throw new MorseException(MorseException.OBJECT_NOT_FOUND, parentId); } String parentType = parent.getString(IAttribute.M_TYPE); parent.close(); String newId = objectManager.newObjectId(typeProvider.get(IType.TYPE_MC_CONTENT), driver); Btc obj = ServerTypesUtil.createBtc(getConnection(), type); obj.initObject(type, connection, null, typeProvider, user, aclManager); obj.setString(IAttribute.MC_FORMAT, format); obj.setString(IAttribute.M_ACL, aclManager.getNewContentAcl(user, type)); obj.doInsertCheck(); try { driver.storeObject(type, obj, newId); // TODO create files in m_object etc. return new FileAbstractSaveResult(this, newId, obj, fs, parentId, parentType); } catch (Exception e) { log.error(e); // TODO rollback !!!! } return null; }
private IQueryResult queryFetch(ICompiledQuery code, UserInformation user) { // TODO check rights for channel String id = code.getString(1); try { Properties current = new Properties(); Reader reader = driver.getFileStore().get(IType.TYPE_OBJECT)[0].getReader(id); current.load(reader); reader.close(); String typeName = current.getProperty(IAttribute.M_TYPE); if (typeName == null) throw new MorseException(MorseException.OBJECT_NOT_FOUND, id); IType type = typeProvider.get(typeName); if (type == null) throw new MorseException(MorseException.TYPE_NOT_FOUND, typeName); ObjectFileStore[] store = fileStore.get(typeName); if (store == null) throw new MorseException(MorseException.TYPE_NOT_FOUND, typeName); if (!aclManager.hasRead(user, type.getAccessAcl())) throw new MorseException( MorseException.ACCESS_DENIED_READ, new String[] {"type", typeName, type.getAccessAcl()}); LinkedList<Attr> attr = new LinkedList<Attr>(); for (Iterator<IAttribute> i = type.getAttributes(); i.hasNext(); ) { Attr a = new Attr(); a.attr = i.next(); a.attrName = a.attrAlias = a.attr.getName(); if (aclManager.hasRead(user, a.attr.getAccessAcl())) attr.add(a); } return new FileAbstractSelectResult( driver, type, store[0], IAttribute.M_ID, id, (Attr[]) attr.toArray(new Attr[attr.size()])); } catch (Exception e) { log.error(e); return new ErrorResult(1, 1, e.toString()); } }
private IQueryResult queryLoad(ICompiledQuery code, UserInformation user) { String id = code.getString(1); boolean shared = code.size() > 2 && code.getInteger(2) == CMql.SHARED; try { Properties current = new Properties(); Reader reader = driver.getFileStore().get(IType.TYPE_OBJECT)[0].getReader(id); current.load(reader); reader.close(); String typeName = current.getProperty(IAttribute.M_TYPE); if (typeName == null) throw new MorseException(MorseException.OBJECT_NOT_FOUND, id); IType type = typeProvider.get(typeName); if (type == null) throw new MorseException(MorseException.TYPE_NOT_FOUND, typeName); ObjectFileStore[] store = fileStore.get(typeName); if (store == null) throw new MorseException(MorseException.TYPE_NOT_FOUND, typeName); if (!aclManager.hasRead(user, type.getAccessAcl())) throw new MorseException( MorseException.ACCESS_DENIED_READ, new String[] {"type", typeName, type.getAccessAcl()}); if (!shared) return new FileAbstractLoadResultStream(this, id, store[1]); else { return new SingleRowResult( new IAttribute[] {IAttributeDefault.ATTR_OBJ_STRING, IAttributeDefault.ATTR_OBJ_STRING}, new String[] {"channel", "path"}, new String[] {getName(), store[1].getRelativePath(id)}); } } catch (Exception e) { log.error(e); return new ErrorResult(1, 1, e.toString()); } }
private IQueryResult querySelect(ICompiledQuery code, UserInformation user) throws MorseException { LinkedList<Attr> attr = new LinkedList<Attr>(); int off = 1; while (code.getInteger(off) != CMql.FROM) { Attr a = new Attr(); a.attrName = code.getString(off); a.attrAlias = a.attrName; off++; if (code.getInteger(off) == CMql.AS) { off++; a.attrAlias = code.getString(off); off++; } if (code.getInteger(off) == CMql.COMMA) off++; attr.add(a); } if (attr.size() == 0) throw new MorseException(MorseException.NO_ATTRIBUTES); off++; // FROM String table = code.getString(off); off++; IType type = typeProvider.get(table); if (type == null) throw new MorseException(MorseException.TYPE_NOT_FOUND, table); if (!aclManager.hasRead(user, type.getAccessAcl())) throw new MorseException( MorseException.ACCESS_DENIED_READ, new String[] {"type", type.getName(), type.getAccessAcl()}); if (attr.size() == 1 && ((Attr) attr.get(0)).attrName.endsWith("*")) { attr.clear(); for (Iterator<IAttribute> i = type.getAttributes(); i.hasNext(); ) { Attr a = new Attr(); a.attr = i.next(); a.attrName = a.attrAlias = a.attr.getName(); if (aclManager.hasRead(user, a.attr.getAccessAcl())) attr.add(a); } } // append type to attr for (Iterator i = attr.iterator(); i.hasNext(); ) { Attr a = (Attr) i.next(); IAttribute ta = type.getAttribute(a.attrName); if (ta == null) throw new MorseException(MorseException.UNKNOWN_ATTRIBUTE, a.attrName); a.attr = ta; } String whereAttr = null; String whereVal = null; if (code.size() > off) { whereAttr = code.getString(off + 1).toLowerCase(); whereVal = code.getString(off + 3); if (whereVal.startsWith("'") && whereVal.endsWith("'")) whereVal = whereVal.substring(1, whereVal.length() - 1); } ObjectFileStore[] store = fileStore.get(table); if (store == null) throw new MorseException(MorseException.TABLE_NOT_FOUND, table); // if ( attr.size() == 1 && attr.get( 0 ).equals( "*" ) ) // attr.clear(); return new FileAbstractSelectResult( driver, type, store[0], whereAttr, whereVal, (Attr[]) attr.toArray(new Attr[attr.size()])); }