Git Product home page Git Product logo

bcsafecontentservice's Introduction

bcsafecontentservice

API for checking the safety of content (links and text) vis-a-vis violence, adult, profanity etc

Usage

Imports

import com.bc.safecontent.service.ContentFlaggingService;
import com.bc.safecontent.service.ContentImpl;

Create the service instance

        final ContentFlaggingService svc = ContentFlaggingService.defaultInstance();

Use the created service instance to flag content

        
        final String imageurl = "http://www.buzzwears.com/local/images/fashion/2018/03/2_16257b445c0.jpg";
        
        final String [] somecontent = {
            "This is some good content which we hope will not be flagged because I have a pussy cat",
            "Please don't flag me because I use the word sexist to describe him",
            "He is a fucking pervert and a loser. Will you flag me?",
            "He fingered the perpetrator. I hope you don't flag me",
            "Blood and gore is not the name of any game I know",
            "Bloodied limbs was scattered everywhere after the explosion"
        };
        
        final long timeout = 15_000;
        
        final String flags = svc.flag(new ContentImpl(imageurl, somecontent), timeout);
        
        System.out.println(flags);

Flags

  • Standard flags currently include: ADULT, VIOLENCE, RACY, MEDICAL, SPOOF, GRAPHIC

  • For complete list of standard flags see the:

StandardFlags interface

Configuration

  • For this api to work you need to save googlecloud application credentials in the following file on your classpath:
    META-INF/secure/com.bc.safecontent.googlecloud.application_credentials.properties

In the above file there should be a property named api_key with the value being the api key obtained as described

here

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.