Integrate with share.krita.org
Open, WishlistPublic

Description

Introduction

Krita is a free and open source software that provides a great opportunity to designers, to draw and design their art in a cost effective and in a reliable manner which supports the creation of images from scratch.

The project is aimed at improving the user capability via integrating with share.krita.org, a website used by designers to host their work like drawings, animations, paintings, fonts, brush packs, and several other bundles. The implementation of the project would be focussed on two main tasks:

  • Integrate share.krita.org with Krita using the Libattica framework and create a GUI for sharing.
  • Improving the support for creating/editing bundles with better GUI.

Sharing with share.krita.org using GHNS or the Get Hot New Stuff was supported by the Krita in the previous versions, whose support has now disappeared. The primary tasks would aim at providing the user capability to download/upload resources from/to share.krita.org and later on use it to publish images directly. What’s new from the existed GHNS is that we are creating a new and better design from scratch and getting it implemented using Libattica.

Even though Krita offers basic support for creating and editing bundles, it does not work well, since some of the features are broken. To improve on this would be the second part of the project where we can improve the support for creating and editing bundles.

Project Goals

The following are the two major goals of the project:

  1. Integrate share.krita.org. Here, I intend to integrate share.krita.org with Krita using the KDE API LibAttica and later on add a GUI user interface for the same. While the LibAttica library implements collaborative data sharing for applications, this framework can be used for downloading and sharing additional application data. We could make use of provider class function to do the user authentication as we are dealing with upload functionality, keeping search parameters and much more.

User Cases after integration:

  • User can open the collaboration services from the resource manager to download the bundles uploaded by other users based on constraints.
  • If a user has the user account linked in with Krita, then he could upload his data of brushes, designs, animations etc to share.krita.org and publish images as well.
  • The second task aims at improving the support for creating and editing bundles. This bundles could comprise of things such as brush packs, ink packs, gradients, patterns and even font packs. As this part is not well maintained, I would work with the UI/UX team to implement a better GUI design for the whole bundle resource management. Also, with the existing Manage Resource functionality, it should get support in terms of fixing the existing bugs as well.

User Cases after integration:

  • Implementation of a GUI could provide a user-friendly design to create bundles with the existing features more efficiently.
  • User can create and edit the bundles in the resource manager.
  • Implementation of the search widget inside the Resource Manager can enable the user with better accessibility of bundles.

Implementation Details

  1. Collaborative sharing using Attica.

Description: Since Krita no longer has the functionality to directly download items from the share.krita.org, the first task here is to implement collaborative sharing with Libattica within the resource Manager providing the provision for downloading resources. Hence, this deals with creating a user interface to provide the user with the feature of download their preferred resource from krita.share.org.

File-Sharing: Libattica is an open collaborative service which supports communication between an application and a web application.
Before we get started, we need to link and have Attica package already inside the system. So that we will have to make changes with CmakeList.txt.

find_package(KF5Attica)
target_link_libraries(kritawidgets KF5::Attica)

As our aim is to implement collaborative sharing, the user should be able to download and upload the resource bundles into the system and use it according to their needs when they want to . The below code snippet provides the implementation of the download and upload functions in the attica framework.

Upload:

void ContentCreation::uploadFile()
{
    doUpload(QString(), ui.uploadFile->url().toLocalFile());
}

While we are going to work on the upload functionality, we will be taking care of the user-authentication as well using the provider class of Libattica.

Download:

void ContentDownload::download()
{
    qDebug() << "download";
    QTreeWidgetItem* selectedItem = ui.contentList->currentItem();
    if (selectedItem && qVariantCanConvert<Content>(selectedItem->data(0, Qt::UserRole))) {
        Content c = qvariant_cast<Content>(selectedItem->data(0, Qt::UserRole));
        ItemJob<DownloadItem>* job = m_provider.downloadLink(c.id());
        connect(job, SIGNAL(finished(Attica::BaseJob*)), SLOT(downloadLinkLoaded(Attica::BaseJob*)));
        job->start();
    }
}

Hence after implementation, the new resources downloaded will available within the resource manager and these resources will be stored inside .local/share/krita/ of the user's device.

GUI Interface: The UI will be implemented working together with the UX/UI design team, referring to the mockup. UI will be using XML and this UI will be connected through defined signals and slots mechanism using Qt.

connect(ui.upload, SIGNAL(clicked()), SLOT(uploadfile()));

For instance, wherever we want to call the GUI to perform the task, we give a call to the “ui” class object to get the signal and slot connected and render the GUI.

Deliverables: A fully working scenario where the user could interact with the application and get the data from share.krita.org with an interactive GUI.

  1. Support for creating and editing Bundles

Description: The resource manager that exist is unordered and need lot of triaging to be done.

Critical Bugs: There exist lot of critical bugs which hinders the possibility for the smooth functioning of Krita. A few major bugs are listed below:

There exist problems while deleting brush presets. Link
We are not able to load palettes stores in CSS file formats. Link
Also presets which are duplicate doesn’t get overwritten, but rather it stays as a duplicate. Link

Adding Features: User capabilities get better with the help of the basic widgets like search, add and delete. Resource Manager in Krita lacks both search and delete widgets which needs to be implemented, which can add on support for creating and editing bundles.

GUI Design: After implementing the necessary features and writing down the required functions for the proper functioning of Resource Manager, the final task is to create a better GUI for the Resource Manager. A mockup of the GUI Design is shown below:

Deliverables: A working resource manager in Krita which would be supported with basic features that provide the user with necessary search/edit functions in presence of a user-friendly GUI.

Files to be Added/changed with the context
/libs/widgets/CMakeLists.txt
CMakeList needs changes in order to add the target files and path.
/lib/widgets/wdgdlgcontentdownloader.ui
GUI file for the attica download implementation with the UI changes.
/lib/widgets/dlg_content_downloader.cpp
/lib/widgets/dlg_content_downloader.h
/lib/widgets/wdgdlgcontentUploader.ui
GUI file for the attica upload implementation with the UI changes.
/lib/widgets/dlg_content_uploader.cpp
/lib/widgets/dlg_content_uploader.h

/plugins/extensions/resourcemanager/resourcemanager.cpp
Changes due to refactoring the bugs that exist in the resource manager.
Changes as new features like search existing bundles will be added..
Changes to create and edit bundle section which needs refactoring..

/plugins/extensions/resourcemanager/resourcemanager.h
/plugins/extensions/resourcemanager/wdgdlgbundlemanager.ui
As we are redesigning the whole UI/UX for the resource manager this files will have the required changes.
/plugins/extensions/resourcemanager/dlg_bundle_manager.cpp
/plugins/extensions/resourcemanager/dlg_bundle_manager.h

Tentative Timeline

Until May 30th
Community bonding period, get familiar with the community.
Fix bugs existing in the resource manager and in create/edit bundle section.
Understand the working of libattica API and codebase of Krita.
Discuss about conducting weekly sessions with my mentors.

30th May - 13th June
Implement functions for collaborative sharing using attica.
13th June - 26th June
Start creating the GUI for sharing resource bundles.
27th June - 8th July
1st phase Review
Fix bugs, in the create/edit bundles
Testing the implemented features
Documentation of the classes and functions created.

8th July - 15th July
Start fixing the bugs in the Resource manager
15th July - 29th July
2nd Phase review
Rewrite the functions needed to be changed and implement new features.
Documentation and testing.

29th July - 15th August
Work on the GUI part with the UX design for Resource Manager
15th August - 21st August
After a thorough review of the code and testing with mentors and other developers, make the final submission.
Afterwards
Continue testing and bug fixing. Provide support as well.

About me

  • Name: Aniketh Girish
  • Proposal Title: Integrate share.krita.org
  • Email Address: anikethgireesh@gmail.com
  • FreeNode IRC Nick: aniketh___
  • Blog: aniketh01@github.io
  • GitHub: Aniketh01
  • Country/Time Zone: India (GMT+5:30)
  • Will you treat Google Summer of Code as a full time employment?: Yes

I’m a first year Computer Science and Engineering student pursuing my bachelors from Amrita University. I’m an active member of FOSS club in our university(FOSS@Amrita).

I started contributing to KDE since September 2016. I was selected for Season of KDE(KDE-SoK) 2016-17 in which I worked on the project Kstars, mentored by Cojocaru Raphael and was successful in completing it. I was invited as a speaker for KDE India Conference 2017 in IIT Guwahati, where I gave a talk on the topic “Object tracking using OpenCV and Qt”. I have also contributed to other projects of KDE like Konsole, KIO and much more. Apart from building desktop applications and contributing to different open Source projects, I like to build web applications as well. I also write for Open Source magazines during my free time.

Following commits have been done by me in various projects of KDE.

Commit a965cb
Commit d275e9
Commit 16c3fe5
Commit 5601e99
Commit a2aef4c
Commit f235818

Do you have other obligations from late May to early August (school, work, vacation, etc.)?
I will be having my university exams in the month of May. Nevertheless, I would be able to devote 40 or more hours a week throughout the program.
Reference

https://techbase.kde.org/Development/Tutorials/Collaboration/Attica/Introduction
https://anongit.kde.org/kdeexamples.git
https://phabricator.kde.org/T379
https://api.kde.org/frameworks/attica/html/index.html

Related Objects

Mentioned In
R37:f69bd9648dc0: Merge branch 'master' of ssh://git.kde.org/krita into Aniketh/T6108-Integrate…
R37:fad8eda4b59e: Merge remote-tracking branch 'origin' into Aniketh/T6108-Integrate-with-share.
R37:a5937a095609: Merge remote-tracking branch 'origin' into Aniketh/T6108-Integrate-with-share.
R37:56f792c6d8b0: Merge remote-tracking branch 'origin' into Aniketh/T6108-Integrate-with-share.
R37:b08f9f1a7475: Merge branch 'master' into Aniketh/T6108-Integrate-with-share.krita.org
R37:ba67881226cb: Merge branch 'master' into Aniketh/T6108-Integrate-with-share.krita.org
R37:b9cfe9929b1b: Merge branch 'master' of ssh://git.kde.org/krita into Aniketh/T6108-Integrate…
R37:8df173bba3c4: Merge branch 'master' of ssh://git.kde.org/krita into Aniketh/T6108-Integrate…
R37:b726de22fb77: Merge remote-tracking branch 'origin/master' into Aniketh/T6108-Integrate-with…
R37:0f719263b8b2: Merge branch 'Aniketh/T6108-Integrate-with-share.krita.org' of ssh://git.kde.
R37:1782d2e0ca26: Merge branch 'master' into Aniketh/T6108-Integrate-with-share.krita.org
R37:9ccd3027f3ab: Merge remote-tracking branch 'origin' into Aniketh/T6108-Integrate-with-share.
R37:d8419c164e21: Merge branch 'master' into Aniketh/T6108-Integrate-with-share.krita.org
R37:ffcd0068ae7c: Merge branch 'master' into Aniketh/T6108-Integrate-with-share.krita.org
R37:a0710a705bf1: Merge branch 'master' of ssh://git.kde.org/krita into Aniketh/T6108-Integrate…
R37:9f0fa29d8b91: Merge branch 'master' of ssh://git.kde.org/krita into Aniketh/T6108-Integrate…
Mentioned Here
R241:a2aef4c9b3d4: Removed duplicate clear button
R319:f2358180683f: Change close activate view to Ctrl+Shift+X to avoid duplicate
R319:5601e995bd87: Allow ANSI string terminator to work
R37:16c3fe592db6: Fix: activate "next/previous layer" shortcut for layers or group which are…
anikethgirish updated the task description. (Show Details)
Restricted Application added a subscriber: woltherav. · View Herald TranscriptMay 13 2017, 2:12 PM
anikethgirish added a subscriber: rempt.

A discussion of Using KNewStuffCore in place of Attica, between Aniketh and leinir:

https://gist.github.com/Aniketh01/77b11a87541e97b62da17bc7a0f0725f

scottpetrovic added a comment.EditedJul 11 2017, 2:40 PM

progress is looking good. I just built it. To get the Knewstuff working right. I have done the following things

  1. Get KDE Neon OS. This has newer KDE packages that are needed for aniketh's branch (mostly just the KNewStuff)
  2. needed to copy a file to my .local file for the resource manager thing to grab the data

$home > scott > krita > inst > etc > xdg > kritaresourcebundles.knsrc to...
$home > .local > share > knewstuff > kritaresourcebundles.knsrc

The branch is working pretty well. The UI might need to be cleaned up a bit. There appears to be multiple install buttons now that each item has its own install button. We might need to give the left area more space as it feels a bit cramped now.

Update: I actually had to copy the KNSRC file to a different place. I think it has to go in your root directory. I had my kritaresourcebundles.knsrc on my desktop and ran this from the console.

sudo cp ~/Desktop/kritaresourcebundles.knsrc /etc/xdg/

Discussion with Wolthera_laptop on tagging section.

  • Work around for tagging multiple resources at the one go.
  • If possible, Another work around for blacklisting/deleting tags, (Wolthera_laptop says, "but that might be too complicated for this GSoC.")

Conversation between Scottyp and me about the Resource Manager and the tag management :) (As a part of the second phase of GSoC'17)

https://gist.github.com/Aniketh01/b0bb469cf1642bbbe12a84f4799896f2

I played around with the add on manager with the KNewStuff, but something might be going wrong. Whenever I try to install a brush pack and close the content downloader window I just get a segmentation fault. On restart, the pack doesn't seem to be showing up in my presets.

Thread 1 "krita" received signal SIGSEGV, Segmentation fault.
KoResourceModel::importResourceFile (this=0x0, filename=..., fileCreation=false)

at /home/oem/krita/src/libs/widgets/KoResourceModel.cpp:224

224 {
(gdb) bt
#0 KoResourceModel::importResourceFile (this=0x0, filename=..., fileCreation=false)

at /home/oem/krita/src/libs/widgets/KoResourceModel.cpp:224

#1 0x00007fff90fc9b4c in DlgBundleManager::slotShareResources (this=0x109edea0)

at /home/oem/krita/src/plugins/extensions/resourcemanager/dlg_bundle_manager.cpp:385

Backtrace stopped: Cannot access memory at address 0x7fffffffba78
(gdb) bt
#0 KoResourceModel::importResourceFile (this=0x0, filename=..., fileCreation=false)

at /home/oem/krita/src/libs/widgets/KoResourceModel.cpp:224

#1 0x00007fff90fc9b4c in DlgBundleManager::slotShareResources (this=0x109edea0)

at /home/oem/krita/src/plugins/extensions/resourcemanager/dlg_bundle_manager.cpp:385

Backtrace stopped: Cannot access memory at address 0x7fffffffba78

scottpetrovic added a comment.EditedAug 8 2017, 12:37 AM

I am still getting that crash when working with the content downloader. It sometimes crashes when I close the resource manager. There is something going on with that slotShareResources() function in dlg_bundle_manager.cpp. The file part seems to be getting deleted, so that is causing a seg fault. Not sure exactly where that it happening.

Also a few more things.

  1. The stuff downloaded from the content downloader is saved to .local > share > krita. The folder name has a typo and is called "downlaodedResourses". It should be "downloadedResources"
  2. After talking with Aniketh...I am not sure if Krita is actually using these resources that are installed. It appears to be downloading correctly, but krita doesn't load them into the resource provider to actually be used.I would think when they are "installed", the resource provider would add them. Uninstalling them would remove them. They need to be separate from the resource manager though as those are managed as a separate process.
  3. The state of "installed" for the content downloaded doesn't seem to persist. If I restart Krita, it forgets what I have installed.

@scottpetrovic Hey,

1] There were segmentation faults while installing and uninstalling bundles/other resources. This is fixed now. We missed a condition to check if the resource file is NULL or is empty. Hence this is done and this solved at the moment.

2] The typo you mentioned, "downlaodedResourses" is now fixed and changed to "DownloadedResources".

3] We had a problem with the content downloader that, it wasn't detecting the state at which the item was at present. Even if it was installed the content downloader used to say it wasn't installed. Now that is fixed too. Now the content downloader recognizes the state at which the item is present and ensures to give the correct state at which it is to the user.

4] The thing left is loading the downloaded data to the resource manager. At the moment the resources if clicked install, then it is imported to the KoResource with KoResourceModel. But with what you mentioned I think what we need to do is that we need to load() the downloaded resource into the specific KoResource. So if this is what you meant please help me with much more context. And how to deal with it :)