blob: dcc21f1b2e111b3048a854baf680bed0eb4fb3a7 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.sling.slingbucks.server;
import java.util.Random;
import org.apache.felix.scr.annotations.Component;
import org.apache.felix.scr.annotations.Service;
import org.apache.sling.api.SlingHttpServletRequest;
import org.apache.sling.servlets.post.NodeNameGenerator;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/** Generate hard-to-guess node names for our coffee orders.
*
* Sling calls this for all "create node" requests to its
* POST servlet. This reacts to POST on our ORDERS_PATH, and
* returns a somewhat long random hex string for the node name.
*/
@Component
@Service
public class HexNodeNameGenerator implements NodeNameGenerator {
private static final Random random = new Random(System.currentTimeMillis());
private final Logger log = LoggerFactory.getLogger(getClass());
/** @inheritDoc */
public String getNodeName(
SlingHttpServletRequest request,
String parentPath,
boolean requirePrefix,
NodeNameGenerator defaultNng)
{
if(SlingbucksConstants.ORDERS_PATH.equals(parentPath)) {
final StringBuilder name = new StringBuilder();
for(int i=0; i < 2; i++) {
name.append(Long.toHexString(random.nextLong()));
}
log.debug("Called for {} parent path, node name is {}", parentPath, name.toString());
return name.toString();
}
log.debug("Path does not match {}, doing nothing", SlingbucksConstants.ORDERS_PATH);
return null;
}
}