Search in sources :

Example 1 with WordGson

use of ai.elimu.model.gson.content.WordGson in project webapp by elimu-ai.

the class JavaToGsonConverter method getWordGson.

public static WordGson getWordGson(Word word) {
    if (word == null) {
        return null;
    } else {
        WordGson wordGson = new WordGson();
        wordGson.setId(word.getId());
        wordGson.setLocale(word.getLocale());
        wordGson.setTimeLastUpdate(word.getTimeLastUpdate());
        wordGson.setRevisionNumber(word.getRevisionNumber());
        wordGson.setContentStatus(word.getContentStatus());
        wordGson.setText(word.getText());
        wordGson.setPhonetics(word.getPhonetics());
        List<AllophoneGson> allophones = new ArrayList<>();
        for (Allophone allophone : word.getAllophones()) {
            AllophoneGson allophoneGson = getAllophoneGson(allophone);
            allophones.add(allophoneGson);
        }
        wordGson.setAllophones(allophones);
        wordGson.setUsageCount(word.getUsageCount());
        wordGson.setWordType(word.getWordType());
        wordGson.setSpellingConsistency(word.getSpellingConsistency());
        return wordGson;
    }
}
Also used : WordGson(ai.elimu.model.gson.content.WordGson) AllophoneGson(ai.elimu.model.gson.content.AllophoneGson) Allophone(ai.elimu.model.content.Allophone) ArrayList(java.util.ArrayList)

Example 2 with WordGson

use of ai.elimu.model.gson.content.WordGson in project webapp by elimu-ai.

the class JavaToGsonConverter method getImageGson.

public static ImageGson getImageGson(Image image) {
    if (image == null) {
        return null;
    } else {
        ImageGson imageGson = new ImageGson();
        imageGson.setId(image.getId());
        imageGson.setLocale(image.getLocale());
        imageGson.setTimeLastUpdate(image.getTimeLastUpdate());
        imageGson.setRevisionNumber(image.getRevisionNumber());
        imageGson.setContentStatus(image.getContentStatus());
        imageGson.setDownloadUrl("/image/" + image.getId() + "." + image.getImageFormat().toString().toLowerCase());
        imageGson.setDownloadSize(image.getBytes().length / 1024);
        imageGson.setContentType(image.getContentType());
        imageGson.setLiteracySkills(image.getLiteracySkills());
        imageGson.setNumeracySkills(image.getNumeracySkills());
        List<LetterGson> letters = new ArrayList<>();
        for (Letter letter : image.getLetters()) {
            LetterGson letterGson = getLetterGson(letter);
            letters.add(letterGson);
        }
        imageGson.setLetters(letters);
        List<NumberGson> numbers = new ArrayList<>();
        for (Number number : image.getNumbers()) {
            NumberGson numberGson = getNumberGson(number);
            numbers.add(numberGson);
        }
        imageGson.setNumbers(numbers);
        List<WordGson> words = new ArrayList<>();
        for (Word word : image.getWords()) {
            WordGson wordGson = getWordGson(word);
            words.add(wordGson);
        }
        imageGson.setWords(words);
        imageGson.setTitle(image.getTitle());
        imageGson.setImageFormat(image.getImageFormat());
        imageGson.setDominantColor(image.getDominantColor());
        return imageGson;
    }
}
Also used : Letter(ai.elimu.model.content.Letter) WordGson(ai.elimu.model.gson.content.WordGson) ImageGson(ai.elimu.model.gson.content.multimedia.ImageGson) Word(ai.elimu.model.content.Word) Number(ai.elimu.model.content.Number) ArrayList(java.util.ArrayList) LetterGson(ai.elimu.model.gson.content.LetterGson) NumberGson(ai.elimu.model.gson.content.NumberGson)

Example 3 with WordGson

use of ai.elimu.model.gson.content.WordGson in project webapp by elimu-ai.

the class JavaToGsonConverter method getVideoGson.

public static VideoGson getVideoGson(Video video) {
    if (video == null) {
        return null;
    } else {
        VideoGson videoGson = new VideoGson();
        videoGson.setId(video.getId());
        videoGson.setLocale(video.getLocale());
        videoGson.setTimeLastUpdate(video.getTimeLastUpdate());
        videoGson.setRevisionNumber(video.getRevisionNumber());
        videoGson.setContentStatus(video.getContentStatus());
        videoGson.setDownloadUrl("/video/" + video.getId() + "." + video.getVideoFormat().toString().toLowerCase());
        videoGson.setDownloadSize(video.getBytes().length / 1024);
        videoGson.setContentType(video.getContentType());
        videoGson.setLiteracySkills(video.getLiteracySkills());
        videoGson.setNumeracySkills(video.getNumeracySkills());
        List<LetterGson> letters = new ArrayList<>();
        for (Letter letter : video.getLetters()) {
            LetterGson letterGson = getLetterGson(letter);
            letters.add(letterGson);
        }
        videoGson.setLetters(letters);
        List<NumberGson> numbers = new ArrayList<>();
        for (Number number : video.getNumbers()) {
            NumberGson numberGson = getNumberGson(number);
            numbers.add(numberGson);
        }
        videoGson.setNumbers(numbers);
        List<WordGson> words = new ArrayList<>();
        for (Word word : video.getWords()) {
            WordGson wordGson = getWordGson(word);
            words.add(wordGson);
        }
        videoGson.setWords(words);
        videoGson.setTitle(video.getTitle());
        videoGson.setVideoFormat(video.getVideoFormat());
        videoGson.setThumbnailDownloadUrl("/video/" + video.getId() + "/thumbnail.png");
        return videoGson;
    }
}
Also used : Letter(ai.elimu.model.content.Letter) WordGson(ai.elimu.model.gson.content.WordGson) Word(ai.elimu.model.content.Word) Number(ai.elimu.model.content.Number) ArrayList(java.util.ArrayList) VideoGson(ai.elimu.model.gson.content.multimedia.VideoGson) LetterGson(ai.elimu.model.gson.content.LetterGson) NumberGson(ai.elimu.model.gson.content.NumberGson)

Example 4 with WordGson

use of ai.elimu.model.gson.content.WordGson in project webapp by elimu-ai.

the class JavaToGsonConverter method getAudioGson.

public static AudioGson getAudioGson(Audio audio) {
    if (audio == null) {
        return null;
    } else {
        AudioGson audioGson = new AudioGson();
        audioGson.setId(audio.getId());
        audioGson.setLocale(audio.getLocale());
        audioGson.setTimeLastUpdate(audio.getTimeLastUpdate());
        audioGson.setRevisionNumber(audio.getRevisionNumber());
        audioGson.setContentStatus(audio.getContentStatus());
        audioGson.setDownloadUrl("/audio/" + audio.getId() + "." + audio.getAudioFormat().toString().toLowerCase());
        audioGson.setDownloadSize(audio.getBytes().length / 1024);
        audioGson.setContentType(audio.getContentType());
        audioGson.setLiteracySkills(audio.getLiteracySkills());
        audioGson.setNumeracySkills(audio.getNumeracySkills());
        List<LetterGson> letters = new ArrayList<>();
        for (Letter letter : audio.getLetters()) {
            LetterGson letterGson = getLetterGson(letter);
            letters.add(letterGson);
        }
        audioGson.setLetters(letters);
        List<NumberGson> numbers = new ArrayList<>();
        for (Number number : audio.getNumbers()) {
            NumberGson numberGson = getNumberGson(number);
            numbers.add(numberGson);
        }
        audioGson.setNumbers(numbers);
        List<WordGson> words = new ArrayList<>();
        for (Word word : audio.getWords()) {
            WordGson wordGson = getWordGson(word);
            words.add(wordGson);
        }
        audioGson.setWords(words);
        audioGson.setTranscription(audio.getTranscription());
        audioGson.setAudioType(audio.getAudioFormat());
        return audioGson;
    }
}
Also used : Letter(ai.elimu.model.content.Letter) WordGson(ai.elimu.model.gson.content.WordGson) AudioGson(ai.elimu.model.gson.content.multimedia.AudioGson) Word(ai.elimu.model.content.Word) Number(ai.elimu.model.content.Number) ArrayList(java.util.ArrayList) LetterGson(ai.elimu.model.gson.content.LetterGson) NumberGson(ai.elimu.model.gson.content.NumberGson)

Example 5 with WordGson

use of ai.elimu.model.gson.content.WordGson in project webapp by elimu-ai.

the class JavaToGsonConverter method getNumberGson.

public static NumberGson getNumberGson(Number number) {
    if (number == null) {
        return null;
    } else {
        NumberGson numberGson = new NumberGson();
        numberGson.setId(number.getId());
        numberGson.setLocale(number.getLocale());
        numberGson.setTimeLastUpdate(number.getTimeLastUpdate());
        numberGson.setRevisionNumber(number.getRevisionNumber());
        numberGson.setContentStatus(number.getContentStatus());
        numberGson.setValue(number.getValue());
        numberGson.setSymbol(number.getSymbol());
        numberGson.setWord(getWordGson(number.getWord()));
        List<WordGson> words = new ArrayList<>();
        for (Word word : number.getWords()) {
            WordGson wordGson = getWordGson(word);
            words.add(wordGson);
        }
        numberGson.setWords(words);
        return numberGson;
    }
}
Also used : WordGson(ai.elimu.model.gson.content.WordGson) Word(ai.elimu.model.content.Word) ArrayList(java.util.ArrayList) NumberGson(ai.elimu.model.gson.content.NumberGson)

Aggregations

WordGson (ai.elimu.model.gson.content.WordGson)6 Word (ai.elimu.model.content.Word)5 ArrayList (java.util.ArrayList)5 NumberGson (ai.elimu.model.gson.content.NumberGson)4 Letter (ai.elimu.model.content.Letter)3 Number (ai.elimu.model.content.Number)3 LetterGson (ai.elimu.model.gson.content.LetterGson)3 Allophone (ai.elimu.model.content.Allophone)1 AllophoneGson (ai.elimu.model.gson.content.AllophoneGson)1 AudioGson (ai.elimu.model.gson.content.multimedia.AudioGson)1 ImageGson (ai.elimu.model.gson.content.multimedia.ImageGson)1 VideoGson (ai.elimu.model.gson.content.multimedia.VideoGson)1 Gson (com.google.gson.Gson)1 JSONArray (org.json.JSONArray)1 JSONObject (org.json.JSONObject)1 RequestMapping (org.springframework.web.bind.annotation.RequestMapping)1